conditionally use modern UI for NSIS installer
[obnox/wireshark/wip.git] / config.nmake
1 # $Id: config.nmake,v 1.72 2003/12/26 11:37:58 ulfl Exp $
2
3 VERSION=0.10.0
4 #
5 # This should be comma-separated, not dot-separated, as per Graham
6 # Bloice's message in
7 #
8 #       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
9 #
10 # "The RC_VERSION variable in config.nmake should be comma separated. 
11 # This allows the resources to be built correctly and the version
12 # number to be correctly displayed in the explorer properties dialog
13 # for the executables, and XP's tooltip, rather than 0.0.0.0."
14 #
15 RC_VERSION=0,10,0
16 WTAP_VERSION=0.0
17
18 #
19 # If you're building with WinPcap 2.3, set WINPCAP_VERSION to 2.3; if
20 # you're building with WinPcap 3.0, set it to 3.0; if you're building
21 # with WinPcap 3.1 alpha, set it to 3.1.
22 #
23 # If you're not building with WinPcap at all, don't set it (comment
24 # out or remove the line that sets it).
25 #
26 WINPCAP_VERSION=2.3
27
28 #
29 # Current versions of GTK+ 1.3 require GLib 2.0.  Earlier versions of
30 # GTK+ 1.3 are buggy; we don't recommend using them, and we don't
31 # support them.  Upgrade to the current version.
32 #
33 GLIB_VERSION=2.0
34 GLIB_DIR=C:\ethereal-win32-libs\glib
35
36 #
37 # This presumes that GTK+ 1.3 packages put header files and libraries
38 # directly in a "gtk+" directory, while GTK+ 2.x developer's packages
39 # put header files in an "include\gtk-{version}" directory and libraries
40 # in a "lib\gtk-{version}" directory.
41 #
42 # If you're building with GTK+ 1.3, set GTK_VERSION to 1.3 and set
43 # GTK_DIR to the pathname of the "gtk+" directory; if you're building
44 # with GTK+ 2.x, set GTK_VERSION to 2.0 and set GTK_DIR to the pathname
45 # of the directory in which the "include" and "lib" directories reside.
46 #
47 GTK_VERSION=1.3
48 GTK_DIR=C:\ethereal-win32-libs\gtk+
49
50 #
51 # If you have Zlib, set this to the pathname of the directory in
52 # which the Zlib headers and .lib file are stored.
53 #
54 # If you don't have Zlib, comment this line out, so that Zlib isn't
55 # defined.
56 #
57 ZLIB_DIR=C:\ethereal-win32-libs\zlib121-dll
58
59 #
60 # Set PCAP_DIR to the pathname of the directory in which the WinPcap
61 # developer's pack resides
62 #
63 PCAP_DIR=C:\ethereal-win32-libs\WPdpack
64
65 #
66 # Set NET_SNMP_DIR to the pathname of the directory in which the
67 # Net-SNMP include files and library resides.
68 #
69 NET_SNMP_DIR=C:\ethereal-win32-libs\net-snmp-5.1
70
71 #
72 # If you have GNU ADNS, set this to the pathname of the directory in
73 # which the GNU ADNS .lib file is stored.
74 #
75 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
76 # isn't defined.
77 #
78 ADNS_DIR=C:\ethereal-win32-libs\adns-1.0-win32-01
79
80 #
81 # If you have the PCRE (Perl Compatible Regular Expressions) library,
82 # set this to the pathname of the directory in which the GNUWIN32
83 # pcre-lib package has been extracted.
84 #
85 # If you don't have PCRE, comment this line out, so that PCRE_DIR
86 # isn't defined.
87 #
88 PCRE_DIR=C:\ethereal-win32-libs\pcre-4.4
89
90 #
91 # Set ICONV_DIR to the pathname of the directory in which the
92 # ICONV include files and library resides.
93 #
94 ICONV_DIR=C:\ethereal-win32-libs\libiconv-1.9.1.bin.woe32
95
96 #
97 # Set GETTEXT_DIR to the pathname of the directory in which the
98 # GETTEXT include files and library resides.
99 #
100 GETTEXT_DIR=C:\ethereal-win32-libs\gettext-runtime-0.12.1.bin.woe32
101
102 LOCAL_CFLAGS=-Zi
103 LOCAL_LDFLAGS=/DEBUG
104
105 # Set PDB_FILE according to your VC++ version 
106 PDB_FILE=vc*.pdb
107
108 # Set path if you need to find some binary
109 PATH=c:\cygwin\rootdir\bin;c:\python22;$(PATH)
110
111 # Set path to some required DLLs
112 PATH=.\wiretap;$(ZLIB_DIR);$(ICONV_DIR)\bin;$(PCRE_DIR)\bin;$(PATH)
113
114 SH=bash
115 PERL=perl
116 POD2MAN=$(SH) pod2man
117 POD2HTML=$(SH) pod2html
118 PYTHON="C:/python22/python.exe"
119 LEX=flex
120 YACC=bison
121
122 # Set YACC_OPTS if cygnus bison can't find template file.
123 #YACC_OPTS=-S t:\w32-ix86\cygnus\cygwin-b20\share\bison.simple 
124
125 # To build the installer
126 MAKENSIS="C:/program files/nsis/makensis.exe"
127
128 # Choose modern style user interface for the installer.
129 # When using this, make sure you have a supported NSIS
130 # version installed. See "packaging\nsis\ethereal.nsi" for details.
131 #
132 # If you don't want the modern UI (or don't have a recent NSIS version),
133 # comment this line out, so that MAKENSIS_MODERN_UI isn't defined.
134 #
135 #MAKENSIS_MODERN_UI=USE
136
137 #
138 # You should not have to change anything below this comment.
139 # If you do, it's a deficiency in the Makefile.nmake files;
140 # either tell ethereal-dev@ethereal.com about it, including
141 # details of why you had to change it, or fix config.nmake
142 # and any Makefile.nmake files that need to be changed, and
143 # send us the patches, along with details of why the change
144 # was necessary.
145 #
146 GLIB_CFLAGS=/I$(GLIB_DIR)\include\glib-$(GLIB_VERSION) \
147         /I$(GLIB_DIR)\lib\glib-$(GLIB_VERSION)\include
148 GCC_GLIB_CFLAGS=-I$(GLIB_DIR)\include\glib-$(GLIB_VERSION) \
149         -I$(GLIB_DIR)\lib\glib-$(GLIB_VERSION)\include
150 GLIB_LIBS=$(GLIB_DIR)\lib\glib-$(GLIB_VERSION).lib \
151         $(GLIB_DIR)\lib\gmodule-$(GLIB_VERSION).lib \
152         $(GLIB_DIR)\lib\gobject-$(GLIB_VERSION).lib
153
154 !IF "$(GTK_VERSION)" == "1.3"
155 # GTK+ 1.3
156 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include /I$(GTK_DIR)\include\gdk \
157         /I$(GTK_DIR)\lib\gtk+\include
158 GTK_LIBS=$(GTK_DIR)\lib\gtk.lib \
159         $(GTK_DIR)\lib\gdk.lib \
160         $(GLIB_LIBS)
161 !ELSE
162 # GTK+ 2.x
163 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-$(GTK_VERSION) \
164         /I$(GTK_DIR)\lib\gtk-$(GTK_VERSION)\include \
165         /I$(GTK_DIR)\include\atk-1.0 \
166         /I$(GTK_DIR)\include\pango-1.0
167 GTK_LIBS=$(GTK_DIR)\lib\gtk-win32-$(GTK_VERSION).lib \
168         $(GTK_DIR)\lib\gdk-win32-$(GTK_VERSION).lib \
169         $(GTK_DIR)\lib\gdk_pixbuf-$(GTK_VERSION).lib \
170         $(GTK_DIR)\lib\pango-1.0.lib \
171         $(GLIB_LIBS)
172 !ENDIF
173
174 !IFDEF WINPCAP_VERSION
175 # Nmake uses carets to escape special characters
176 WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
177 !IF "$(WINPCAP_VERSION)" == "3.0" || "$(WINPCAP_VERSION)" == "3.1"
178 PCAP_FINDALLDEVS_CONFIG=^#define HAVE_PCAP_FINDALLDEVS 1
179 WPCAP_CONSTIFIED_CONFIG=^#define WPCAP_CONSTIFIED 1
180 !ELSE
181 PCAP_FINDALLDEVS_CONFIG=
182 WPCAP_CONSTIFIED=
183 !ENDIF
184 !ELSE
185 WINPCAP_CONFIG=
186 PCAP_FINDALLDEVS_CONFIG=
187 WPCAP_CONSTIFIED=
188 !ENDIF
189
190 !IFDEF ZLIB_DIR
191 ZLIB_CFLAGS=/I$(ZLIB_DIR)\include
192 ZLIB_LIBS=$(ZLIB_DIR)\lib\zdll.lib
193 # Nmake uses carets to escape special characters
194 ZLIB_CONFIG=^#define HAVE_LIBZ 1
195 !else
196 ZLIB_CFLAGS=
197 ZLIB_LIBS=
198 ZLIB_CONFIG=
199 !ENDIF
200
201 !IFDEF ADNS_DIR
202 ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32
203 ADNS_LIBS=$(ADNS_DIR)\adns_win32\lib\adns_dll.lib
204 # Nmake uses carets to escape special characters
205 ADNS_CONFIG=^#define HAVE_GNU_ADNS 1
206 !else
207 ADNS_CFLAGS=
208 ADNS_LIBS=
209 ADNS_CONFIG=
210 !ENDIF
211
212 !IFDEF PCRE_DIR
213 PCRE_CFLAGS=/I$(PCRE_DIR)\include
214 PCRE_LIBS=$(PCRE_DIR)\lib\pcre.lib
215 # Nmake uses carets to escape special characters
216 PCRE_CONFIG=^#define HAVE_LIBPCRE 1
217 !else
218 PCRE_CFLAGS=
219 PCRE_LIBS=
220 PCRE_CONFIG=
221 !ENDIF
222