1/* 2 Build Configuration Template for Win32. 3*/ 4 5/* Define the minimum supported version */ 6#undef _WIN32_WINNT 7#undef NTDDI_VERSION 8#define _WIN32_WINNT 0x0601 9#define NTDDI_VERSION 0x06010000 10 11/* Default PHP / PEAR directories */ 12#define PHP_CONFIG_FILE_PATH "" 13#define CONFIGURATION_FILE_PATH "php.ini" 14#define PEAR_INSTALLDIR "@PREFIX@\\pear" 15#define PHP_BINDIR "@PREFIX@" 16#define PHP_DATADIR "@PREFIX@" 17#define PHP_EXTENSION_DIR "@PREFIX@\\ext" 18#define PHP_INCLUDE_PATH ".;@PREFIX@\\pear" 19#define PHP_LIBDIR "@PREFIX@" 20#define PHP_LOCALSTATEDIR "@PREFIX@" 21#define PHP_PREFIX "@PREFIX@" 22#define PHP_SYSCONFDIR "@PREFIX@" 23 24/* PHP Runtime Configuration */ 25#define PHP_URL_FOPEN 1 26#define USE_CONFIG_FILE 1 27#define DEFAULT_SHORT_OPEN_TAG "1" 28 29/* Platform-Specific Configuration. Should not be changed. */ 30#define PHP_SIGCHILD 0 31#define HAVE_GETSERVBYNAME 1 32#define HAVE_GETSERVBYPORT 1 33#define HAVE_GETPROTOBYNAME 1 34#define HAVE_GETPROTOBYNUMBER 1 35#define HAVE_GETHOSTNAME 1 36#define STDIN_FILENO 0 37#define STDOUT_FILENO 1 38#define STDERR_FILENO 2 39#define HAVE_ERRMSG_H 0 40#undef HAVE_ADABAS 41#undef HAVE_SOLID 42#undef HAVE_SYMLINK 43 44/* its in win32/time.c */ 45#define HAVE_USLEEP 1 46#define HAVE_NANOSLEEP 1 47 48#define HAVE_GETCWD 1 49#define NEED_ISBLANK 1 50#define DISCARD_PATH 0 51#undef HAVE_SETITIMER 52#undef HAVE_SIGSETJMP 53#undef HAVE_IODBC 54#define HAVE_LIBDL 1 55#define HAVE_GETTIMEOFDAY 1 56#define HAVE_PUTENV 1 57#define HAVE_TZSET 1 58#undef HAVE_FLOCK 59#define HAVE_ALLOCA 1 60#undef HAVE_SYS_TIME_H 61#undef HAVE_STRUCT_STAT_ST_BLKSIZE 62#undef HAVE_STRUCT_STAT_ST_BLOCKS 63#define HAVE_STRUCT_STAT_ST_RDEV 1 64#define REGEX 1 65#define HSREGEX 1 66#define HAVE_GETLOGIN 1 67#define HAVE_MEMMOVE 1 68#define HAVE_REGCOMP 1 69#define HAVE_SHUTDOWN 1 70#define HAVE_STRCASECMP 1 71#define HAVE_UTIME 1 72#undef HAVE_DIRENT_H 73#define HAVE_FCNTL_H 1 74#define HAVE_GRP_H 0 75#undef HAVE_PWD_H 76#undef HAVE_SYS_FILE_H 77#undef HAVE_SYS_SOCKET_H 78#undef HAVE_SYS_WAIT_H 79#define HAVE_SYSLOG_H 1 80#undef HAVE_UNISTD_H 81#define HAVE_SYS_TYPES_H 1 82#undef HAVE_ALLOCA_H 83#undef HAVE_KILL 84#define HAVE_GETPID 1 85#define HAVE_LIBM 1 86#undef HAVE_RINT 87#define SIZEOF_SHORT 2 88/* int and long are still 32bit in 64bit compiles */ 89#define SIZEOF_INT 4 90#define SIZEOF_LONG 4 91/* MSVC.6/NET don't allow 'long long' or know 'intmax_t' */ 92#define SIZEOF_LONG_LONG 8 /* defined as __int64 */ 93#define SIZEOF_INTMAX_T 0 94#define ssize_t SSIZE_T 95#ifdef _WIN64 96# define SIZEOF_SIZE_T 8 97# define SIZEOF_PTRDIFF_T 8 98#else 99# define SIZEOF_SIZE_T 4 100# define SIZEOF_PTRDIFF_T 4 101#endif 102#define SIZEOF_OFF_T 4 103#define HAVE_FNMATCH 104#define HAVE_GLOB 105#define PHP_SHLIB_SUFFIX "dll" 106#define PHP_SHLIB_EXT_PREFIX "php_" 107#define HAVE_SQLDATASOURCES 108 109/* Win32 supports socketpair by the emulation in win32/sockets.c */ 110#define HAVE_SOCKETPAIR 1 111#define HAVE_SOCKLEN_T 1 112 113/* Win32 support proc_open */ 114#define PHP_CAN_SUPPORT_PROC_OPEN 1 115 116/* inet_ntop() / inet_pton() */ 117#define HAVE_INET_PTON 1 118#define HAVE_INET_NTOP 1 119 120/* vs.net 2005 has a 64-bit time_t. This will likely break 121 * 3rdParty libs that were built with older compilers; switch 122 * back to 32-bit */ 123#ifndef _WIN64 124# define _USE_32BIT_TIME_T 1 125#endif 126 127#define _REENTRANT 1 128 129#define HAVE_GETRUSAGE 130 131#define HAVE_FTOK 1 132 133#define HAVE_NICE 134 135#ifdef __clang__ 136#define HAVE_FUNC_ATTRIBUTE_TARGET 1 137#endif 138 139#define HAVE_GETADDRINFO 1 140