]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Replaced config-win32.h with win/config.h.in
authorSamuli Seppänen <samuli@openvpn.net>
Tue, 15 Mar 2011 14:37:41 +0000 (16:37 +0200)
committerDavid Sommerseth <davids@redhat.com>
Mon, 21 Mar 2011 14:15:19 +0000 (15:15 +0100)
The original config-win32.h - a static header file - has been superceded by both
"domake-win" script and the new Python-based buildsystem. Transformed it into a
template file, win/config.h.in, which obtains the most commonly used build
parameters from win/settings.in.

Added support code to win/config.py and win/wb.py to preprocess win/config.h.in
and copy it to config.h, from where source and header files can find it.

Removed all references to config-win32.h. Also removed obsolete
PACKAGE_BUGREPORT and USE_PTHREAD variables from the win/config.h.in file.

Signed-off-by: Samuli Seppänen <samuli@openvpn.net>
Acked-by: James Yonan <james@openvpn.net>
Signed-off-by: David Sommerseth <davids@redhat.com>
openvpn.8
service-win32/openvpnserv.c
syshead.h
tap-win32/SOURCES.in
win/config.h.in [moved from config-win32.h with 90% similarity]
win/config.py
win/settings.in
win/wb.py

index 298c79a77b9df2d71d80292b4c694e4c7974fd64..525ddd54b557873f210705406ecfd755d367c80a 100644 (file)
--- a/openvpn.8
+++ b/openvpn.8
@@ -3274,7 +3274,7 @@ Authenticate with server using username/password.
 is a file containing username/password on 2 lines (Note: OpenVPN
 will only read passwords from a file if it has been built
 with the \-\-enable-password-save configure option, or on Windows
-by defining ENABLE_PASSWORD_SAVE in config-win32.h).
+by defining ENABLE_PASSWORD_SAVE in win/settings.in).
 
 If
 .B up
@@ -4227,7 +4227,7 @@ to a certain extent invalidates the extra security provided by
 using an encrypted key (Note: OpenVPN
 will only read passwords from a file if it has been built
 with the \-\-enable-password-save configure option, or on Windows
-by defining ENABLE_PASSWORD_SAVE in config-win32.h).
+by defining ENABLE_PASSWORD_SAVE in win/settings.in).
 .\"*********************************************************
 .TP
 .B \-\-auth-nocache
index d0cfd9ba6d57278081eba24c1e0f3bdbc703ef49..b5d8d379a0feabd39dee7a6edc37ecbe6bbb108d 100755 (executable)
  * This code is designed to be built with the mingw compiler.
  */
 
-#ifdef _MSC_VER
-#include "config-win32.h"
-#else
 #include "config.h"
-#endif
 #include <windows.h>
 #include <stdlib.h>
 #include <stdio.h>
index d75f881934d18ca6e61599da67a366875f36aef5..cef7dbfa5102279c949c73c60e27adc3912301af 100644 (file)
--- a/syshead.h
+++ b/syshead.h
  * Only include if not during configure
  */
 #ifndef PACKAGE_NAME
-#ifdef _MSC_VER
-#include "config-win32.h"
-#else
 #include "config.h"
 #endif
-#endif
 
 /* branch prediction hints */
 #if defined(__GNUC__)
index b7f0e18288779428cbcc7ddc8f2787048e0cb494..cf030f48f75fec50fab3b61cbe3bf9d6153ab30f 100755 (executable)
@@ -11,8 +11,7 @@ TARGETLIBS=$(DDK_LIB_PATH)\ndis.lib $(DDK_LIB_PATH)\ntstrsafe.lib
 INCLUDES=$(DDK_INCLUDE_PATH) ..
 
 # The TAP version numbers here must be >=
-# TAP_WIN32_MIN_x values defined in
-# config-win32.h
+# PRODUCT_TAP_WIN32_MIN_x values defined in version.m4
 C_DEFINES=
 C_DEFINES=$(C_DEFINES) -DTAP_DRIVER_MAJOR_VERSION=@@PRODUCT_TAP_MAJOR_VER@@
 C_DEFINES=$(C_DEFINES) -DTAP_DRIVER_MINOR_VERSION=@@PRODUCT_TAP_MINOR_VER@@
