~ubuntu-branches/ubuntu/oneiric/openvpn/oneiric

« back to all changes in this revision

Viewing changes to win/settings.in

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-06-16 18:33:37 UTC
  • mfrom: (1.3.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 46.
  • Revision ID: james.westby@ubuntu.com-20110616183337-etb3qgbwjkn8zniq
Tags: upstream-2.2.0
ImportĀ upstreamĀ versionĀ 2.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Version numbers, settings, and dependencies
2
2
# for Windows OpenVPN installer.
 
3
#
 
4
# Note that some variables are parsed by wb.py from version.m4 and are not 
 
5
# stored in this file. This is done to allow using the old and new Windows build 
 
6
# systems side-by-side
 
7
 
 
8
# Features to include. DO NOT comment these out, use 1 to enable and 0 to
 
9
# disable.
 
10
!define ENABLE_PASSWORD_SAVE 1
 
11
 
 
12
# ENABLE_CLIENT_SERVER enables the point-to-multipoint support. Normally you
 
13
# want to have this enabled.
 
14
!define ENABLE_CLIENT_SERVER 1
 
15
 
 
16
# ENABLE_CLIENT_ONLY removes server-side point-to-multipoint features. This
 
17
# depends on ENABLE_CLIENT_SERVER being set to 1.
 
18
!define ENABLE_CLIENT_ONLY 0
 
19
 
 
20
!define ENABLE_MANAGEMENT 1
 
21
!define ENABLE_HTTP_PROXY 1
 
22
!define ENABLE_SOCKS 1
 
23
!define ENABLE_FRAGMENT 1
 
24
!define ENABLE_DEBUG 1
3
25
 
4
26
# Branding
5
27
!define PRODUCT_NAME      "OpenVPN"
6
28
!define PRODUCT_UNIX_NAME "openvpn"
7
29
!define PRODUCT_FILE_EXT  "ovpn"
8
30
 
9
 
# Allow --askpass and --auth-user-pass passwords to be read from a file
10
 
;!define ENABLE_PASSWORD_SAVE
11
 
 
12
 
# Include the OpenVPN GUI exe in the installer.
13
 
# May be undefined.
 
31
# Include the OpenVPN GUI exe in the installer. Comment out USE_GUI to disable.
 
32
!define USE_GUI
14
33
!define OPENVPN_GUI_DIR "../openvpn-gui"
15
34
!define OPENVPN_GUI     "openvpn-gui-1.0.3.exe"
16
35
 
17
36
# Prebuilt libraries.  DMALLOC is optional.
18
37
!define OPENSSL_DIR       "../openssl"
19
38
!define LZO_DIR           "../lzo"
 
39
!define PKCS11_HELPER_DIR "../pkcs11-helper"
20
40
 
21
41
# write output files here
22
42
!define DIST   "dist"
23
43
 
24
 
# tapinstall.exe source code.
25
 
# Not needed if DRVBINSRC is defined
26
 
# (or if using pre-built mode).
 
44
# tapinstall.exe (a.k.a. devcon.exe) source code. Not needed if DRVBINSRC is 
 
45
# defined (or if using pre-built mode).
27
46
!define TISRC   "../tapinstall"
28
47
 
29
 
# TAP Adapter parameters.  Note that PRODUCT_TAP_ID is
30
 
# defined in version.m4.
31
 
!define PRODUCT_TAP_DEVICE_DESCRIPTION  "TAP-Win32 Adapter V9"
32
 
!define PRODUCT_TAP_PROVIDER            "TAP-Win32 Provider V9"
33
 
!define PRODUCT_TAP_MAJOR_VER           9
34
 
!define PRODUCT_TAP_MINOR_VER           7
35
 
!define PRODUCT_TAP_RELDATE             "04/19/2010"
36
 
 
37
48
# TAP adapter icon -- visible=0x81 or hidden=0x89
38
49
!define PRODUCT_TAP_CHARACTERISTICS     0x81
39
50
 
 
51
# TAP adapter metadata. Version information in ../version.m4.
 
52
!define PRODUCT_TAP_RELDATE    "04/19/2010"
 
53
!define PRODUCT_TAP_DEVICE_DESCRIPTION    "TAP-Win32 Adapter V9"
 
54
!define PRODUCT_TAP_PROVIDER    "TAP-Win32 Provider V9"
 
55
 
40
56
# Build debugging version of TAP driver
41
57
;!define PRODUCT_TAP_DEBUG
42
58
 
61
77
!define SIGNTOOL        "../signtool"
62
78
!define PRODUCT_SIGN_CN "openvpn"
63
79
 
 
80
# Directory with prebuilt TAP drivers and tapinstall.exes
 
81
!define TAP_PREBUILT "../tap-prebuilt"
 
82
 
64
83
; DEBUGGING -- set to something like "-DBG2"
65
84
!define OUTFILE_LABEL ""
66
85