From Mark C. Brown: fix a typo.
[obnox/wireshark/wip.git] / config.nmake
1 # $Id$
2
3 # Some more informations about the settings in this file, can be found 
4 # in the file README.win32.
5
6 # The current Ethereal version
7 VERSION=0.10.7
8
9 #
10 # The RC_VERSION should be comma-separated, not dot-separated, 
11 # as per Graham Bloice's message in
12 #
13 #       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
14 #
15 # "The RC_VERSION variable in config.nmake should be comma separated. 
16 # This allows the resources to be built correctly and the version
17 # number to be correctly displayed in the explorer properties dialog
18 # for the executables, and XP's tooltip, rather than 0.0.0.0."
19 #
20 RC_VERSION=0,10,7
21
22 # The version of the wiretap library
23 WTAP_VERSION=0.1
24 RC_WTAP_VERSION=0,1
25
26 #
27 # If you're building with WinPcap 2.3, set WINPCAP_VERSION to 2.3; if
28 # you're building with WinPcap 3.0, set it to 3.0; if you're building
29 # with WinPcap 3.1 alpha, set it to 3.1.
30 #
31 # If you're not building with WinPcap at all, don't set it (comment
32 # out or remove the line that sets it).
33 #
34 WINPCAP_VERSION=3.0
35
36
37 # Base directory, where your libraries reside, which needs to be 
38 # compiling the sources. This is only inside this file.
39 #
40 ETHEREAL_LIBS=C:\ethereal-win32-libs
41
42 #
43 # Current versions of GTK+ 1.3 require GLib 2.0.  Earlier versions of
44 # GTK+ 1.3 are buggy; we don't recommend using them, and we don't
45 # support them.  Upgrade to the current version.
46 #
47 GLIB_VERSION=2.0
48 GLIB_DIR=$(ETHEREAL_LIBS)\glib
49
50 #
51 # This presumes that GTK+ 1.3 packages put header files and libraries
52 # directly in a "gtk+" directory, while GTK+ 2.x developer's packages
53 # put header files in an "include\gtk-{version}" directory and libraries
54 # in a "lib\gtk-{version}" directory.
55 #
56 # It's possible, to build both GTK version 1 and 2 at the same time,
57 # or only one of the versions. GTK version 1 is currently recommended.
58
59 # If you want building with GTK+ 1.3, set GTK1_DIR to the pathname of the 
60 # "gtk+" directory; if you want building with GTK+ 2.x, set GTK2_DIR to 
61 # the pathname of the directory in which the "include" and "lib" directories 
62 # reside.
63 #
64 GTK1_DIR=$(ETHEREAL_LIBS)\gtk+
65 GTK2_DIR=$(ETHEREAL_LIBS)\gtk2
66
67 # Declare the version of your gtk2 and pango. (MAJOR + MINOR Version number
68 # but without MICRO version number) 
69 # These macros are used by the nsis installer script and by the setup target.
70 #
71 #GTK2_INST_VERSION=2.2
72 #PANGO_INST_VERSION=1.2
73 GTK2_INST_VERSION=2.4
74 PANGO_INST_VERSION=1.4
75
76 #
77 # If you have GTK-Wimp, set this to the pathname of the directory in
78 # which the files are stored.
79 #
80 # If you don't have GTK-Wimp, comment this line out, so that GTK-Wimp isn't
81 # defined.
82 #
83 GTK_WIMP_DIR=$(ETHEREAL_LIBS)\gtk-wimp
84
85 #
86 # If you have Zlib, set this to the pathname of the directory in
87 # which the Zlib headers and .lib file are stored.
88 #
89 # If you don't have Zlib, comment this line out, so that Zlib isn't
90 # defined.
91 #
92 ZLIB_DIR=$(ETHEREAL_LIBS)\zlib121-dll
93
94 #
95 # Set PCAP_DIR to the pathname of the directory in which the WinPcap
96 # developer's pack resides
97 #
98 PCAP_DIR=$(ETHEREAL_LIBS)\WPdpack
99
100 #
101 # Set NET_SNMP_DIR to the pathname of the directory in which the
102 # Net-SNMP include files and library resides.
103 #
104 NET_SNMP_DIR=$(ETHEREAL_LIBS)\net-snmp-5.1
105
106 #
107 # If you have GNU ADNS, set this to the pathname of the directory in
108 # which the GNU ADNS .lib file is stored.
109 #
110 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
111 # isn't defined.
112 #
113 ADNS_DIR=$(ETHEREAL_LIBS)\adns-1.0-win32-03
114
115 #
116 # If you have the PCRE (Perl Compatible Regular Expressions) library,
117 # set this to the pathname of the directory in which the GNUWIN32
118 # pcre-lib package has been extracted.
119 #
120 # If you don't have PCRE, comment this line out, so that PCRE_DIR
121 # isn't defined.
122 #
123 PCRE_DIR=$(ETHEREAL_LIBS)\pcre-4.4
124
125 #
126 # Set ICONV_DIR to the pathname of the directory in which the
127 # ICONV include files and library resides.
128 #
129 ICONV_DIR=$(ETHEREAL_LIBS)\libiconv-1.9.1.bin.woe32
130
131 #
132 # Set GETTEXT_DIR to the pathname of the directory in which the
133 # GETTEXT include files and library resides.
134 #
135 GETTEXT_DIR=$(ETHEREAL_LIBS)\gettext-runtime-0.13.1
136
137 # Compiler flags
138 # /W3  warning level 3 (0 less - 4 most, 1 default)
139 # /Zi  create .pdb file for debugging
140 LOCAL_CFLAGS=/Zi /W3
141
142 # Linker flags
143 # /DEBUG generate debug info
144 LOCAL_LDFLAGS=/DEBUG
145
146 # Set PDB_FILE according to your VC++ version 
147 PDB_FILE=vc*.pdb
148
149 # add cygwin binaries to the path
150 PATH=c:\cygwin\bin;$(PATH)
151
152 # add some required DLLs to the path 
153 PATH=$(GLIB_DIR)\bin;$(GETTEXT_DIR)\bin;$(ICONV_DIR)\bin;$(PATH)
154
155
156 # Set the following commands to find the tools.
157 # The easiest way is to use the corresponding packages from cygwin.
158
159 # command for a shell (typically cygwin's bash package)
160 SH=bash
161
162 # command for perl (typically cygwin's perl package)
163 PERL=perl
164
165 # command for pod2man and pod2html (part of the perl package)
166 POD2MAN=$(SH) pod2man
167 POD2HTML=$(SH) pod2html
168
169 # command for python (native windows version)
170 #PYTHON="C:/python23/python.exe"
171 # add native python to the path (not needed if cygwin's python is used)
172 #PATH=c:\python23;$(PATH)
173
174 # command for python (typically cygwin's python package)
175 PYTHON=env python
176
177 # command for lex/flexx (typically cygwin's flex package)
178 LEX=flex
179
180 # command for yacc/bison (typically cygwin's bison package)
181 YACC=bison
182
183 # To build the installer
184 MAKENSIS="C:/program files/nsis/makensis.exe"
185
186 # Choose modern style user interface for the installer.
187 # When using this, make sure you have a supported NSIS
188 # version installed. See "packaging\nsis\ethereal.nsi" for details.
189 #
190 # If you don't want the modern UI (or don't have a recent NSIS version),
191 # comment this line out, so that MAKENSIS_MODERN_UI isn't defined.
192 #
193 MAKENSIS_MODERN_UI=USE
194
195 # To build the developers documentation with doxygen and dot.
196 # Currently experimental only.
197 # You will have to download and install:
198 #
199 # Doxygen from: www.doxygen.org
200 # Graphviz from: http://www.research.att.com/sw/tools/graphviz/
201 #
202 # If you don't want the developers documentation (or don't have the tools),
203 # comment this line out, so that DOXYGEN isn't defined.
204 #
205 #DOXYGEN="C:/program files/doxygen/bin/doxygen.exe"
206
207 # To build compressed html help format .chm from doxygen output.
208 # Currently experimental only.
209 # You will have to download and install the html help compiler from:
210 #
211 # http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html
212 # /hwMicrosoftHTMLHelpDownloads.asp 
213 #
214 # Then point HHC to the html help compiler exe.
215 #
216 # The .chm file(s) are not generated by default. You will have to generate the 
217 # file(s) by calling the Makefile.nmake's target doxygen.chm in the submodules (epan/gk/...).
218 #
219 #HHC="C:/Program Files/HTML Help Workshop/hhc.exe"
220
221 # If you don't want to build libethereal.dll, you should comment out the
222 # following line
223 ENABLE_LIBETHEREAL=USE
224
225 !IFDEF ENABLE_LIBETHEREAL
226 # Uncomment next line to link plugins with the import library of libethereal.dll 
227 #LINK_PLUGINS_WITH_LIBETHEREAL=USE
228 !ENDIF
229
230 #
231 # You should not have to change anything below this comment.
232 # If you do, it's a deficiency in the Makefile.nmake files;
233 # either tell ethereal-dev@ethereal.com about it, including
234 # details of why you had to change it, or fix config.nmake
235 # and any Makefile.nmake files that need to be changed, and
236 # send us the patches, along with details of why the change
237 # was necessary.
238 #
239 GLIB_CFLAGS=/I$(GLIB_DIR)\include\glib-$(GLIB_VERSION) \
240         /I$(GLIB_DIR)\lib\glib-$(GLIB_VERSION)\include
241 GCC_GLIB_CFLAGS=-I$(GLIB_DIR)\include\glib-$(GLIB_VERSION) \
242         -I$(GLIB_DIR)\lib\glib-$(GLIB_VERSION)\include
243 GLIB_LIBS=$(GLIB_DIR)\lib\glib-$(GLIB_VERSION).lib \
244         $(GLIB_DIR)\lib\gmodule-$(GLIB_VERSION).lib \
245         $(GLIB_DIR)\lib\gobject-$(GLIB_VERSION).lib
246
247 # GTK+ 1.3
248 GTK1_CFLAGS=$(GLIB_CFLAGS) /I$(GTK1_DIR)\include /I$(GTK1_DIR)\include\gdk \
249         /I$(GTK1_DIR)\lib\gtk+\include
250 GTK1_LIBS=$(GTK1_DIR)\lib\gtk.lib \
251         $(GTK1_DIR)\lib\gdk.lib \
252         $(GLIB_LIBS)
253
254 # GTK+ 2.x
255 GTK2_CFLAGS=$(GLIB_CFLAGS) /I$(GTK2_DIR)\include\gtk-2.0 \
256         /I$(GTK2_DIR)\lib\gtk-2.0\include \
257         /I$(GTK2_DIR)\include\atk-1.0 \
258         /I$(GTK2_DIR)\include\pango-1.0
259 GTK2_LIBS=$(GTK2_DIR)\lib\gtk-win32-2.0.lib \
260         $(GTK2_DIR)\lib\gdk-win32-2.0.lib \
261         $(GTK2_DIR)\lib\gdk_pixbuf-2.0.lib \
262         $(GTK2_DIR)\lib\pango-1.0.lib \
263         $(GLIB_LIBS)
264
265 !IFDEF WINPCAP_VERSION
266 # Nmake uses carets to escape special characters
267 WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
268 !IF "$(WINPCAP_VERSION)" == "3.0" || "$(WINPCAP_VERSION)" == "3.1"
269 PCAP_FINDALLDEVS_CONFIG=^#define HAVE_PCAP_FINDALLDEVS 1
270 PCAP_DATALINK_NAME_TO_VAL_CONFIG=^#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1
271 PCAP_DATALINK_VAL_TO_NAME_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_NAME 1
272 WPCAP_CONSTIFIED_CONFIG=^#define WPCAP_CONSTIFIED 1
273 !ELSE
274 PCAP_FINDALLDEVS_CONFIG=
275 PCAP_DATALINK_VAL_TO_NAME_CONFIG=
276 WPCAP_CONSTIFIED=
277 !ENDIF
278 !ELSE
279 WINPCAP_CONFIG=
280 PCAP_FINDALLDEVS_CONFIG=
281 PCAP_DATALINK_NAME_TO_VAL_CONFIG=
282 PCAP_DATALINK_VAL_TO_NAME_CONFIG=
283 WPCAP_CONSTIFIED=
284 !ENDIF
285
286 !IFDEF ZLIB_DIR
287 PATH=$(ZLIB_DIR);$(PATH)
288 ZLIB_CFLAGS=/I$(ZLIB_DIR)\include
289 ZLIB_LIBS=$(ZLIB_DIR)\lib\zdll.lib
290 # Nmake uses carets to escape special characters
291 ZLIB_CONFIG=^#define HAVE_LIBZ 1
292 !else
293 ZLIB_CFLAGS=
294 ZLIB_LIBS=
295 ZLIB_CONFIG=
296 !ENDIF
297
298 !IFDEF ADNS_DIR
299 PATH=$(ADNS_DIR)\adns_win32\lib;$(PATH)
300 ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32
301 ADNS_LIBS=$(ADNS_DIR)\adns_win32\lib\adns_dll.lib
302 # Nmake uses carets to escape special characters
303 ADNS_CONFIG=^#define HAVE_GNU_ADNS 1
304 !else
305 ADNS_CFLAGS=
306 ADNS_LIBS=
307 ADNS_CONFIG=
308 !ENDIF
309
310 !IFDEF PCRE_DIR
311 PATH=$(PCRE_DIR)\bin;$(PATH)
312 PCRE_CFLAGS=/I$(PCRE_DIR)\include
313 PCRE_LIBS=$(PCRE_DIR)\lib\pcre.lib
314 # Nmake uses carets to escape special characters
315 PCRE_CONFIG=^#define HAVE_LIBPCRE 1
316 !else
317 PCRE_CFLAGS=
318 PCRE_LIBS=
319 PCRE_CONFIG=
320 !ENDIF
321
322 !IFDEF ENABLE_LIBETHEREAL
323 LIBETHEREAL_CONFIG=^#define HAVE_LIBETHEREALDLL 1
324 !ELSE
325 LIBETHEREAL_CONFIG=
326 !ENDIF