diff options
author | marha <marha@users.sourceforge.net> | 2011-03-09 12:47:28 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-03-09 12:47:28 +0000 |
commit | ca5d010292c57383da523797a095ac847e1fe103 (patch) | |
tree | c1ec0ec785c855bc5815714f6685deb10acdad0a /include | |
parent | 837a26770cb9f1d8d7a4ce40e06db9bb05683702 (diff) | |
download | vcxsrv-ca5d010292c57383da523797a095ac847e1fe103.tar.gz vcxsrv-ca5d010292c57383da523797a095ac847e1fe103.tar.bz2 vcxsrv-ca5d010292c57383da523797a095ac847e1fe103.zip |
Enable only functions defined in windows XP
Enabled IPV6 compilation
Diffstat (limited to 'include')
-rw-r--r-- | include/dix-config.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/include/dix-config.h b/include/dix-config.h index 4ff06c358..028c1a033 100644 --- a/include/dix-config.h +++ b/include/dix-config.h @@ -237,6 +237,9 @@ /* Define to 1 if you have the <sys/types.h> header file. */ #define HAVE_SYS_TYPES_H 1 +/* Define to 1 if you have the <sys/utsname.h> header file. */ +#undef HAVE_SYS_UTSNAME_H + /* Define to 1 if you have the <sys/vm86.h> header file. */ #undef HAVE_SYS_VM86_H @@ -255,8 +258,11 @@ /* Define to 1 if you have the `vprintf' function. */ #define HAVE_VPRINTF 1 +/* Define to 1 if you have the `vasprintf' function. */ +#undef HAVE_VASPRINTF + /* Support IPv6 for TCP connections */ -#undef IPv6 +#define IPv6 1 /* Support os-specific local connections */ #undef LOCALCONN @@ -291,6 +297,9 @@ /* Support X resource extension */ #define RES 1 +/* Support client ID tracking in X resource extension */ +#undef CLIENTIDS + /* Support MIT-SCREEN-SAVER extension */ #define SCREENSAVER 1 @@ -484,6 +493,10 @@ #include <X11/Xwinsock.h> #include <X11/Xwindows.h> +#if NTDDI_VERSION < NTDDI_VISTA +int inet_pton(int af, const char *src, void *dst); +const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt); +#endif #include <assert.h> #define strcasecmp _stricmp |