#ifndef __config_h__ #define __config_h__ /* Macros that determine the Objective-C runtime and compiler */ #undef NeXT_RUNTIME #define GNU_RUNTIME 1 /* Define if the compiler does not support nested functions */ #undef NO_NESTED_FUNCTIONS /* Define if the compiler is broken when nested functions are used with Objective-C messages. */ #undef BROKEN_COMPILER /* Define if the __builtin_apply pseudo-function doesn't set the floating point return value at retframe + 8 on Intel machines. */ #undef BROKEN_BUILTIN_APPLY /* Define if system calls automatically restart after interruption by a signal. */ #undef HAVE_RESTARTABLE_SYSCALLS /* Define if you have the vprintf function. */ #define HAVE_VPRINTF 1 /* Define if you need to in order for stat and other things to work. */ #undef _POSIX_SOURCE /* Define as the return type of signal handlers (int or void). */ #define RETSIGTYPE void /* Define if the Objective-C runtime contains the objc_thread_create function; this function was defined in the multi-thread support in the 960906 version of runtime patch. */ #define HAVE_OBJC_THREAD_CREATE 1 /* Define if you have the memcpy function. */ #define HAVE_MEMCPY 1 /* Define if you have the ualarm function. */ #undef HAVE_UALARM /* Define if you have posix mmap function. */ #undef HAVE_MMAP /* Define if you have the getcwd function */ #define HAVE_GETCWD 1 /* Define if you have the getuid function */ #undef HAVE_GETUID /* Define if you have the getpwnam function */ #undef HAVE_GETPWNAM /* Define if you have the getpwuid function */ #undef HAVE_GETPWUID /* Define if you have the kill function */ #undef HAVE_KILL /* Define if you have the getpagesize function */ #undef HAVE_GETPAGESIZE /* Define if you have the statvfs function */ #undef HAVE_STATVFS /* Define if you have the raise function */ #define HAVE_RAISE 1 /* Define if you have the gettimeofday function */ #undef HAVE_GETTIMEOFDAY /* Define if you have the GetLocalTime function */ #define HAVE_GETLOCALTIME 1 /* Define if you have the chown function */ #undef HAVE_CHOWN /* Define if you have the symlink function */ #undef HAVE_SYMLINK /* Define if you have the readlink function */ #undef HAVE_READLINK /* Define if you have the fsync function */ #undef HAVE_FSYNC /* Define if you have the opendir family of functions */ #undef HAVE_OPENDIR /* Define if you have the sysconf function */ #undef HAVE_SYSCONF /* Define if you have the GetSystemInfo function */ #define HAVE_GETSYSTEMINFO 1 /* Define if you have the header file. */ #define HAVE_STRING_H 1 /* Define if you have the header file */ #define HAVE_MEMORY_H 1 /* Define if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define if you have the header file. */ #undef HAVE_LIBC_H /* Define if you have the header file. */ #undef HAVE_SYS_TIME_H /* Define if you have the header file */ #define HAVE_SYS_STAT_H 1 /* Define if you have the header file */ #undef HAVE_SYS_VFS_H /* Define if you have the header file */ #undef HAVE_SYS_STATFS_H /* Define if you have the header file */ #undef HAVE_NETINET_IN_H /* Define if you have the header file */ #define HAVE_WINDOWS_H 1 /* Define if you have the header file */ #define HAVE_WINDOWS32_SOCKETS_H 1 /* Define if you have the header file */ #define HAVE_PWD_H 1 /* Define if you have the header file */ #undef HAVE_SYS_PARAM_H /* Define if you have the header file */ #define HAVE_PROCESS_H 1 /* Define if you have the header file */ #define HAVE_GRP_H 1 /* Define if you have the header file */ #undef HAVE_SYS_FILE_H /* Define if you have the header file */ #define HAVE_UTIME_H 1 /* Define if you have the header file */ #undef HAVE_SYS_ERRNO_H /* Define if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ #undef WORDS_BIGENDIAN /* The following macros deal with directory entries. */ #undef HAVE_DIRENT_H #undef HAVE_SYS_NDIR_H #undef HAVE_SYS_DIR_H #undef HAVE_NDIR_H #define HAVE_DIR_H 1 /* The structure alignment as determined by configure */ #define STRUCT_ALIGNMENT 4 /* The name of the target platform, obtained by configure */ #define TARGET_PLATFORM "i386-pc-cygwin32" /* Include this file here to give the above information to the configuration file if needs them. */ #include "config/i386/cygwin32.h" /* This is a hack but I haven't found a way to check for it */ #ifndef __WIN32__ /* Define if your mkdir has two arguments. */ # define MKDIR_HAS_TWO_ARGS 1 #endif #endif /* __config_h__ */