diff options
author | Samuli Seppänen <samuli@openvpn.net> | 2011-02-19 10:15:12 +0200 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2011-02-27 00:59:04 +0100 |
commit | c75a8976f070ef86cfced71b3df5cbce0e32e01a (patch) | |
tree | 020915e10160547e08ad7a7d868a4363623698fe /win/settings.in | |
parent | Added first version of NSI installer script to win/openvpn.nsi (diff) | |
download | openvpn-c75a8976f070ef86cfced71b3df5cbce0e32e01a.tar.xz |
Changes to buildsystem patchset
Implemented changes to the buildsystem patchset suggested by jamesyonan in IRC
meeting on 17th Feb 2010:
1) Remove variables added to version.m4 and use win/settings.in instead
2) Add ENABLE_<FEATURE> configuration to win/settings.in instead of parsing
config-win32.h for them
This patch applies on top of the previous 13 patches.
Signed-off-by: Samuli Seppänen <samuli@openvpn.net>
Acked-by: James Yonan <james@openvpn.net>
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to '')
-rw-r--r-- | win/settings.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/win/settings.in b/win/settings.in index c349752..25109e2 100644 --- a/win/settings.in +++ b/win/settings.in @@ -5,6 +5,16 @@ # stored in this file. This is done to allow using the old and new Windows build # systems side-by-side +# Features to include +!define ENABLE_PASSWORD_SAVE 1 +!define ENABLE_CLIENT_SERVER 1 +!define ENABLE_CLIENT_ONLY +!define ENABLE_MANAGEMENT 1 +!define ENABLE_HTTP_PROXY 1 +!define ENABLE_SOCKS 1 +!define ENABLE_FRAGMENT 1 +!define ENABLE_DEBUG 1 + # Branding !define PRODUCT_NAME "OpenVPN" !define PRODUCT_UNIX_NAME "openvpn" @@ -30,6 +40,11 @@ # TAP adapter icon -- visible=0x81 or hidden=0x89 !define PRODUCT_TAP_CHARACTERISTICS 0x81 +# TAP adapter metadata. Version information in ../version.m4. +!define PRODUCT_TAP_RELDATE "04/19/2010" +!define PRODUCT_TAP_DEVICE_DESCRIPTION "TAP-Win32 Adapter V9" +!define PRODUCT_TAP_PROVIDER "TAP-Win32 Provider V9" + # Build debugging version of TAP driver ;!define PRODUCT_TAP_DEBUG |