similarity index 90%
rename from config-win32.h
rename to win/config.h.in
index 8f4de3b68f21e01e39768e7a52dde920b7bca97a..fb349d0851649f8335a0bccc61e767f2d200d999 100644 (file)
-/*\r
- *  OpenVPN -- An application to securely tunnel IP networks\r
- *             over a single UDP port, with support for SSL/TLS-based\r
- *             session authentication and key exchange,\r
- *             packet encryption, packet authentication, and\r
- *             packet compression.\r
- *\r
- *  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>\r
- *\r
- *  This program is free software; you can redistribute it and/or modify\r
- *  it under the terms of the GNU General Public License version 2\r
- *  as published by the Free Software Foundation.\r
- *\r
- *  This program is distributed in the hope that it will be useful,\r
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- *  GNU General Public License for more details.\r
- *\r
- *  You should have received a copy of the GNU General Public License\r
- *  along with this program (see the file COPYING included with this\r
- *  distribution); if not, write to the Free Software Foundation, Inc.,\r
- *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
- */\r
-\r
-/*\r
- * Configuration header for Win32 using the MSVC environment.\r
- */\r
-\r
-#include <windows.h>\r
-#include <winsock2.h>\r
-#include "autodefs.h" /* machine generated */\r
-\r
-//#define sleep(x) Sleep((x)*1000)\r
-\r
-//#define random rand\r
-//#define srandom srand\r
-\r
-typedef unsigned long in_addr_t;\r
-\r
-#ifndef _SSIZE_T_\r
-#define _SSIZE_T_\r
- typedef unsigned int ssize_t;\r
-#endif\r
-\r
-/* Append a label to program startup title */\r
-/*#define DEBUG_LABEL "DEBUG1"*/\r
-\r
-/* Should we print debug info from driver? */\r
-#ifdef PRODUCT_TAP_DEBUG\r
-#define TAP_WIN32_DEBUG\r
-#endif\r
-\r
+/*
+ *  OpenVPN -- An application to securely tunnel IP networks
+ *             over a single UDP port, with support for SSL/TLS-based
+ *             session authentication and key exchange,
+ *             packet encryption, packet authentication, and
+ *             packet compression.
+ *
+ *  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License version 2
+ *  as published by the Free Software Foundation.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program (see the file COPYING included with this
+ *  distribution); if not, write to the Free Software Foundation, Inc.,
+ *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+/*
+ * Configuration header for Win32 using the MSVC environment.
+ */
+
+#include <windows.h>
+#include <winsock2.h>
+#include "autodefs.h" /* machine generated */
+
+//#define sleep(x) Sleep((x)*1000)
+
+//#define random rand
+//#define srandom srand
+
+typedef unsigned long in_addr_t;
+
+#ifndef _SSIZE_T_
+#define _SSIZE_T_
+ typedef unsigned int ssize_t;
+#endif
+
+/* Append a label to program startup title */
+/*#define DEBUG_LABEL "DEBUG1"*/
+
+/* Should we print debug info from driver? */
+#ifdef PRODUCT_TAP_DEBUG
+#define TAP_WIN32_DEBUG
+#endif
+
 /* Enable reading credentials from a file */
