diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-05-12 20:31:43 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-05-12 20:31:43 +0000 |
commit | 1bda73a7b0f45a2502ae93e33e30b98152d893f3 (patch) | |
tree | 7bdf8f59ec2c6443a071a0217f78f8a999596030 /config-win32.h.in | |
parent | Misc XGUI fixes. (diff) | |
download | openvpn-1bda73a7b0f45a2502ae93e33e30b98152d893f3.tar.xz |
Moved branch into official BETA21 position.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2959 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | config-win32.h.in (renamed from config-win32.h) | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/config-win32.h b/config-win32.h.in index 4fe1d07..44d9f30 100644 --- a/config-win32.h +++ b/config-win32.h.in @@ -62,8 +62,9 @@ typedef unsigned long in_addr_t; * * The TAP-Win32 version number is defined in tap-win32/SOURCES */ -#define TAP_WIN32_MIN_MAJOR 9 -#define TAP_WIN32_MIN_MINOR 1 +#define TAP_ID @TAP_ID@ +#define TAP_WIN32_MIN_MAJOR @TAP_WIN32_MIN_MAJOR@ +#define TAP_WIN32_MIN_MINOR @TAP_WIN32_MIN_MINOR@ /* Enable client/server capability */ #define ENABLE_CLIENT_SERVER 1 @@ -215,19 +216,19 @@ typedef unsigned long in_addr_t; #define HAVE_GETPASS 1 /* Name of package */ -#define PACKAGE PRODUCT_UNIX_NAME +#define PACKAGE @PACKAGE@ /* Define to the address where bug reports for this package should be sent. */ //#define PACKAGE_BUGREPORT "openvpn-users@lists.sourceforge.net" /* Define to the full name of this package. */ -#define PACKAGE_NAME PRODUCT_NAME +#define PACKAGE_NAME @PACKAGE_NAME@ /* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME PACKAGE +#define PACKAGE_TARNAME @PACKAGE_TARNAME@ /* Define to the version of this package. */ -#define PACKAGE_VERSION PRODUCT_VERSION +#define PACKAGE_VERSION @PACKAGE_VERSION@ /* Define to the full name and version of this package. */ #ifdef DEBUG_LABEL @@ -318,4 +319,8 @@ typedef unsigned long in_addr_t; #define S_IWUSR 0 typedef int intptr_t; #undef S_NORMAL +/* Visual Studio 2005 supports vararg macros */ +#if _MSC_VER >= 1400 +#define HAVE_CPP_VARARG_MACRO_ISO 1 +#endif #endif |