Annotation of sql/sqlite/libltdl/config_fixed.h, revision 1.1
1.1 ! misha 1: /* pa_config_fixed.h. */
! 2: /* Configure file for autoconf-disabled platforms */
! 3: /* tested only with MS Visual C++ V6 */
! 4:
! 5: #define HAVE_CTYPE_H 1
! 6: #define HAVE_ERRNO_H 1
! 7: #define HAVE_MEMCPY 1
! 8: #define HAVE_MEMMOVE 1
! 9: #define HAVE_MEMORY_H 1
! 10: # include <memory.h>
! 11: #define HAVE_STDIO_H 1
! 12: #define HAVE_STDLIB_H 1
! 13: #define HAVE_STRCHR 1
! 14: #define HAVE_STRCMP 1
! 15: #define HAVE_STRINGS_H 1
! 16: #define HAVE_STRING_H 1
! 17: #define HAVE_STRRCHR 1
! 18: #define HAVE_SYS_STAT_H 1
! 19: #define HAVE_SYS_TYPES_H 1
! 20: #define LTDL_OBJDIR ".libs/"
! 21: #define LTDL_SHLIB_EXT ".dll"
! 22: /*
! 23: MS is shy to admit it implements stdc when compiled with lang extensions
! 24: without lang extensions libltdl does not compile
! 25: */
! 26: #define __STDC__ 1
! 27: #define error_t int
! 28: #define inline __inline
! 29:
! 30: #define R_OK 4
! 31:
! 32: /* dirent.h replacement */
! 33: #include <windows.h>
! 34: #include <io.h>
! 35: #define access(name, flags) _access(name, flags)
! 36: struct dirent {
! 37: char *d_name;
! 38: };
! 39: typedef void DIR;
! 40:
! 41: #define LT_D_NAMLEN(dirent) (0)
! 42:
! 43: inline DIR *opendir(const char *name) {
! 44: return 0;
! 45: }
! 46: inline struct dirent *readdir(DIR *dir) {
! 47: return 0;
! 48: }
! 49: inline int closedir(DIR *dir) {
! 50: return 0;
! 51: }
E-mail: