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