-#define ENABLE_PASSWORD_SAVE 1
-
-/* Enable client/server capability */\r
-#define ENABLE_CLIENT_SERVER 1\r
-\r
-/* Enable client capability only */\r
-#define ENABLE_CLIENT_ONLY\r
-\r
-/* Enable management server capability */\r
-#define ENABLE_MANAGEMENT 1\r
-\r
-/* Enable PKCS#11 support */\r
-/* #define USE_PKCS11 1 */\r
-\r
-/* Enable HTTP proxy support */\r
-#define ENABLE_HTTP_PROXY 1\r
-\r
-/* Enable Socks proxy support */\r
-#define ENABLE_SOCKS 1\r
-\r
-/* Enable internal fragmentation support */\r
-#define ENABLE_FRAGMENT 1\r
-\r
-/* Enable smaller executable size */\r
-/* #undef ENABLE_SMALL */\r
-\r
-/* Enable debugging support */\r
-#define ENABLE_DEBUG 1\r
-\r
-/* if defined, will allow usage of the --plugin directive */\r
-#define USE_LOAD_LIBRARY\r
-\r
-/* Dimension size to use for empty array declaration */\r
-#define EMPTY_ARRAY_SIZE 0\r
-\r
-/* Define to 1 if you have the `getsockname' function. */\r
-#define HAVE_GETSOCKNAME 1\r
-\r
-/* Define to 1 if you have the <openssl/engine.h> header file. */\r
-#define HAVE_OPENSSL_ENGINE_H 1\r
-\r
-/* Define to 1 if you have the `ENGINE_load_builtin_engines' function. */\r
-#define HAVE_ENGINE_LOAD_BUILTIN_ENGINES 1\r
-\r
-/* Define to 1 if you have the `ENGINE_register_all_complete' function. */\r
-#define HAVE_ENGINE_REGISTER_ALL_COMPLETE 1\r
-\r
-/* Define to 1 if you have the `ENGINE_cleanup' function. */\r
-#define HAVE_ENGINE_CLEANUP 1\r
-\r
-/* gettimeofday() is implemented in otime.c for Windows */\r
-#define HAVE_GETTIMEOFDAY 1\r
-\r
-/* Define to 1 if you have the 'chsize' function. */\r
-#define HAVE_CHSIZE 1\r
-\r
-/* Define to 1 if you have the `chdir' function. */\r
-#define HAVE_CHDIR 1\r
-\r
-/* Define to 1 if your compiler supports GNU GCC-style variadic macros */\r
-#ifndef _MSC_VER /* Defines MSFT compiler version. Defined as 1200 for MSVC++ 6.0. */\r
-#define HAVE_CPP_VARARG_MACRO_GCC 1\r
-#endif\r
-\r
-/* Define to 1 if you have the <ctype.h> header file. */\r
-#define HAVE_CTYPE_H 1\r
-\r
-/* Define to 1 if you have the <errno.h> header file. */\r
-#define HAVE_ERRNO_H 1\r
-\r
-/* Define to 1 if you have the `EVP_CIPHER_CTX_set_key_length' function. */\r
-#define HAVE_EVP_CIPHER_CTX_SET_KEY_LENGTH 1\r
-\r
-/* Define to 1 if you have the <fcntl.h> header file. */\r
-#define HAVE_FCNTL_H 1\r
-\r
-/* Define to 1 if you have the `getsockopt' function. */\r
-#define HAVE_GETSOCKOPT 1\r
-\r
-/* Define to 1 if you have the `inet_ntoa' function. */\r
-#define HAVE_INET_NTOA 1\r
-\r
-/* Define to 1 if your system has a GNU libc compatible `malloc' function, and\r
-   to 0 otherwise. */\r
-#define HAVE_MALLOC 1\r
-\r
-/* Define to 1 if you have the `memset' function. */\r
-#define HAVE_MEMSET 1\r
-\r
-/* Define to 1 if you have the `setsockopt' function. */\r
-#define HAVE_SETSOCKOPT 1\r
-\r
-/* Define to 1 if you have the `socket' function. */\r
-#define HAVE_SOCKET 1\r
-\r
-/* Define to 1 if you have the <stdarg.h> header file. */\r
-#define HAVE_STDARG_H 1\r
-\r
-/* Define to 1 if you have the <stdint.h> header file. */\r
-#ifndef _MSC_VER\r
-#define HAVE_STDINT_H 1\r
-#endif\r
-\r
-/* Define to 1 if you have the <stdio.h> header file. */\r
-#define HAVE_STDIO_H 1\r
-\r
-/* Define to 1 if you have the <stdlib.h> header file. */\r
-#define HAVE_STDLIB_H 1\r
-\r
-/* Define to 1 if you have the `strerror' function. */\r
-#define HAVE_STRERROR 1\r
-\r
-/* Define to 1 if you have the <strings.h> header file. */\r
-#define HAVE_STRINGS_H 1\r
-\r
-/* Define to 1 if you have the <string.h> header file. */\r
-#define HAVE_STRING_H 1\r
-\r
-/* Define to 1 if you have the `system' function. */\r
-#define HAVE_SYSTEM 1\r
-\r
-/* Define to 1 if you have the <sys/file.h> header file. */\r
-#ifndef _MSC_VER\r
-#define HAVE_SYS_FILE_H 1\r
-#endif\r
-\r
-/* Define to 1 if you have the <sys/stat.h> header file. */\r
-#define HAVE_SYS_STAT_H 1\r
-\r
-/* Define to 1 if you have the <sys/time.h> header file. */\r
-#ifndef _MSC_VER\r
-#define HAVE_SYS_TIME_H 1\r
-#endif\r
-\r
-/* Define to 1 if you have the <sys/types.h> header file. */\r
-#define HAVE_SYS_TYPES_H 1\r
-\r
-/* Define to 1 if you have the `time' function. */\r
-#define HAVE_TIME 1\r
-\r
-/* Define to 1 if you have the <unistd.h> header file. */\r
-#ifndef _MSC_VER\r
-#define HAVE_UNISTD_H 1\r
-#endif\r
-\r
-/* Define to 1 if you have the `vsnprintf' function. */\r
-#define HAVE_VSNPRINTF 1\r
-\r
-/* Special Windows version of getpass() defined in io.c */\r
-#define HAVE_GETPASS 1\r
-\r
-/* Define to the address where bug reports for this package should be sent. */\r
-//#define PACKAGE_BUGREPORT "openvpn-users@lists.sourceforge.net"\r
-\r
-/* Define to the full name and version of this package. */\r
-#ifdef DEBUG_LABEL\r
-#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION " " DEBUG_LABEL\r
-#else\r
-#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION\r
-#endif\r
-\r
-/* Define as the return type of signal handlers (`int' or `void'). */\r
-#define RETSIGTYPE void\r
-\r
-/* The size of a `unsigned int', as computed by sizeof. */\r
-#define SIZEOF_UNSIGNED_INT 4\r
-\r
-/* The size of a `unsigned long', as computed by sizeof. */\r
-#define SIZEOF_UNSIGNED_LONG 4\r
-\r
-/* Define to 1 if you have the ANSI C header files. */\r
-#define STDC_HEADERS 1\r
-\r
-/* A string representing our target */\r
-#ifdef _MSC_VER\r
-#define TARGET_ALIAS "Win32-MSVC++"\r
-#else\r
-#define TARGET_ALIAS "Win32-MinGW"\r
-#endif\r
-\r
-/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */\r
-#ifndef _MSC_VER\r
-#define TIME_WITH_SYS_TIME 1\r
-#endif\r
-\r
-/* Use OpenSSL crypto library */\r
-#define USE_CRYPTO 1\r
-\r
-/* Use LZO compression library */\r
-#define USE_LZO 1\r
-\r
-/* LZO version number */\r
-#define LZO_VERSION_NUM "2"\r
-\r
-/* Use lzo/ directory prefix for LZO header files (for LZO 2.0) */\r
-#define LZO_HEADER_DIR 1\r
-\r
-/* Use OpenSSL SSL library */\r
-#define USE_SSL 1\r
-\r
-/* Version number of package */\r
-#define VERSION PACKAGE_VERSION\r
-\r
-/* Define as `__inline' if that's what the C compiler calls it, or to nothing\r
-   if it is not supported. */\r
-#define inline __inline\r
-\r
-/* type to use in place of socklen_t if not defined */\r
-#define socklen_t unsigned int\r
-\r
-/* 32-bit unsigned type */\r
-#define uint32_t unsigned int\r
-\r
-/* 16-bit unsigned type */\r
-#define uint16_t unsigned short\r
-\r
-/* 8-bit unsigned type */\r
-#define uint8_t unsigned char\r
-\r
-/* Route command */\r
-#define ROUTE_PATH "route"\r
-\r
-/* Windows doesn't support PTHREAD yet */\r
-#ifdef USE_PTHREAD\r
-#error The Windows version of OpenVPN does not support PTHREAD yet\r
-#endif\r
-\r
-#ifdef _MSC_VER\r
-/* MSVC++ hacks */\r
-#pragma warning(disable:4244) // conversion from 'foo' to 'bar', possible loss of data\r
-#pragma warning(disable:4018) // signed/unsigned mismatch\r
-#include <io.h>\r
-#include <direct.h>\r
-//#define vsnprintf _vsnprintf\r
-//#define vsnwprintf _vsnwprintf\r
-#define snwprintf _snwprintf\r
-#define write _write\r
-#define open _open\r
-#define read _read\r
-#define close _close\r
-#define lseek _lseek\r
-#define chdir _chdir\r
-#define strdup _strdup\r
-#define strcasecmp _stricmp\r
-#define chsize _chsize\r
-#define S_IRUSR 0\r
-#define S_IWUSR 0\r
-#define TV_SEC_CAST (long)\r
-#define TV_USEC_CAST (long)\r
-typedef int intptr_t;\r
-/* Visual Studio 2005 supports vararg macros */\r
-#if _MSC_VER >= 1400\r
-#define HAVE_CPP_VARARG_MACRO_ISO 1\r
-#endif\r
-#endif\r
+#if @ENABLE_PASSWORD_SAVE@ != 0
+#define ENABLE_PASSWORD_SAVE @ENABLE_PASSWORD_SAVE@
+#endif
+
+/* Enable client/server capability */
+#if @ENABLE_CLIENT_SERVER@ != 0
+#define ENABLE_CLIENT_SERVER @ENABLE_CLIENT_SERVER@
+#endif
+
+/* Enable client capability only */
+#if @ENABLE_CLIENT_ONLY@ != 0
+#define ENABLE_CLIENT_ONLY @ENABLE_CLIENT_ONLY@
+#endif
+
+/* Enable management server capability */
+#if @ENABLE_MANAGEMENT@ != 0
+#define ENABLE_MANAGEMENT @ENABLE_MANAGEMENT@
+#endif
+
+/* Enable PKCS#11 support */
+/* #define USE_PKCS11 1 */
+
+/* Enable HTTP proxy support */
+#if @ENABLE_HTTP_PROXY@ != 0
+#define ENABLE_HTTP_PROXY @ENABLE_HTTP_PROXY@
+#endif
+
+/* Enable Socks proxy support */
+#if @ENABLE_SOCKS@ != 0
+#define ENABLE_SOCKS @ENABLE_SOCKS@
+#endif
+
+/* Enable internal fragmentation support */
+#if @ENABLE_FRAGMENT@ != 0
+#define ENABLE_FRAGMENT @ENABLE_FRAGMENT@
+#endif
+
+/* Enable smaller executable size */
+/* #undef ENABLE_SMALL */
+
+/* Enable debugging support */
+#if @ENABLE_DEBUG@ != 0
+#define ENABLE_DEBUG @ENABLE_DEBUG@
+#endif
+
+/* if defined, will allow usage of the --plugin directive */
+#define USE_LOAD_LIBRARY
+
+/* Dimension size to use for empty array declaration */
+#define EMPTY_ARRAY_SIZE 0
+
+/* Define to 1 if you have the `getsockname' function. */
+#define HAVE_GETSOCKNAME 1
+
+/* Define to 1 if you have the <openssl/engine.h> header file. */
+#define HAVE_OPENSSL_ENGINE_H 1
+
+/* Define to 1 if you have the `ENGINE_load_builtin_engines' function. */
+#define HAVE_ENGINE_LOAD_BUILTIN_ENGINES 1
+
+/* Define to 1 if you have the `ENGINE_register_all_complete' function. */
+#define HAVE_ENGINE_REGISTER_ALL_COMPLETE 1
+
+/* Define to 1 if you have the `ENGINE_cleanup' function. */
+#define HAVE_ENGINE_CLEANUP 1
+
+/* gettimeofday() is implemented in otime.c for Windows */
+#define HAVE_GETTIMEOFDAY 1
+
+/* Define to 1 if you have the 'chsize' function. */
+#define HAVE_CHSIZE 1
+
+/* Define to 1 if you have the `chdir' function. */
+#define HAVE_CHDIR 1
+
+/* Define to 1 if your compiler supports GNU GCC-style variadic macros */
+#ifndef _MSC_VER /* Defines MSFT compiler version. Defined as 1200 for MSVC++ 6.0. */
+#define HAVE_CPP_VARARG_MACRO_GCC 1
+#endif
+
+/* Define to 1 if you have the <ctype.h> header file. */
+#define HAVE_CTYPE_H 1
+
+/* Define to 1 if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H 1
+
+/* Define to 1 if you have the `EVP_CIPHER_CTX_set_key_length' function. */
+#define HAVE_EVP_CIPHER_CTX_SET_KEY_LENGTH 1
+
+/* Define to 1 if you have the <fcntl.h> header file. */
+#define HAVE_FCNTL_H 1
+
+/* Define to 1 if you have the `getsockopt' function. */
+#define HAVE_GETSOCKOPT 1
+
+/* Define to 1 if you have the `inet_ntoa' function. */
+#define HAVE_INET_NTOA 1
+
+/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
+   to 0 otherwise. */
+#define HAVE_MALLOC 1
+
+/* Define to 1 if you have the `memset' function. */
+#define HAVE_MEMSET 1
+
+/* Define to 1 if you have the `setsockopt' function. */
+#define HAVE_SETSOCKOPT 1
+
+/* Define to 1 if you have the `socket' function. */
+#define HAVE_SOCKET 1
+
+/* Define to 1 if you have the <stdarg.h> header file. */
+#define HAVE_STDARG_H 1
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#ifndef _MSC_VER
+#define HAVE_STDINT_H 1
+#endif
+
+/* Define to 1 if you have the <stdio.h> header file. */
+#define HAVE_STDIO_H 1
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the `strerror' function. */
+#define HAVE_STRERROR 1
+
+/* Define to 1 if you have the <strings.h> header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the <string.h> header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the `system' function. */
+#define HAVE_SYSTEM 1
+
+/* Define to 1 if you have the <sys/file.h> header file. */
+#ifndef _MSC_VER
+#define HAVE_SYS_FILE_H 1
+#endif
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the <sys/time.h> header file. */
+#ifndef _MSC_VER
+#define HAVE_SYS_TIME_H 1
+#endif
+
+/* 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 `time' function. */
+#define HAVE_TIME 1
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#ifndef _MSC_VER
+#define HAVE_UNISTD_H 1
+#endif
+
+/* Define to 1 if you have the `vsnprintf' function. */
+#define HAVE_VSNPRINTF 1
+
+/* Special Windows version of getpass() defined in io.c */
+#define HAVE_GETPASS 1
+
+/* Define to the full name and version of this package. */
+#ifdef DEBUG_LABEL
+#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION " " DEBUG_LABEL
+#else
+#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION
+#endif
+
+/* Define as the return type of signal handlers (`int' or `void'). */
+#define RETSIGTYPE void
+
+/* The size of a `unsigned int', as computed by sizeof. */
+#define SIZEOF_UNSIGNED_INT 4
+
+/* The size of a `unsigned long', as computed by sizeof. */
+#define SIZEOF_UNSIGNED_LONG 4
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* A string representing our target */
+#ifdef _MSC_VER
+#define TARGET_ALIAS "Win32-MSVC++"
+#else
+#define TARGET_ALIAS "Win32-MinGW"
+#endif
+
+/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
+#ifndef _MSC_VER
+#define TIME_WITH_SYS_TIME 1
+#endif
+
+/* Use OpenSSL crypto library */
+#define USE_CRYPTO 1
+
+/* Use LZO compression library */
+#define USE_LZO 1
+
+/* LZO version number */
+#define LZO_VERSION_NUM "2"
+
+/* Use lzo/ directory prefix for LZO header files (for LZO 2.0) */
+#define LZO_HEADER_DIR 1
+
+/* Use OpenSSL SSL library */
+#define USE_SSL 1
+
+/* Version number of package */
+#define VERSION PACKAGE_VERSION
+
+/* Define as `__inline' if that's what the C compiler calls it, or to nothing
+   if it is not supported. */
+#define inline __inline
+
+/* type to use in place of socklen_t if not defined */
+#define socklen_t unsigned int
+
+/* 32-bit unsigned type */
+#define uint32_t unsigned int
+
+/* 16-bit unsigned type */
+#define uint16_t unsigned short
+
+/* 8-bit unsigned type */
+#define uint8_t unsigned char
+
+/* Route command */
+#define ROUTE_PATH "route"
+
+#ifdef _MSC_VER
+/* MSVC++ hacks */
+#pragma warning(disable:4244) // conversion from 'foo' to 'bar', possible loss of data
+#pragma warning(disable:4018) // signed/unsigned mismatch
+#include <io.h>
+#include <direct.h>
+//#define vsnprintf _vsnprintf
+//#define vsnwprintf _vsnwprintf
+#define snwprintf _snwprintf
+#define write _write
+#define open _open
+#define read _read
+#define close _close
+#define lseek _lseek
+#define chdir _chdir
+#define strdup _strdup
+#define strcasecmp _stricmp
+#define chsize _chsize
+#define S_IRUSR 0
+#define S_IWUSR 0
+#define TV_SEC_CAST (long)
+#define TV_USEC_CAST (long)
+typedef int intptr_t;
+/* Visual Studio 2005 supports vararg macros */
+#if _MSC_VER >= 1400
+#define HAVE_CPP_VARARG_MACRO_ISO 1
+#endif
+#endif
index 2c57004871b32012ad0db43912dbfc04c760910c..b820510f8586aa59e671939454a481c8fbd6221c 100644 (file)
@@ -1,20 +1,21 @@
-from wb import preprocess, autogen, mod_fn, home_fn, build_configure_h, build_version_m4_vars, build_autodefs, make_headers_objs, dict_def
-\r
-def main(config):\r
+from wb import preprocess, autogen, mod_fn, home_fn, build_config_h, build_configure_h, build_version_m4_vars, build_autodefs, make_headers_objs, dict_def
+
+def main(config):
+    build_config_h(config)
     build_configure_h(config, mod_fn(home_fn('configure.h')), head_comment='/* %s */\n\n' % autogen)
     build_version_m4_vars(mod_fn(mod_fn('version_m4_vars.tmp')), head_comment='/* %s */\n\n' % autogen)
