Diff for /parser3/src/lib/ltdl/config_fixed.h between versions 1.2.2.2 and 1.5

version 1.2.2.2, 2003/01/31 12:34:32 version 1.5, 2012/06/19 10:36:56
Line 1 Line 1
 /* pa_config_fixed.h. */  /* pa_config_fixed.h. */
 /* Configure file for autoconf-disabled platforms  */  /* Configure file for autoconf-disabled platforms  */
 /* tested only with MS Visual C++ V6 */  
   
 #if _MSC_VER  
 #pragma warning(disable:4090 4022 4113 4018)  
 #endif  
   
 #define HAVE_CTYPE_H 1  #define HAVE_CTYPE_H 1
 #define HAVE_ERRNO_H 1  #define HAVE_ERRNO_H 1
 #define HAVE_MEMCPY 1  #define HAVE_MEMCPY 1
 #define HAVE_MEMMOVE 1  #define HAVE_MEMMOVE 1
 #define HAVE_MEMORY_H 1  #define HAVE_MEMORY_H 1
 #  include <memory.h>  
 #define HAVE_STDIO_H 1  #define HAVE_STDIO_H 1
 #define HAVE_STDLIB_H 1  #define HAVE_STDLIB_H 1
 #define HAVE_STRCHR 1  #define HAVE_STRCHR 1
Line 21 Line 15
 #define HAVE_STRRCHR 1  #define HAVE_STRRCHR 1
 #define HAVE_SYS_STAT_H 1  #define HAVE_SYS_STAT_H 1
 #define HAVE_SYS_TYPES_H 1  #define HAVE_SYS_TYPES_H 1
 #define LTDL_OBJDIR ".libs/"  
 #define LTDL_SHLIB_EXT ".dll"  
 /*  
         MS is shy to admit it implements stdc when compiled with lang extensions  
         without lang extensions libltdl does not compile  
 */  
 #define __STDC__ 1  
 #define error_t int  
 #define inline __inline  
   
 #define R_OK 4  
   
 /* dirent.h replacement  */  
 #include <windows.h>  
 #include <io.h>  
 #define access(name, flags) _access(name, flags)  
 struct dirent {   
                 char *d_name;   
 };  
 typedef void DIR;  
   
 #define LT_D_NAMLEN(dirent) (0)  
   
 inline DIR              *opendir(const char* name) {  
         return 0;  
 }  
 inline struct dirent    *readdir(DIR *dir) {  
         return 0;  
 }  
 inline int              closedir(DIR *dir) {  
         return 0;  
 }  
   
   #define error_t int
   #define LT_OBJDIR ".libs/"
   #define LT_MODULE_EXT ".dll"

Removed from v.1.2.2.2  
changed lines
  Added in v.1.5


E-mail: