Remove no longer relevant comment about incrementing tvb usage count to prevent freei...
[obnox/wireshark/wip.git] / config.nmake
1 # $Id$
2
3 # Some more information about the settings in this file can be found in
4 # the file README.windows and the Developer's Guide (available online).
5
6 ##### Target platform #####
7 # Only "win32" and "win64" are valid (for now).
8 # This can be defined in the system environment.
9 !IFNDEF WIRESHARK_TARGET_PLATFORM
10 WIRESHARK_TARGET_PLATFORM=win32
11 !ENDIF
12
13 ##### Versions #####
14
15 # The SVN revision of our build. Updated by make-version.pl
16 SVN_REVISION=0
17
18 # The current Wireshark version. Recommended: Leave unchanged.
19 # Updated by make-version.pl
20 VERSION_MAJOR=1
21 VERSION_MINOR=7
22 VERSION_MICRO=1
23 VERSION_BUILD=$(SVN_REVISION)
24
25 # Local build information. Recommended: Unique string for your
26 # environment, e.g. "-JackStackBarbecue". Updated by make-version.pl
27
28 VERSION_EXTRA=
29
30 # The version of the wiretap library. Recommended: Leave unchanged.
31 WTAP_VERSION_MAJOR=$(VERSION_MAJOR)
32 WTAP_VERSION_MINOR=$(VERSION_MINOR)
33 WTAP_VERSION_MICRO=0
34
35 ##### Directories #####
36
37 #
38 # Base directory, where your libraries reside, which are needed to
39 # compile the sources. This setting is used only inside this file.
40 # This can be defined in the system environment.
41 #
42 !IFNDEF WIRESHARK_LIB_DIR
43 WIRESHARK_LIB_DIR=C:\wireshark-$(WIRESHARK_TARGET_PLATFORM)-libs
44 !ENDIF
45
46 #
47 # Base directory, where your programs reside.
48 # This setting is used only inside this file.
49 #
50 PROGRAM_FILES=$(PROGRAMFILES)
51
52 #
53 # Location of the "tools" directory. This affects HTML2TXT below and should
54 # be overridden by makefiles in any subdirectories that use HTML2TXT.
55 !IFNDEF TOOLS_DIR
56 TOOLS_DIR=tools
57 !ENDIF
58
59 #
60 # Machine type for the compiler and linker
61 # TARGET_MACHINE (Used for link /MACHINE) should be one of "X86" or "X64"
62 # (sorry ARM, Alpha, MIPS, and Itanium fans).
63 # CPU (Used by win32.mak) should be one of "i386" or "AMD64".
64 # PROCESSOR_ARCHITECTURE (Used for redistributable packages and
65 # manifests) should be one of "x86" or "amd64".
66 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
67 TARGET_MACHINE=x86
68 CPU=i386
69 PROCESSOR_ARCHITECTURE=x86
70 !else if "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
71 TARGET_MACHINE=x64
72 CPU=AMD64
73 PROCESSOR_ARCHITECTURE=amd64
74 !else
75 !error Your mysterious moon-man architecture "$(WIRESHARK_TARGET_PLATFORM)" frightens and confuses us.
76 !endif
77
78
79 ##### Microsoft Visual C / Studio Variant #####
80 # For the different Studios, see: http://en.wikipedia.org/wiki/Microsoft_Visual_Studio
81 # only one of the following MSVC_VARIANT settings should be used
82 # BTW: The "Microsoft Visual C++ Toolkit 2003" DOESN'T WORK for WS!
83
84 # "Microsoft Visual Studio 6.0"
85 # Visual C++ 6.0, _MSC_VER 1200, msvcrt.dll (version 6)
86 #MSVC_VARIANT=MSVC6
87
88 # "Microsoft Visual Studio .NET (2002)"
89 # Visual C++ 7.0, _MSC_VER 1300, msvcr70.dll
90 #MSVC_VARIANT=MSVC2002
91
92 # "Microsoft .Net Framework SDK Version 1.0"
93 # needs additional Platform SDK installation
94 # Visual C++ 7.0, _MSC_VER 1300, msvcr70.dll
95 #MSVC_VARIANT=DOTNET10
96
97 # "Microsoft Visual Studio .NET 2003"
98 # Visual C++ 7.1, _MSC_VER 1310, msvcr71.dll
99 #MSVC_VARIANT=MSVC2003
100
101 # "Microsoft .Net Framework SDK Version 1.1"
102 # needs additional Platform SDK installation
103 # Visual C++ 7.1, _MSC_VER 1310, msvcr71.dll
104 #MSVC_VARIANT=DOTNET11
105
106 # "Microsoft Visual Studio 2005"
107 # Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
108 #MSVC_VARIANT=MSVC2005
109
110 # "Microsoft Visual C++ 2005 Express Edition"
111 # needs additional Platform SDK installation
112 # Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
113 #MSVC_VARIANT=MSVC2005EE
114
115 # "Microsoft .Net Framework 2.0 SDK"
116 # needs additional Platform SDK installation
117 # Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
118 #MSVC_VARIANT=DOTNET20
119
120 # "Microsoft Visual Studio 2008"
121 # Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
122 #MSVC_VARIANT=MSVC2008
123
124 # "Microsoft Visual C++ 2008 Express Edition"
125 # Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
126 #MSVC_VARIANT=MSVC2008EE
127
128 # "Microsoft Visual Studio 2010"
129 # Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
130 #MSVC_VARIANT=MSVC2010
131
132 # "Microsoft Visual C++ 2010 Express Edition"
133 # Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
134 #MSVC_VARIANT=MSVC2010EE
135
136 # The default if we haven't set a system environment variable or
137 # uncommented an entry above.
138 !IFNDEF MSVC_VARIANT
139 MSVC_VARIANT=MSVC2008
140 !ENDIF
141
142 #
143 # Optional: To compile some time critical code from assembler instead of C
144 #
145 # If you have the NASM compiler, set this to the NASM executable.
146 # http://nasm.sourceforge.net/
147 #
148 # If you don't have NASM, comment this line out, so that NASM
149 # isn't defined.
150 #
151 NASM=$(WIRESHARK_LIB_DIR)\nasm-2.09.08\nasm.exe
152
153 #
154 # Optional: the Python library enables scripting support.
155 #
156 # If you don't have the Python library, comment this line out, so that
157 # PYTHON_EMBED isn't defined.
158 #
159 # NOTE: The Python library must have been compiled with the same
160 # compiler (MSVC_VARIANT) as Wireshark. Known python.org Python
161 # CRT versions:
162 #
163 # Python version    CRT (32-bit)    CRT (64-bit)
164 # 2.4.4             7.1             ?
165 # 2.6.1             9.0             ?
166 # 2.6.2             ?               9.0
167 # 2.7.1             9.0             9.0
168 # 3.2.2             9.0             9.0
169 #
170 # If you versions of Python and Visual C++ use different CRTs
171 # comment this out.
172 #
173 # XXX The DLL path in epan/wspython/wspy_libws.py likely needs to
174 # be fixed before this is enabled by default.
175 #PYTHON_EMBED=1
176
177 #
178 # Optional: the Python interpreter is used as part of the buildsystem
179 #
180 # This will override the automatic detection below.
181 #PYTHON_VER=27
182 #PYTHON_DIR=C:\Python$(PYTHON_VER)
183
184 #
185 # If you don't have the native Python package installed, you can use
186 # the Cygwin version (not recommended)
187 #
188 #PYTHON=env python
189
190 # Santity check: native vs Cygwin Python options
191 !IF DEFINED(PYTHON) && DEFINED(PYTHON_DIR)
192 !ERROR PYTHON and PYTHON_DIR cannot be specified at the same time
193 !ENDIF
194
195 # Find native Python automatically if PYTHON(_DIR) wasn't defined
196 !IF !DEFINED(PYTHON) && !DEFINED(PYTHON_DIR)
197 !IF EXIST(c:\Python27\python.exe)
198 PYTHON_VER=27
199 !ELSE IF EXIST(c:\Python26\python.exe)
200 PYTHON_VER=26
201 !ELSE IF EXIST(c:\Python25\python.exe)
202 PYTHON_VER=25
203 !ELSE IF EXIST(c:\Python24\python.exe)
204 PYTHON_VER=24
205 !ENDIF
206
207 !IF DEFINED(PYTHON_VER)
208 PYTHON_DIR=C:\Python$(PYTHON_VER)
209 !ENDIF
210 !ENDIF
211
212 !IF DEFINED(PYTHON_DIR)
213 PYTHON="$(PYTHON_DIR)\python.exe"
214 PATH=$(PYTHON_DIR);$(PATH)
215 !ENDIF
216
217 #### Save files as pcap-ng by default. Comment out to use pcap instead. ####
218 PCAP_NG_DEFAULT=^#define PCAP_NG_DEFAULT 1
219
220 ##### To Use packet editor uncomment this line ####
221 ### Warning Experimental - work in progress
222 #WANT_PACKET_EDITOR=^#define WANT_PACKET_EDITOR 1
223
224 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
225 ##### Win32 Libraries #####
226 #
227 # Mandatory: GLib settings
228 #
229 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
230 #
231 GLIB_VERSION=2.0
232
233 #
234 # Mandatory: GLib, GTK & related library settings
235 #
236 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
237 #
238 # If you want building with GTK+, set GTK_DIR to the pathname of the
239 # directory in which the "include" and "lib" directories reside.
240 #
241 GTK_DIR=$(WIRESHARK_LIB_DIR)\gtk2
242 # These macros are used by the nsis installer script and by the install target.
243 PNG_DLL=libpng14-14.dll
244 FREETYPE_DLL=freetype6.dll
245 FONTCONFIG_DLL=libfontconfig-1.dll
246 EXPAT_DLL=libexpat-1.dll
247 INTL_DLL=intl.dll
248 # This macro is used by the setup target.
249 #GTK_PKG=2.16.6-20100912
250 GTK_PKG=2.22.1-20101227
251
252 #
253 # Mandatory: Version numbers of GTK and pango.
254 #
255 # (MAJOR + MINOR Version number but without MICRO version number)
256 # These macros are used by the nsis installer script and by the setup target.
257 #
258 #GTK_INST_VERSION=2.16
259 GTK_INST_VERSION=2.22
260
261 #
262 # Optional: WinPcap developer's pack to capture network traffic.
263 #
264 # If you have the WinPcap developer's pack (at least version 3.0),
265 # set this to the directory in which the WinPcap developer's pack resides.
266 #
267 # If you don't have the WPdpack, comment this line out, so that
268 # PCAP_DIR isn't defined.
269 #
270 PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
271 # This macro is used by the nsis installer script, by the u3/portable apps and by the setup target.
272 PCAP_VERSION=4_1_2
273
274 #
275 # Optional: WinPcap remote capture support and new API
276 # (pcap_open(), pcap_findalldevs_ex(), etc.)
277 #
278 PCAP_REMOTE=1
279
280 #
281 # Optional: The ZLib enables unzipping of gzip compressed capture files
282 # "on the fly".
283 #
284 # If you have Zlib, set this to directory in which the Zlib headers
285 # and .lib file are stored.
286 #
287 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
288 # defined.
289 # EXperimental only use zlib 1.2.5 on win32 for now
290 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
291
292 #
293 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
294 # name resolvings.
295 #
296 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
297 # .lib file is stored.
298 #
299 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
300 # isn't defined.
301 #
302 # If C_ARES_DIR is defined below, it will override this setting.
303 #
304 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
305
306 #
307 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
308 # name resolvings.
309 #
310 # If you have c-ares, set this to the directory in which the c-ares
311 # .lib file is stored. Setting this will override ADNS_DIR above. You
312 # can't have both.
313 #
314 # If you're using Visual C++ 6.0, you'll have to use a platform SDK that
315 # defines socklen_t, such as Windows Server 2003 PSDK.
316 #
317 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
318 # isn't defined.
319 #
320 C_ARES_PKG=1.7.1
321
322 #
323 # Optional: the GNUTLS library enables ssl decryption.
324 #
325 # If you have the GNUTLS library, set this to the package version.
326 #
327 # If you don't have GNUTLS, comment this line out, so that GNUTLS_PKG
328 # isn't defined.
329 #
330 # Platform SDK conflicts with openssl.h header
331 GNUTLS_PKG=2.10.3-1.11
332
333 #
334 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
335 #
336 # If you have the kerberos for windows (mit) library, set this to the
337 # directory where the kfw package is stored.
338 #
339 # If you don't have KFW, comment this line out, so that KFW_DIR
340 # isn't defined.
341 #
342 KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3-2-2-i386-ws-vc6
343
344 #
345 # Optional: the Nettle library enables ??? decryption.
346 #
347 # If you have the Nettle encryption library, set this to the
348 # directory in which the nettle package is stored.
349 #
350 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
351 # isn't defined.
352 #
353 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
354
355 #
356 # Optional: the LUA library enables scripting support.
357 #
358 # If you have the LUA library, set this to the directory in which
359 # the LUA package is stored.
360 #
361 # If you don't have LUA, comment this line out, so that LUA_DIR
362 # isn't defined.
363 #
364 LUA_DIST=5_1_4_Win32_dll6
365 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
366
367 #
368 # Optional: the PORTAUDIO library enables audio output for RTP streams.
369 #
370 # If you have the PORTAUDIO library (used for rtp_player), set this to
371 # the directory in which the PORTAUDIO library is stored.
372 #
373 # If you don't have PORTAUDIO, comment this line out, so that
374 # PORTAUDIO_DIR isn't defined.
375 #
376 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
377 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
378
379 #
380 # Version number of PortAudio
381 #
382 #PORTAUDIO_VERSION=18
383 PORTAUDIO_VERSION=19
384
385 #
386 # Optional: AirPcap developer's pack to capture wireless network traffic
387 # incl. 802.11 management frames.
388 #
389 # If you have the AirPcap developer's pack, set this to the directory
390 # in which the AirPcap developer's pack resides.
391 #
392 # If you don't have the AirPcap developer's pack, comment this line out,
393 # so that AIRPCAP_DIR isn't defined.
394 #
395 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
396
397 #
398 # Optional: LIBSMI, System Management Interface
399 #
400 # Used for oid-name resolution for SNMP and other protocols
401 #
402 SMI_PKG=svn-40773
403
404 #
405 # Optional: GeoIP, IP address database lookups
406 #
407 # Used to map IP addresses to MaxMind GeoIP database entries
408 #
409 # GeoIP requires IPv6 definitions that don't ship with Visual C++ 6.0.
410 # However, the Microsoft Platform SDK for Windows Server 2003 R2 provides
411 # these definitions. The SDK's SetEnv.bat script defines INETSDK.
412 !IF "$(MSVC_VARIANT)" != "MSVC6" || DEFINED(INETSDK)
413 GEOIP_DIR=$(WIRESHARK_LIB_DIR)\GeoIP-1.4.6-win32ws\libGeoIP
414 !ENDIF
415
416 !else
417 ##### Win64 Libraries #####
418 #
419 # Mandatory: GLib settings
420 #
421 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
422 #
423 GLIB_VERSION=2.0
424
425 #
426 # Mandatory: GLib, GTK & related library settings
427 #
428 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
429 #
430 # If you want building with GTK+, set GTK_DIR to the pathname of the
431 # directory in which the "include" and "lib" directories reside.
432 #
433 GTK_DIR=$(WIRESHARK_LIB_DIR)\gtk2
434 # These macros are used by the nsis installer script and by the install target.
435 PNG_DLL=libpng14-14.dll
436 #TIFF_DLL=libtiff-3.dll
437 #JPEG_DLL=libjpeg-7.dll
438 FREETYPE_DLL=libfreetype-6.dll
439 FONTCONFIG_DLL=libfontconfig-1.dll
440 EXPAT_DLL=libexpat-1.dll
441 INTL_DLL=libintl-8.dll
442
443 # These macros are used by the setup target.
444 #GTK_PKG=2.16.6-20100912
445 GTK_PKG=2.22.1-20101229
446
447 #
448 # Mandatory: Version numbers of GTK and pango.
449 #
450 # (MAJOR + MINOR Version number but without MICRO version number)
451 # These macros are used by the nsis installer script and by the setup target.
452 #
453 #GTK_INST_VERSION=2.16
454 GTK_INST_VERSION=2.22
455
456 #
457 # Optional: WinPcap developer's pack to capture network traffic.
458 #
459 # If you have the WinPcap developer's pack (at least version 3.0),
460 # set this to the directory in which the WinPcap developer's pack resides.
461 #
462 # If you don't have the WPdpack, comment this line out, so that
463 # PCAP_DIR isn't defined.
464 #
465 PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
466 # This macro is used by the nsis installer script, by the u3/portable apps and by the setup target.
467 PCAP_VERSION=4_1_2
468
469 #
470 # Optional: WinPcap remote capture support and new API
471 # (pcap_open(), pcap_findalldevs_ex(), etc.)
472 #
473 PCAP_REMOTE=1
474
475 #
476 # Optional: The ZLib enables unzipping of gzip compressed capture files
477 # "on the fly".
478 #
479 # If you have Zlib, set this to directory in which the Zlib headers
480 # and .lib file are stored.
481 #
482 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
483 # defined.
484 #
485 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
486
487 #
488 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
489 # name resolvings.
490 #
491 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
492 # .lib file is stored.
493 #
494 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
495 # isn't defined.
496 #
497 # If C_ARES_DIR is defined below, it will override this setting.
498 #
499 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
500
501 #
502 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
503 # name resolvings.
504 #
505 # If you have c-ares, set this to the directory in which the c-ares
506 # .lib file is stored. Setting this will override ADNS_DIR above. You
507 # can't have both.
508 #
509 # If you're using Visual C++ 6.0, you'll have to use a platform SDK that
510 # defines socklen_t, such as Windows Server 2003 PSDK.
511 #
512 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
513 # isn't defined.
514 #
515 C_ARES_PKG=1.7.1
516
517 #
518 # Optional: the GNUTLS library enables ssl decryption.
519 #
520 # If you have the GNUTLS library, set this to the package version.
521 #
522 # If you don't have GNUTLS, comment this line out, so that GNUTLS_PKG
523 # isn't defined.
524 #
525 # Platform SDK conflicts with openssl.h header
526 GNUTLS_PKG=2.10.3-1.7
527
528 #
529 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
530 #
531 # If you have the kerberos for windows (mit) library, set this to the
532 # directory where the kfw package is stored.
533 #
534 # If you don't have KFW, comment this line out, so that KFW_DIR
535 # isn't defined.
536 #
537 #KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3.2.2-ws1
538
539 #
540 # Optional: the Nettle library enables ??? decryption.
541 #
542 # If you have the Nettle encryption library, set this to the
543 # directory in which the nettle package is stored.
544 #
545 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
546 # isn't defined.
547 #
548 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
549
550 #
551 # Optional: the LUA library enables scripting support.
552 #
553 # If you have the LUA library, set this to the directory in which
554 # the LUA package is stored.
555 #
556 # If you don't have LUA, comment this line out, so that LUA_DIR
557 # isn't defined.
558 #
559 LUA_DIST=5_1_4_Win64_dll9
560 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
561
562 #
563 # Optional: the PORTAUDIO library enables audio output for RTP streams.
564 #
565 # If you have the PORTAUDIO library (used for rtp_player), set this to
566 # the directory in which the PORTAUDIO library is stored.
567 #
568 # If you don't have PORTAUDIO, comment this line out, so that
569 # PORTAUDIO_DIR isn't defined.
570 #
571 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
572 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
573
574 #
575 # Version number of PortAudio
576 #
577 #PORTAUDIO_VERSION=18
578 PORTAUDIO_VERSION=19
579
580 #
581 # Optional: AirPcap developer's pack to capture wireless network traffic
582 # incl. 802.11 management frames.
583 #
584 # If you have the AirPcap developer's pack, set this to the directory
585 # in which the AirPcap developer's pack resides.
586 #
587 # If you don't have the AirPcap developer's pack, comment this line out,
588 # so that AIRPCAP_DIR isn't defined.
589 #
590 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
591
592 #
593 # Optional: LIBSMI, System Management Interface
594 #
595 # Used for oid-name resolution for SNMP and other protocols
596 #
597 SMI_PKG=svn-40773
598
599 #
600 # Optional: GeoIP, IP address database lookups
601 #
602 # Used to map IP addresses to MaxMind GeoIP database entries
603 #
604 GEOIP_DIR=$(WIRESHARK_LIB_DIR)\GeoIP-1.4.6-win64ws\libGeoIP
605
606 !endif
607
608 ##### Tools #####
609
610 # Set the following mandatory commands to find the tools.
611 # The easiest way is to use the corresponding packages from cygwin.
612
613 # Set up the path to the cygwin binaries
614 CYGWIN_PATH=c:\cygwin\bin
615
616 # command for a shell (cygwin's bash package recommended)
617 SH_PROG=bash
618
619 # bash versions after 3.1.6 need the 'igncr' shell option to be able to
620 #  process scripts in windows 'native format' (dos crlf format).
621 # The following !IF results in the option being used only if it is available
622 #  since using it on bash version 3.1.6 (or earlier) is not required and
623 #  will cause an error message.
624 !if "$(SH_PROG)"=="bash" && [$(CYGWIN_PATH)\bash -c "set -o igncr" 2>nul: ] == 0
625 SH_FLAGS=-o igncr
626 !endif
627
628 SH=$(SH_PROG) $(SH_FLAGS)
629
630
631 # command for perl (cygwin's perl package recommended)
632 PERL=perl
633
634 # command for pod2man and pod2html
635 # (part of the perl package, usually leave these unchanged)
636 POD2MAN=$(SH) pod2man
637 POD2HTML=$(SH) pod2html
638
639 # command for lex/flexx (cygwin's flex recommended)
640 LEX=flex
641
642 # command for yacc/bison (cygwin's bison recommended)
643 YACC=bison
644
645 # Commands to convert UNIX line endings to DOS/Windows
646 UNIX2DOS=u2d
647 TEXTIFY=$(SH) $(TOOLS_DIR)/textify.sh
648
649 #
650 # Optional: To build the NSIS installer.
651 #
652 # If you have the NSIS package, set this to the NSIS executable.
653 #
654 # If you don't have NSIS, comment this line out, so that MAKENSIS
655 # isn't defined.
656 #
657 MAKENSIS="$(PROGRAM_FILES)\NSIS\makensis.exe"
658
659 #
660 # Optional: To build the NSIS PortableApps installer.
661 #
662 # If you have the NSIS Unicode package, set this to the NSIS Unicode executable.
663 #
664 # If you don't have NSIS Unicode, comment this line out, so that
665 # MAKENSIS_UNICODE isn't defined.
666 #
667 MAKENSIS_UNICODE="$(PROGRAM_FILES)\NSIS\Unicode\makensis.exe"
668
669 #
670 # Optional: To build the developers API documentation with doxygen and dot.
671 # Currently experimental, outdated and incomplete.
672 #
673 # You will have to download and install:
674 # Doxygen from: http://www.doxygen.org
675 # Graphviz from: http://www.research.att.com/sw/tools/graphviz/
676 #
677 # If you have doxygen, set this to the doxygen executable.
678 #
679 # If you don't want the developers documentation (or don't have the tools),
680 # comment this line out, so that DOXYGEN isn't defined.
681 #
682 #DOXYGEN="$(PROGRAM_FILES)/doxygen/bin/doxygen.exe"
683
684 #
685 # Recommended: Use the compressed html help format .chm as the Wireshark integrated help.
686 #
687 # The required htmlhelp.h and htmlhelp.lib should be included in MSVC_VARIANT > MSVC6.
688 #
689 # For MSVC_VARIANT == MSVC6 you will have to download and install the html help workshop from:
690 #
691 # http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html
692 # /hwMicrosoftHTMLHelpDownloads.asp
693 #
694 # Then point HHC_DIR to the html help dir (where hhc.exe resides).
695 #
696 # If you don't want the online help (or don't have the tools),
697 # comment this line out, so that HHC_DIR isn't defined.
698 #
699 HHC_DIR=$(PROGRAM_FILES)/HTML Help Workshop
700
701 #
702 # Optional: To reduce the size of dlls and exes, which is especially useful for USB device distributions (U3, PortableApps)
703 #
704 # If you have the UPX package, set this to the upx.exe executable.
705 #
706 # UPX can be downloaded from:
707 #   http://upx.sourceforge.net/
708 #
709 # If you don't have UPX, or don't want to pack exes and dlls,
710 # comment this line out, so that UPX isn't defined.
711 #
712
713 UPX=$(WIRESHARK_LIB_DIR)\upx303w\upx.exe
714
715 ##### Flags, PATHs and Miscellaneous #####
716
717 # Santity check: Python embedding requires a valid PYTHON_DIR
718 !IF DEFINED(PYTHON_EMBED) && !DEFINED(PYTHON_DIR)
719 !ERROR PYTHON_EMBED requires that PYTHON_DIR is defined
720 !ENDIF
721
722 # "convert" the MSVC variant into the required MSC compiler version
723 !IF "$(MSVC_VARIANT)" == "MSVC6"
724 MSC_VER_REQUIRED=1200
725 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2002" || "$(MSVC_VARIANT)" == "DOTNET10"
726 MSC_VER_REQUIRED=1300
727 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2003" || "$(MSVC_VARIANT)" == "DOTNET11"
728 MSC_VER_REQUIRED=1310
729 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
730 MSC_VER_REQUIRED=1400
731 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008" ||  "$(MSVC_VARIANT)" == "MSVC2008EE"
732 MSC_VER_REQUIRED=1500
733 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010" ||  "$(MSVC_VARIANT)" == "MSVC2010EE"
734 MSC_VER_REQUIRED=1600
735 !ELSE
736 !ERROR MSVC_VARIANT unknown
737 !ENDIF
738
739 ## Manifest processing is not needed for VC10 (Visual Studio 2010 C)
740 ## See: http://msdn.microsoft.com/en-us/library/dd293574.aspx
741 !IF ($(MSC_VER_REQUIRED) >= 1400) && ($(MSC_VER_REQUIRED) < 1600)
742 MANIFEST_INFO_REQUIRED=1
743 !ENDIF
744
745 # Compiler flags:
746 # /W3                               Warning level 3 (0 less - 4 most, 1 default)
747 # /Zi                               Create .pdb file for debugging
748 # /MD                               Use "multithread- and DLL-specific version" of run-time libraries
749 #                                    msvc documentation states that /MD causes _MT and _DLL to be defined
750 #                                    See: http://msdn.microsoft.com/en-us/library/2kzt1wy3%28v=VS.90%29.aspx
751 # /D_CRT_SECURE_NO_DEPRECATE        Don't warn for "insecure" calls,
752 #                                     see MSDN "Security Enhancements in the CRT"
753 # /D_CRT_NONSTDC_NO_DEPRECATE       Don't warn for "Deprecated CRT Functions" as MSDN calls this
754 # /D_BIND_TO_CURRENT_CRT_VERSION=1  Make sure our CRT and manifest versions match
755 #                                    (http://msdn.microsoft.com/en-us/library/cc664727.aspx)
756 # /DWIN32_LEAN_AND_MEAN             Don't include unnecessary Windows include files (see windows.h)
757 # /MANIFEST:no                      Don't create a SxS manifest. Makes sure our plugins don't load
758 #                                     a second copy of the CRT.
759 #
760 ##Note: LOCAL_CFLAGS are flags used for *all* compilations
761 ##      STANDARD_CFLAGS (see below) are flags used just for *Wireshark* compilations
762 !IF     "$(MSVC_VARIANT)" == "MSVC6"      || \
763         "$(MSVC_VARIANT)" == "MSVC2002"   || \
764         "$(MSVC_VARIANT)" == "DOTNET10"   || \
765         "$(MSVC_VARIANT)" == "MSVC2003"   || \
766         "$(MSVC_VARIANT)" == "DOTNET11"
767 LOCAL_CFLAGS=/Zi /W3 /MD /DWIN32_LEAN_AND_MEAN /DMSC_VER_REQUIRED=$(MSC_VER_REQUIRED)
768
769 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"   || \
770         "$(MSVC_VARIANT)" == "MSVC2005EE" || \
771         "$(MSVC_VARIANT)" == "DOTNET20"   || \
772         "$(MSVC_VARIANT)" == "MSVC2008"   || \
773         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
774         "$(MSVC_VARIANT)" == "MSVC2010"   || \
775         "$(MSVC_VARIANT)" == "MSVC2010EE"
776 LOCAL_CFLAGS=/Zi /W3 /MD /DWIN32_LEAN_AND_MEAN /DMSC_VER_REQUIRED=$(MSC_VER_REQUIRED) \
777              /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
778
779 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
780 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /D_BIND_TO_CURRENT_CRT_VERSION=1
781 !ENDIF
782
783 # Additional compiler warnings to be treated as "Level 3"
784 #  when compiling Wireshark sources. (Selected from "level 4" warnings).
785 ## 4295: array is too small to include a terminating null character
786 WARNINGS_CFLAGS=/w34295
787
788 !ELSE
789 !ERROR MSVC_VARIANT unknown
790 !ENDIF
791
792 # http://msdn.microsoft.com/en-us/library/bb385193.aspx
793 # /MP               Compiles multiple source files by using multiple processes
794 # /MP[processMax]   If you omit the processMax argument, the compiler retrieves the number of effective processors
795 #                   on your computer from the operating system, and creates a process for each processor.
796 #
797 # The following compiler options and language features that are incompatible with the /MP option:
798 #
799 # * #import preprocessor directive
800 # * /E, /EP
801 # * /Gm
802 # * /showIncludes
803 # * /Yc
804 #
805 !IF     "$(MSVC_VARIANT)" == "MSVC2008"   || \
806         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
807         "$(MSVC_VARIANT)" == "MSVC2010"   || \
808         "$(MSVC_VARIANT)" == "MSVC2010EE"
809 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /MP
810 !ENDIF
811
812 # Optional: Static analysis. Only supported in the full-frontal MSVC editions.
813 # http://msdn.microsoft.com/en-us/library/ms182025.aspx
814
815 !IFDEF ENABLE_CODE_ANALYSIS
816 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /analyze:WX-
817 !ENDIF
818
819 #STANDARD_CFLAGS are flags used for *Wireshark* compiles (not stuff like lemon, etc)
820 STANDARD_CFLAGS=-DHAVE_CONFIG_H -D_U_="" $(LOCAL_CFLAGS) $(WARNINGS_CFLAGS)
821
822 #Comment out the following if warnings are not to be treated as errors
823 WARNINGS_ARE_ERRORS=-WX
824
825 ## XXX: _MT and _DLL are defined when /MD is used so CVARSDLL is apparently unneeded
826 ##CVARSDLL=-D_MT -D_DLL
827
828 # Linker flags:
829 # /DEBUG  generate debug info
830 # /PROFILE generate map file(s) for profiling
831 # /DEFAULTLIB:xxx use xxx as the standard C library
832 # /NODEFAULTLIB:xxx don't use xxx as the standard C library
833 #
834 LOCAL_LDFLAGS=/DEBUG /MACHINE:$(TARGET_MACHINE)
835 DLL_LDFLAGS =
836 !IFDEF MANIFEST_INFO_REQUIRED
837 DLL_LDFLAGS = /MANIFEST:no
838 !ENDIF
839
840 # Enable Safe Exception Handler.
841 # http://msdn.microsoft.com/en-us/magazine/cc337897.aspx
842 !IF $(MSC_VER_REQUIRED) >= 1300
843 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /GS
844 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
845 LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /SafeSEH
846 !ENDIF
847 !ENDIF
848
849 # Enable ASLR. Requires VS2008 or later.
850 # http://blogs.msdn.com/b/vcblog/archive/2009/05/21/dynamicbase-and-nxcompat.aspx
851 # DEP (/NXCompat) is handled in init_process_policies() via SetProcessDEPPolicy.
852
853 # ASLR http://msdn.microsoft.com/en-us/library/bb384887.aspx
854 !IF $(MSC_VER_REQUIRED) >= 1500
855 LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /DYNAMICBASE /FIXED:no
856 !ENDIF
857
858 PLUGIN_LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS) $(DLL_LDFLAGS)
859
860 #
861 # According to http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=403
862 # XCOPY under Windows NT doesn't support the "/Y" flag.  This works
863 # around that bug.
864 # XXX - This apparently doesn't work for some versions of nmake:
865 # http://support.microsoft.com/default.aspx?scid=kb;en-us;86814
866 # It looks like we'll have to call "set copycmd=/y" before we run xcopy.
867 COPYCMD=/y
868
869 #
870 # If you don't want to build libwireshark.dll, you should comment out the
871 # following line. (Note: for plugin support this option must stay activated)
872 ENABLE_LIBWIRESHARK=USE
873
874 #
875 # install (debug) directory for Wireshark (relative to your source dir)
876 INSTALL_DIR=wireshark-gtk2
877
878
879
880 ##### C-Runtime Redistributable #####
881 #
882 # The C-Runtime since Version 7 must be shipped together with
883 # the program installer, to avoid missing msvcr*.dll files on
884 # the target machine.
885 #
886 # The location of these files differ on the various compiler
887 # packages, the following will use the default paths depending
888 # on the package version.
889 #
890 !IF "$(MSVC_VARIANT)" == "MSVC6"
891 # msvcrt.dll will already be available on target machines - nothing additional to install
892
893 !ELSEIF "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
894 # We're not creating portable packages and therefore don't have to worry about
895 # "deploying using xcopy"
896 VCREDIST_EXE=$(WIRESHARK_LIB_DIR)\vcredist_$(TARGET_MACHINE).exe
897
898 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2002"
899 # you probably need to tweak this directory if you don't use the professional edition!
900 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio .NET\Visual Studio .NET Professional - English\msvcr70.dll
901
902 !ELSEIF "$(MSVC_VARIANT)" == "DOTNET10"
903 # no redistributable available for this package!
904
905 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2003"
906 # you probably need to tweak this directory if you don't use the professional edition!
907 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio .NET 2003\Visual Studio .NET Professional 2003 - English\msvcr71.dll
908
909 !ELSEIF "$(MSVC_VARIANT)" == "DOTNET11"
910 # no redistributable available for this package!
911
912 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"
913 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 8\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC80.CRT\*.*
914
915 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20" || "$(MSVC_VARIANT)" == "MSVC2008EE"
916 # you need to download the redistributable package vcredist_x86.exe from Microsoft first,
917 # and copy it to the lib folder!!!
918 VCREDIST_EXE=$(WIRESHARK_LIB_DIR)\vcredist_$(TARGET_MACHINE).exe
919
920 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008"
921 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 9.0\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC90.CRT\*.*
922
923 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010EE"
924 # you need to download the redistributable package vcredist_x86.exe from Microsoft first,
925 # and copy it to the lib folder!!!
926 VCREDIST_EXE=$(WIRESHARK_LIB_DIR)\vcredist_$(TARGET_MACHINE).exe
927 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010"
928 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 10.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC100.CRT\*.*
929
930 !ELSE
931 !ERROR MSVC_VARIANT unknown
932 !ENDIF
933
934 !IF DEFINED(VCREDIST_EXE) && ! EXIST("$(VCREDIST_EXE)")
935 !ERROR Can't find $(VCREDIST_EXE). Have you downloaded it from Microsoft? \
936 See the developer's guide section "C-Runtime "Redistributable" files" for details how to get it
937 !ENDIF
938
939 ##### Advanced: Docbook/XML documentation generation #####
940 # If you want to generate the Docbook/XML based docs (User's and Developer's
941 # Guide, ...), you'll need some additional tools / libraries compared to the
942 # rest of the build process.
943 #
944 # FOR DETAILED INSTRUCTIONS TO GENERATE THE DOCS, SEE: docbook\README.txt.
945 #
946 # If you don't call the Makefile.nmake in the docbook dir to generate the
947 # docs, the following settings in this section will have no effect.
948
949 # formatting objects processor executable
950 # Comment this out if you don't have fop installed or you don't want the docs
951 # in PDF format.
952 #
953 # You may want to install the FOP hyphenation patterns from
954 # http://offo.sourceforge.net/hyphenation/
955 !IFNDEF FOP
956 FOP=fop-1.0\fop.bat
957 !ENDIF
958
959 # Additional options to fop.
960 FOP_OPTS=-Xmx256m
961
962 # html help compiler
963 # Comment this out if you don't have hhc.exe or you don't want the docs in
964 # .chm format.
965 #
966 # Beware: hhc.exe is NOT part of the MSVC packages in HHC_DIR mentioned above,
967 # so you'll need to install the HTML Help Workshop for this.
968 HHC_EXE="$(HHC_DIR)\hhc.exe"
969
970 # html to text converter for text version of release notes, e.g. elinks.
971 # This could also be "lynx", or "true" if neither elinks nor lynx is installed
972 # (cygwin: lynx works, elinks not available, links and true doesn't produce output)
973 #HTML2TXT=elinks -dump -dump-width 72
974 ##HTML2TXT=links -dump -width 72 ## XXX: Fails: For links -dump requires 'url' (filename) arg.
975 #HTML2TXT=lynx -dump -width=72 -nolist -stdin
976
977 !IFNDEF HTML2TXT
978 HTML2TXT=$(PYTHON) $(TOOLS_DIR)\html2text.py --width=72 --no-links
979 !ENDIF
980
981 # the XSL processor (part of cygwin's libxslt package)
982 XSLTPROC="xsltproc"
983
984 # the XML validator (part of cygwin's libxml2 package)
985 XMLLINT="xmllint"
986
987
988
989 ##############################################################################
990 #
991 # You should not have to change anything below this comment.
992 # If you do, it's a deficiency in the Makefile.nmake files;
993 # either tell wireshark-dev@wireshark.org about it, including
994 # details of why you had to change it, or fix config.nmake
995 # and any Makefile.nmake files that need to be changed, and
996 # send us the patches, along with details of why the change
997 # was necessary.
998 #
999 ##############################################################################
1000
1001 #
1002 # The RC_VERSION should be comma-separated, not dot-separated,
1003 # as per Graham Bloice's message in
1004 #
1005 #       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
1006 #
1007 # "The RC_VERSION variable in config.nmake should be comma separated.
1008 # This allows the resources to be built correctly and the version
1009 # number to be correctly displayed in the explorer properties dialog
1010 # for the executables, and XP's tooltip, rather than 0.0.0.0."
1011 #
1012
1013 VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)$(VERSION_EXTRA)
1014 RC_VERSION=$(VERSION_MAJOR),$(VERSION_MINOR),$(VERSION_MICRO),$(VERSION_BUILD)
1015 PRODUCT_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO).$(VERSION_BUILD)
1016
1017 WTAP_VERSION=$(WTAP_VERSION_MAJOR).$(WTAP_VERSION_MINOR).$(WTAP_VERSION_MICRO)
1018 RC_WTAP_VERSION=$(WTAP_VERSION_MAJOR),$(WTAP_VERSION_MINOR),$(WTAP_VERSION_MICRO)
1019
1020 # GLib
1021 GLIB_CFLAGS=/I$(GTK_DIR)\include\glib-$(GLIB_VERSION) \
1022         /I$(GTK_DIR)\lib\glib-$(GLIB_VERSION)\include \
1023         -DG_DISABLE_DEPRECATED
1024 GLIB_LIBS=$(GTK_DIR)\lib\glib-$(GLIB_VERSION).lib \
1025         $(GTK_DIR)\lib\gmodule-$(GLIB_VERSION).lib \
1026         $(GTK_DIR)\lib\gobject-$(GLIB_VERSION).lib
1027 GTHREAD_LIBS=$(GTK_DIR)\lib\gthread-$(GLIB_VERSION).lib
1028
1029 # GTK+
1030 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-2.0 \
1031         /I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
1032         /I$(GTK_DIR)\lib\gtk-2.0\include \
1033         /I$(GTK_DIR)\include\atk-1.0 \
1034         /I$(GTK_DIR)\include\cairo \
1035         /I$(GTK_DIR)\include\pango-1.0 \
1036         -DGTK_DISABLE_SINGLE_INCLUDES \
1037         -DGTK_DISABLE_DEPRECATED \
1038         -DGSEAL_ENABLE
1039 GTK_LIBS=$(GTK_DIR)\lib\gtk-win32-2.0.lib \
1040         $(GTK_DIR)\lib\gdk-win32-2.0.lib \
1041         $(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
1042         $(GTK_DIR)\lib\cairo.lib \
1043         $(GTK_DIR)\lib\pango-1.0.lib \
1044         $(GTK_DIR)\lib\pangocairo-1.0.lib \
1045         $(GLIB_LIBS)
1046
1047 # 2.18 was no good(Theming problem)
1048 !IF "$(GTK_INST_VERSION)" == "2.24" || "$(GTK_INST_VERSION)" == "2.22" || "$(GTK_INST_VERSION)" == "2.16" || "$(GTK_INST_VERSION)" == "2.14"
1049 GTK_LIB_DIR=2.10.0
1050
1051 !IFDEF PNG_DLL
1052 NEED_LIBPNG_DLL=USE
1053 !ENDIF
1054 !IFDEF JPEG_DLL
1055 NEED_LIBJPEG_DLL=USE
1056 !ENDIF
1057 !IFDEF TIFF_DLL
1058 NEED_LIBTIFF_DLL=USE
1059 !ENDIF
1060 NEED_CAIRO_DLL=USE
1061 # Pango >=1.24.5 Needs these:
1062 NEED_FREETYPE_DLL=USE
1063 NEED_FONTCONFIG_DLL=USE
1064 NEED_EXPAT_DLL=USE
1065
1066 GTK_WIMP_DLLSRC_DIR=$(GTK_DIR)\lib\gtk-2.0\$(GTK_LIB_DIR)\engines
1067 GTK_WIMP_DLLDST_DIR=lib\gtk-2.0\$(GTK_LIB_DIR)\engines
1068 GTK_WIMP_RCSRC_DIR=$(GTK_DIR)\share\themes\MS-Windows\gtk-2.0
1069 GTK_WIMP_RCDST_DIR=etc\gtk-2.0
1070 !ELSE
1071 !ERROR ? Unknown or invalid GTK_INST_VERSION
1072 !ENDIF
1073
1074
1075 !IFDEF AIRPCAP_DIR
1076 AIRPCAP_CONFIG=^#define HAVE_AIRPCAP 1
1077 #AIRPCAP_CFLAGS=/I$(AIRPCAP_DIR)\include
1078 !ELSE
1079 AIRPCAP_CONFIG=
1080 !ENDIF
1081
1082 !IFDEF PCAP_DIR
1083 # Nmake uses carets to escape special characters
1084 WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
1085 #
1086 # This requires that, if you're *building* Wireshark, you have
1087 # the most recent WinPcap's development package.  If, at *run*
1088 # time, an older version of WinPcap, missing some routines,
1089 # is found, we work around that.
1090 #
1091 PCAP_FINDALLDEVS_CONFIG=^#define HAVE_PCAP_FINDALLDEVS 1
1092 PCAP_DATALINK_NAME_TO_VAL_CONFIG=^#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1
1093 PCAP_DATALINK_VAL_TO_NAME_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_NAME 1
1094 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1
1095 # PCAP_BREAKLOOP won't have any benefit on Win32, but breaks compatibility with 3.0
1096 PCAP_BREAKLOOP_CONFIG=
1097 PCAP_LIST_DATALINKS_CONFIG=^#define HAVE_PCAP_LIST_DATALINKS 1
1098 PCAP_FREE_DATALINKS_CONFIG=^#define HAVE_PCAP_FREE_DATALINKS 1
1099 PCAP_SET_DATALINK_CONFIG=^#define HAVE_PCAP_SET_DATALINK 1
1100 PCAP_OPEN_DEAD_CONFIG=^#define HAVE_PCAP_OPEN_DEAD 1
1101 BPF_IMAGE_CONFIG=^#define HAVE_BPF_IMAGE 1
1102 !ELSE
1103 # no WpdPack installed
1104 WINPCAP_CONFIG=
1105 PCAP_FINDALLDEVS_CONFIG=
1106 PCAP_DATALINK_NAME_TO_VAL_CONFIG=
1107 PCAP_DATALINK_VAL_TO_NAME_CONFIG=
1108 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=
1109 PCAP_BREAKLOOP_CONFIG=
1110 PCAP_LIST_DATALINKS_CONFIG=
1111 PCAP_FREE_DATALINKS_CONFIG=
1112 PCAP_SET_DATALINK_CONFIG=
1113 PCAP_OPEN_DEAD_CONFIG=
1114 BPF_IMAGE_CONFIG=
1115 !ENDIF
1116
1117 !IF DEFINED(PCAP_DIR) && DEFINED(PCAP_REMOTE)
1118 PCAP_HAVE_REMOTE_CONFIG=^#define HAVE_REMOTE 1
1119 PCAP_REMOTE_CONFIG=^#define HAVE_PCAP_REMOTE 1
1120 PCAP_OPEN_CONFIG=^#define HAVE_PCAP_OPEN 1
1121 PCAP_SETSAMPLING_CONFIG=^#define HAVE_PCAP_SETSAMPLING 1
1122 !ELSE
1123 PCAP_HAVE_REMOTE_CONFIG=
1124 PCAP_REMOTE_CONFIG=
1125 PCAP_OPEN_CONFIG=
1126 PCAP_SETSAMPLING_CONFIG=
1127 !ENDIF
1128
1129 !IFDEF ZLIB_DIR
1130 ZLIB_PATH=$(ZLIB_DIR)
1131 ZLIB_CFLAGS=/I$(ZLIB_DIR)\include
1132 ZLIB_LIBS=$(ZLIB_DIR)\lib\zdll.lib
1133 ZLIB_DLL=$(ZLIB_DIR)\zlib1.dll
1134 # Nmake uses carets to escape special characters
1135 ZLIB_CONFIG=^#define HAVE_LIBZ 1
1136 !else
1137 ZLIB_CFLAGS=
1138 ZLIB_LIBS=
1139 ZLIB_DLL=
1140 ZLIB_CONFIG=
1141 !ENDIF
1142
1143 !IFDEF C_ARES_PKG
1144 !UNDEF ADNS_DIR
1145 C_ARES_DIR=$(WIRESHARK_LIB_DIR)\c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1146 C_ARES_CFLAGS=/I$(C_ARES_DIR)/include
1147 C_ARES_LIBS=$(C_ARES_DIR)\lib\libcares-2.lib
1148 C_ARES_DLL=$(C_ARES_DIR)\bin\libcares-2.dll
1149 # Nmake uses carets to escape special characters
1150 C_ARES_CONFIG=^#define HAVE_C_ARES 1
1151 !else
1152 C_ARES_CFLAGS=
1153 C_ARES_LIBS=
1154 C_ARES_CONFIG=
1155 !IFDEF ADNS_DIR
1156 ADNS_PATH=$(ADNS_DIR)\adns_win32\lib
1157 ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32
1158 ADNS_LIBS=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.lib
1159 ADNS_DLL=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.dll
1160 # Nmake uses carets to escape special characters
1161 ADNS_CONFIG=^#define HAVE_GNU_ADNS 1
1162 !else
1163 ADNS_CFLAGS=
1164 ADNS_LIBS=
1165 ADNS_CONFIG=
1166 !ENDIF # ADNS
1167 !ENDIF # C_ARES
1168
1169 !IFDEF KFW_DIR
1170 KFW_PATH=$(KFW_DIR)\bin
1171 KFW_CFLAGS=/I$(KFW_DIR)\include
1172 KFW_LIBS=$(KFW_DIR)\lib\krb5_32.lib
1173 # Nmake uses carets to escape special characters
1174 KFW_CONFIG=^#define HAVE_MIT_KERBEROS 1
1175 !else
1176 KFW_CFLAGS=
1177 KFW_LIBS=
1178 KFW_CONFIG=
1179 !ENDIF
1180
1181 !IFDEF NETTLE_DIR
1182 NETTLE_CFLAGS=/I$(NETTLE_DIR)
1183 NETTLE_LIBS=$(NETTLE_DIR)\libnettle.lib
1184 # Nmake uses carets to escape special characters
1185 NETTLE_CONFIG=^#define HAVE_LIBNETTLE 1
1186 !else
1187 NETTLE_CFLAGS=
1188 NETTLE_LIBS=
1189 NETTLE_CONFIG=
1190 !ENDIF
1191
1192 !IFDEF GNUTLS_PKG
1193 GNUTLS_DIR=$(WIRESHARK_LIB_DIR)\gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1194 GNUTLS_PATH=$(GNUTLS_DIR)
1195 # /DNOCRYPT avoids inclusion of Wincrypt.h, avoiding a X509_NAME define clash
1196 GNUTLS_CFLAGS=/I$(GNUTLS_DIR)\include /DNOCRYPT /DIMPORT_LIGNUTLSDLL
1197 GCRYPT_LIBS = $(GNUTLS_DIR)\bin\libgcrypt-11.lib
1198 GNUTLS_LIBS=\
1199         $(GNUTLS_DIR)\bin\libtasn1-3.lib        \
1200         $(GNUTLS_DIR)\bin\libgpg-error-0.lib    \
1201         $(GCRYPT_LIBS) \
1202         $(GNUTLS_DIR)\bin\libgnutls-26.lib
1203 # Nmake uses carets to escape special characters
1204 GNUTLS_CONFIG=^#define HAVE_LIBGNUTLS 1
1205 LIBGCRYPT_CONFIG=^#define HAVE_LIBGCRYPT 1
1206 !else
1207 GNUTLS_CFLAGS=
1208 GNUTLS_LIBS=
1209 GNUTLS_CONFIG=
1210 LIBGCRYPT_CONFIG=
1211 !ENDIF
1212
1213 !IFDEF LUA_DIR
1214 LUA_CFLAGS=/I$(LUA_DIR)\include
1215 LUA_LIBS=$(LUA_DIR)\lua5.1.lib
1216 # Nmake uses carets to escape special characters
1217 LUA_CONFIG=^#define HAVE_LUA 1
1218 LUA_VERSION=^#define HAVE_LUA_5_1 1
1219 !else
1220 LUA_CFLAGS=
1221 LUA_LIBS=
1222 LUA_CONFIG=
1223 !ENDIF
1224
1225 !IF DEFINED(PYTHON_EMBED)
1226 PYTHON_CFLAGS=/I$(PYTHON_DIR)\include
1227 PYTHON_LIBS=$(PYTHON_DIR)\libs\python$(PYTHON_VER).lib
1228 # Nmake uses carets to escape special characters
1229 PYTHON_CONFIG=^#define HAVE_PYTHON 1
1230 !else
1231 PYTHON_CFLAGS=
1232 PYTHON_LIBS=
1233 PYTHON_CONFIG=
1234 !ENDIF
1235
1236 !IFDEF PORTAUDIO_DIR
1237 # Nmake uses carets to escape special characters
1238 PORTAUDIO_CONFIG=^#define HAVE_LIBPORTAUDIO 1
1239 !IF "$(PORTAUDIO_VERSION)" == "18"
1240 # V18 uses API version 1 and v19 API version 2
1241 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\pa_common
1242 PORTAUDIO_API_CONFIG=^#define PORTAUDIO_API_1 1
1243 !ELSE
1244 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\include /I$(PORTAUDIO_DIR)\src\common /I$(PORTAUDIO_DIR)\src\os\win /DPA_NO_DS /DPA_NO_ASIO
1245 !ENDIF
1246 !ELSE
1247 PORTAUDIO_CFLAGS=
1248 PORTAUDIO_CONFIG=
1249 !ENDIF
1250
1251 !IFDEF HHC_DIR
1252 !IF "$(MSVC_VARIANT)" == "MSVC6"
1253 HHC_CFLAGS=/I"$(HHC_DIR)\include" -DHHC_DIR
1254 HHC_LIBS="$(HHC_DIR)\lib\htmlhelp.lib"
1255 !ELSE
1256 HHC_CFLAGS=-DHHC_DIR
1257 HHC_LIBS=htmlhelp.lib
1258 !ENDIF
1259 !ELSE
1260 HHC_CFLAGS=
1261 HHC_LIBS=
1262 !ENDIF
1263
1264 !IFDEF SMI_PKG
1265 SMI_DIR=$(WIRESHARK_LIB_DIR)\libsmi-$(SMI_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1266 SMI_CONFIG=^#define HAVE_LIBSMI 1
1267 SMI_CFLAGS=/I$(SMI_DIR)\include
1268 SMI_LIBS=$(SMI_DIR)\lib\libsmi-2.lib
1269 !ELSE
1270 SMI_DIR=
1271 SMI_LIBS=
1272 SMI_CFLAGS=
1273 SMI_CONFIG=
1274 !ENDIF
1275
1276 !IFDEF GEOIP_DIR
1277 GEOIP_CONFIG=^#define HAVE_GEOIP 1
1278 GEOIP_V6_CONFIG=^#define HAVE_GEOIP_V6 1
1279 GEOIP_CFLAGS=/I$(GEOIP_DIR)
1280 GEOIP_LIBS=$(GEOIP_DIR)\GeoIP.lib
1281 !ELSE
1282 GEOIP_LIBS=
1283 GEOIP_CFLAGS=
1284 GEOIP_CONFIG=
1285 GEOIP_V6_CONFIG=
1286 !ENDIF
1287
1288 !IFDEF ENABLE_LIBWIRESHARK
1289 LIBWIRESHARK_CONFIG=^#define HAVE_LIBWIRESHARKDLL 1
1290 # Link plugins with the import library of libwireshark.dll
1291 LINK_PLUGINS_WITH_LIBWIRESHARK=USE
1292 !ELSE
1293 LIBWIRESHARK_CONFIG=
1294 !ENDIF
1295
1296 # Construct the path
1297 PATH=$(PATH);$(CYGWIN_PATH);$(GTK_DIR)\bin;$(GETTEXT_DIR)\bin;$(ZLIB_PATH);$(ADNS_PATH)
1298
1299 # We can't use a lot of IPv6 code with plain Visual C++ 6.0
1300 !IF "$(MSVC_VARIANT)" == "MSVC6" && !DEFINED(MSSDK)
1301 INET6_CONFIG=
1302 !ELSE
1303 INET6_CONFIG=^#define INET6 1
1304 !ENDIF
1305
1306 !IF "$(MSVC_VARIANT)" == "MSVC6" && !DEFINED(MSSDK)
1307 NTDDNDIS_CONFIG=
1308 !ELSE
1309 NTDDNDIS_CONFIG=^#define HAVE_NTDDNDIS_H 1
1310 !ENDIF