-    build_autodefs(config, mod_fn('autodefs.h.in'), home_fn('autodefs.h'))\r
-    ho = make_headers_objs(home_fn('Makefile.am'))\r
-\r
-    preprocess(dict_def(config, [('HEADERS_OBJS', ho)]),\r
-               in_fn=mod_fn('msvc.mak.in'),\r
-               out_fn=home_fn('msvc.mak'),\r
-               quote_begin='@',\r
-               quote_end='@',\r
-               if_prefix='!',\r
-               head_comment='# %s\n\n' % autogen)\r
-\r
-# if we are run directly, and not loaded as a module\r
-if __name__ == "__main__":\r
-    from wb import config\r
-    main(config)\r
+    build_autodefs(config, mod_fn('autodefs.h.in'), home_fn('autodefs.h'))
+    ho = make_headers_objs(home_fn('Makefile.am'))
+
+    preprocess(dict_def(config, [('HEADERS_OBJS', ho)]),
+               in_fn=mod_fn('msvc.mak.in'),
+               out_fn=home_fn('msvc.mak'),
+               quote_begin='@',
+               quote_end='@',
+               if_prefix='!',
+               head_comment='# %s\n\n' % autogen)
+
+# if we are run directly, and not loaded as a module
+if __name__ == "__main__":
+    from wb import config
+    main(config)
index 6dded7931cb8f329470d673200a088577206c644..10c79268fe9e0d564dcb111b4250cabb515a17dc 100644 (file)
@@ -5,10 +5,18 @@
 # stored in this file. This is done to allow using the old and new Windows build 
 # systems side-by-side
 
