From 4b312378e9e7084a0699ca6d4b895bdadb7540db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuli=20Sepp=C3=A4nen?= Date: Tue, 15 Mar 2011 16:37:41 +0200 Subject: Replaced config-win32.h with win/config.h.in MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Acked-by: James Yonan Signed-off-by: David Sommerseth --- win/settings.in | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'win/settings.in') diff --git a/win/settings.in b/win/settings.in index 6dded79..10c7926 100644 --- a/win/settings.in +++ b/win/settings.in @@ -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 -- cgit v1.2.3