From: Michael Poole Date: Fri, 27 Jul 2007 01:35:00 +0000 (-0400) Subject: Update revision levels in config.h.win32. X-Git-Tag: v1.4.0-rc1~9 X-Git-Url: http://git.pk910.de/?a=commitdiff_plain;h=80cb5da4e17bcc430410fb82a614d69c8ffaa27a;hp=f0c43dc698b17c827384a52f22daf905612fab37;p=srvx.git Update revision levels in config.h.win32. src/config.h.win32: Update VERSION and related data to use 1.4. Also, socklen_t should be int on Windows. --- diff --git a/src/config.h.win32 b/src/config.h.win32 index ef0902f..9fa87b7 100644 --- a/src/config.h.win32 +++ b/src/config.h.win32 @@ -263,13 +263,13 @@ #define PACKAGE_NAME "srvx" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "srvx 1.3.1-win" +#define PACKAGE_STRING "srvx 1.4-win" /* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "srvx-1.3.1" +#define PACKAGE_TARNAME "srvx-1.4" /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.3.1" +#define PACKAGE_VERSION "1.4" /* Define as the return type of signal handlers (`int' or `void'). */ #define RETSIGTYPE void @@ -292,7 +292,7 @@ #define TM_IN_SYS_TIME 1 /* Version number of package */ -#define VERSION 1.3.1 +#define VERSION 1.4 /* Define if using the Win32 I/O backend */ #define WITH_IOSET_WIN32 1 @@ -331,4 +331,4 @@ #endif /* type to use in place of socklen_t if not defined */ -#undef socklen_t +#define socklen_t int