-# Features to include
+# Features to include. DO NOT comment these out, use 1 to enable and 0 to
+# disable.
 !define ENABLE_PASSWORD_SAVE 1
+
+# ENABLE_CLIENT_SERVER enables the point-to-multipoint support. Normally you
+# want to have this enabled.
 !define ENABLE_CLIENT_SERVER 1
-!define ENABLE_CLIENT_ONLY
+
+# ENABLE_CLIENT_ONLY removes server-side point-to-multipoint features. This
+# depends on ENABLE_CLIENT_SERVER being set to 1.
+!define ENABLE_CLIENT_ONLY 0
+
 !define ENABLE_MANAGEMENT 1
 !define ENABLE_HTTP_PROXY 1
 !define ENABLE_SOCKS 1
index 33eefbd7745a0a2821e1acc1c095c9b89b498574..1dacc9b1335dce91cc1a7f32eaed982fba28506a 100644 (file)
--- a/win/wb.py
+++ b/win/wb.py
@@ -101,20 +101,28 @@ def parse_build_params(kv, settings_in):
                 kv[g[0]] = g[1] or ''
     f.close()
 
+def dict_def(dict, newdefs):
+    ret = dict.copy()
+    ret.update(newdefs)
+    return ret
 
-def dict_def(dict, newdefs):\r
-    ret = dict.copy()\r
-    ret.update(newdefs)\r
-    return ret\r
-\r
-def build_autodefs(kv, autodefs_in, autodefs_out):\r
+def build_autodefs(kv, autodefs_in, autodefs_out):
     preprocess(kv,\r
-               in_fn=autodefs_in,\r
-               out_fn=autodefs_out,\r
-               quote_begin='@',\r
-               quote_end='@',\r
-               head_comment='/* %s */\n\n' % autogen)\r
-\r
+               in_fn=autodefs_in,
+               out_fn=autodefs_out,
+               quote_begin='@',
+               quote_end='@',
+               head_comment='/* %s */\n\n' % autogen)
+
+def build_config_h(kv):
+    """Generate static win/config.h to config.h to mimic autotools behavior"""
+    preprocess(kv,
+               in_fn=mod_fn('config.h.in'),
+               out_fn=home_fn('config.h'),
+               quote_begin='@',
+               quote_end='@',
+               head_comment='/* %s */\n\n' % autogen)
+
 def build_configure_h(kv, configure_h_out, head_comment):
     """Generate a configure.h dynamically"""
     fout = open(configure_h_out, 'w')
@@ -163,14 +171,12 @@ win/settings.in format. This done to allow importing them in win/openvpn.nsi"""
 
     fout.close()
 
+def preprocess(kv, in_fn, out_fn, quote_begin=None, quote_end=None, if_prefix=None, head_comment=None):
+    def repfn(m):
+        var, = m.groups()
+        return kv.get(var, '')
 
-
-def preprocess(kv, in_fn, out_fn, quote_begin=None, quote_end=None, if_prefix=None, head_comment=None):\r
-    def repfn(m):\r
-        var, = m.groups()\r
-        return kv.get(var, '')\r
-\r
-    re_macro = re_ifdef = None\r
+    re_macro = re_ifdef = None
 \r
     if quote_begin and quote_end:\r
         re_macro = re.compile(r'%s(\w+)%s' % (re.escape(quote_begin), re.escape(quote_end)))\r