Witness: fix whitespace
[metze/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 ##### Program name #####
7 # Changing the name is experimental and may break the installer/unistaller and possibly other stuff.
8 # Application data will still be under the same dir as Wireshark so perference files profiles etc
9 # will be shared with a "normal" Wireshark installation.
10 # Note that suport libararies needs to be in PROGRAM_NAME-libs...
11
12 !IFNDEF PROGRAM_NAME
13 PROGRAM_NAME=Wireshark
14 !ENDIF
15
16 ##### Target platform #####
17 # Only "win32" and "win64" are valid (for now).
18 # This can be defined in the system environment.
19 !IFNDEF WIRESHARK_TARGET_PLATFORM
20 WIRESHARK_TARGET_PLATFORM=win32
21 !ENDIF
22
23 ##### Versions #####
24
25 # The SVN revision of our build. Updated by make-version.pl
26 SVN_REVISION=0
27
28 # The current Wireshark version. Recommended: Leave unchanged.
29 # Updated by make-version.pl
30 VERSION_MAJOR=1
31 VERSION_MINOR=11
32 VERSION_MICRO=3
33 VERSION_BUILD=$(SVN_REVISION)
34
35 # Local build information. Recommended: Unique string for your
36 # environment, e.g. "-JackStackBarbecue". Updated by make-version.pl
37
38 VERSION_EXTRA=
39
40 # The version of the wiretap library. Recommended: Leave unchanged.
41 WTAP_VERSION_MAJOR=$(VERSION_MAJOR)
42 WTAP_VERSION_MINOR=$(VERSION_MINOR)
43 WTAP_VERSION_MICRO=0
44
45 # The version of the filetap library. Recommended: Leave unchanged.
46 FTAP_VERSION_MAJOR=$(VERSION_MAJOR)
47 FTAP_VERSION_MINOR=$(VERSION_MINOR)
48 FTAP_VERSION_MICRO=0
49
50 ##### Directories #####
51
52 #
53 # Base directory, where your libraries reside, which are needed to
54 # compile the sources. This setting is used only inside this file.
55 # This can be defined in the system environment.
56 #
57 !IFNDEF WIRESHARK_LIB_DIR
58 !IFDEF WIRESHARK_BASE_DIR
59 WIRESHARK_LIB_DIR=$(WIRESHARK_BASE_DIR)\$(PROGRAM_NAME)-$(WIRESHARK_TARGET_PLATFORM)-libs
60 !ELSE
61 WIRESHARK_LIB_DIR=C:\$(PROGRAM_NAME)-$(WIRESHARK_TARGET_PLATFORM)-libs
62 !ENDIF
63 !ENDIF
64
65 #
66 # Base directory, where your programs reside.
67 # This setting is used only inside this file.
68 #
69 PROGRAM_FILES=$(PROGRAMFILES)
70 PROGRAM_FILES_W6432=$(PROGRAMW6432)
71
72 #
73 # Location of the "tools" directory. This affects HTML2TXT below and should
74 # be overridden by makefiles in any subdirectories that use HTML2TXT.
75 !IFNDEF TOOLS_DIR
76 TOOLS_DIR=tools
77 !ENDIF
78
79 #
80 # Machine type for the compiler and linker
81 # TARGET_MACHINE (Used for link /MACHINE) should be one of "X86" or "X64"
82 # (sorry ARM, Alpha, MIPS, and Itanium fans).
83 # CPU (Used by win32.mak) should be one of "i386" or "AMD64".
84 # PROCESSOR_ARCHITECTURE (Used for redistributable packages and
85 # manifests) should be one of "x86" or "amd64".
86 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
87 TARGET_MACHINE=x86
88 CPU=i386
89 PROCESSOR_ARCHITECTURE=x86
90 !else if "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
91 TARGET_MACHINE=x64
92 CPU=AMD64
93 PROCESSOR_ARCHITECTURE=amd64
94 !else
95 !error Your mysterious moon-man architecture "$(WIRESHARK_TARGET_PLATFORM)" frightens and confuses us.
96 !endif
97
98
99 ##### Microsoft Visual C / Studio Variant #####
100 # For the different Studios, see: http://en.wikipedia.org/wiki/Microsoft_Visual_Studio
101 # Only one of the following MSVC_VARIANT settings should be used
102
103 # "Microsoft Visual Studio 2008"
104 # Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
105 #MSVC_VARIANT=MSVC2008
106
107 # "Microsoft Visual C++ 2008 Express Edition"
108 # Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
109 #MSVC_VARIANT=MSVC2008EE
110
111 # "Microsoft Visual Studio 2010"
112 # Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
113 #MSVC_VARIANT=MSVC2010
114
115 # "Microsoft Visual C++ 2010 Express Edition"
116 # Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
117 #MSVC_VARIANT=MSVC2010EE
118
119 # "Microsoft Visual C++ 2012 Express Edition"
120 # Visual C++ 11.0, _MSC_VER 1700, msvcr110.dll
121 ## Notes:
122 ##    1. Sep 20,2012: *Beta*: Build with VC11 (2012) succeeds; Seems OK: Minimally tested;
123 ##        win32.mak is apparently not part of the MS 2012EE install;
124 ##        To build Windows Wireshark, win32.mak must be obtained*
125 ##        and copied to a dir specified in the Windows Environment
126 ##        variable 'include' (or to a dir added to the list in 'include').
127 ##        *One possibility: download the Windows 7 Platform SDK and copy
128 ##         win32.mak from ...\Microsoft SDKs\Windows\v7.[something]\include
129 ##         See: http://ask.wireshark.org/questions/14343/setting-development-project-under-visual-studio-2012
130 ##    2. Dec 28,2012: "VS2012 Update 1" is required to use VS 2012 to build an .exe which
131 ##        will run on Windows XP (as well as on later versions of Windows).
132 ##        ToDo: It appears that some special setup is required to to do this.
133 ##          https://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx
134 ##    3. Feb 07,2013: [WMeier] I've noted no problems to date with Wireshark built with VS2012
135 ##        based upon a fair amount of use while doing Wireshark testing and debugging.
136 ##
137 #MSVC_VARIANT=MSVC2012EE
138
139 # "Microsoft Visual Studio 2012"
140 # Visual C++ 11.0, _MSC_VER 1700, msvcr110.dll
141 #MSVC_VARIANT=MSVC2012
142
143 # "Microsoft Visual Studio 2013"
144 # Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
145 #MSVC_VARIANT=MSVC2013
146
147 # "Microsoft Visual Studio 2013 Express Edition"
148 # Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
149 #MSVC_VARIANT=MSVC2013EE
150
151 # The default if we haven't set a system environment variable or
152 # uncommented an entry above.  We default to the version recommended
153 # in the Developer's Guide, namely MSVC++ 2010 Express Edition.
154 !IFNDEF MSVC_VARIANT
155 MSVC_VARIANT=MSVC2010EE
156 !ENDIF
157
158 #
159 # Optional: To compile some time critical code from assembler instead of C
160 #
161 # If you have the NASM compiler, set this to the NASM executable.
162 # http://nasm.sourceforge.net/
163 #
164 # If you don't have NASM, comment this line out, so that NASM
165 # isn't defined.
166 #
167 NASM=$(WIRESHARK_LIB_DIR)\nasm-2.09.08\nasm.exe
168
169 #
170 # Optional: the Python library enables scripting support.
171 #
172 # If you don't have the Python library, comment this line out, so that
173 # PYTHON_EMBED isn't defined.
174 #
175 # NOTE: The Python library must have been compiled with the same
176 # compiler (MSVC_VARIANT) as Wireshark. Known python.org Python
177 # CRT versions:
178 #
179 # Python version    CRT (32-bit)    CRT (64-bit)
180 # 2.4.4             7.1             ?
181 # 2.6.1             9.0             ?
182 # 2.6.2             ?               9.0
183 # 2.7.1             9.0             9.0
184 # 3.2.2             9.0             9.0
185 #
186 # If you versions of Python and Visual C++ use different CRTs
187 # comment this out.
188 #
189 # XXX The DLL path in epan/wspython/wspy_libws.py likely needs to
190 # be fixed before this is enabled by default.
191 #PYTHON_EMBED=1
192
193 #
194 # Optional: the Python interpreter is used as part of the buildsystem
195 #
196 # This will override the automatic detection below.
197 #PYTHON_VER=27
198 #PYTHON_DIR=C:\Python$(PYTHON_VER)
199
200 #
201 # If you don't have the native Python package installed, you can use
202 # the Cygwin version (not recommended)
203 #
204 #PYTHON=env python
205
206 # Santity check: native vs Cygwin Python options
207 !IF DEFINED(PYTHON) && DEFINED(PYTHON_DIR)
208 !ERROR PYTHON and PYTHON_DIR cannot be specified at the same time
209 !ENDIF
210
211 # Find native Python automatically if PYTHON(_DIR) wasn't defined
212 !IF !DEFINED(PYTHON) && !DEFINED(PYTHON_DIR)
213 !IF EXIST(c:\Python27\python.exe)
214 PYTHON_VER=27
215 !ELSE IF EXIST(c:\Python26\python.exe)
216 PYTHON_VER=26
217 !ELSE IF EXIST(c:\Python25\python.exe)
218 PYTHON_VER=25
219 !ELSE IF EXIST(c:\Python24\python.exe)
220 PYTHON_VER=24
221 !ENDIF
222
223 !IF DEFINED(PYTHON_VER)
224 PYTHON_DIR=C:\Python$(PYTHON_VER)
225 !ENDIF
226 !ENDIF
227
228 !IF DEFINED(PYTHON_DIR)
229 PYTHON="$(PYTHON_DIR)\python.exe"
230 PATH=$(PYTHON_DIR);$(PATH)
231 !ENDIF
232
233 #### Save files as pcap-ng by default. Comment out to use pcap instead. ####
234 PCAP_NG_DEFAULT=^#define PCAP_NG_DEFAULT 1
235
236 ##### To Use packet editor uncomment this line ####
237 ### Experimental - work in progress
238 WANT_PACKET_EDITOR=^#define WANT_PACKET_EDITOR 1
239
240 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
241 ##### Win32 Libraries #####
242 #
243 # Mandatory: GLib settings
244 #
245 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
246 #
247 GLIB_VERSION=2.0
248
249 #
250 # Mandatory: GLib, GTK & related library settings
251 #
252 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
253 #
254 # If you want building with GTK+, set GTK_DIR to the pathname of the
255 # directory in which the "include" and "lib" directories reside.
256 #
257 # Set the name to gtk2 if you want to use gtk2
258 GTK_NAME=gtk3
259 GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)
260
261
262 # These macros are used by the nsis installer script and by the install target.
263 #EXPAT_DLL=libexpat-1.dll
264 FFI_DLL=libffi-5.dll
265 FONTCONFIG_DLL=libfontconfig-1.dll
266 FREETYPE_DLL=libfreetype-6.dll
267 INTL_DLL=libintl-8.dll
268 JASPER_DLL=libjasper-1.dll
269 JPEG_DLL=libjpeg-8.dll
270 LZMA_DLL=liblzma-5.dll
271 PIXMAN_DLL=libpixman-1-0.dll
272 PNG_DLL=libpng15-15.dll
273 TIFF_DLL=libtiff-5.dll
274 XML_DLL=libxml2-2.dll
275
276 # This macro is used by the setup target.
277 !IF "$(GTK_NAME)" == "gtk2"
278 GDK_DLL=libgdk-win32-2.0-0.dll
279 GTK_DLL=libgtk-win32-2.0-0.dll
280 #GTK_PKG=2.24.10-2.7
281 GTK_PKG=2.24.14-1.1
282 PKG_SUFIX=ws
283 !ELSE
284 GDK_DLL=libgdk-3-0.dll
285 GTK_DLL=libgtk-3-0.dll
286 PKG_SUFIX=ws
287 GTK_PKG=3.4.4-2.1
288 #GTK_PKG=3.6.1-1.1
289 !ENDIF
290
291 #
292 # Mandatory: Version numbers of GTK and pango.
293 #
294 # (MAJOR + MINOR Version number but without MICRO version number)
295 # These macros are used by the nsis installer script and by the setup target.
296 #
297 !IF "$(GTK_NAME)" == "gtk2"
298 GTK_INST_VERSION=2.24
299 !ELSE
300 GTK_INST_VERSION=3.4
301 #GTK_INST_VERSION=3.6
302 !ENDIF
303
304 #
305 # Recommended: Qt
306 #
307 # This must point to a top-level Qt directory. QMake should be in
308 # $(QT5_BASE_DIR)\bin
309 #
310 # Qt's various paths are hardcoded but with care you can relocate your
311 # installation directory:
312 # http://stackoverflow.com/questions/913642/qmake-and-qt-install-prefix-how-can-i-select-a-new-location-for-qt-library
313 #
314 #QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
315 !IF !DEFINED(QT5_BASE_DIR)
316 # Wireshark custom
317 !IF EXIST(C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws)
318 QT5_BASE_DIR=C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws
319 # Digia official
320 !ELSE IF EXIST(C:\Qt\Qt5.1.1\5.1.1\msvc2010)
321 QT5_BASE_DIR=C:\Qt\Qt5.1.1\5.1.1\msvc2010
322 # Digia official, installed in $(WIRESHARK_LIB_DIR)
323 !ELSE IF EXIST($(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010)
324 QT5_BASE_DIR=$(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010
325 !ENDIF
326 !ENDIF
327
328 #
329 # Recommended: WinPcap developer's pack to capture network traffic.
330 #
331 # If you have the WinPcap developer's pack (at least version 3.0),
332 # set this to the directory in which the WinPcap developer's pack resides.
333 #
334 # If you don't have the WPdpack, comment this line out, so that
335 # PCAP_DIR isn't defined.
336 #
337 PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
338 # This macro is used by the nsis installer script, by the u3/portable apps and by the setup target.
339 WINPCAP_VERSION=4_1_3
340 WPD_VERSION=4_1_2
341
342 #
343 # Optional: WinPcap remote capture support and new API
344 # (pcap_open(), pcap_findalldevs_ex(), etc.)
345 #
346 PCAP_REMOTE=1
347
348 #
349 # Optional: The ZLib enables unzipping of gzip compressed capture files
350 # "on the fly".
351 #
352 # If you have Zlib, set this to directory in which the Zlib headers
353 # and .lib file are stored.
354 #
355 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
356 # defined.
357 # EXperimental only use zlib 1.2.5 on win32 for now
358 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
359
360 #
361 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
362 # name resolvings.
363 #
364 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
365 # .lib file is stored.
366 #
367 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
368 # isn't defined.
369 #
370 # If C_ARES_DIR is defined below, it will override this setting.
371 #
372 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
373
374 #
375 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
376 # name resolvings.
377 #
378 # If you have c-ares, set this to the directory in which the c-ares
379 # .lib file is stored. Setting this will override ADNS_DIR above. You
380 # can't have both.
381 #
382 # If you're using Visual C++ 6.0, you'll have to use a platform SDK that
383 # defines socklen_t, such as Windows Server 2003 PSDK.
384 #
385 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
386 # isn't defined.
387 #
388 C_ARES_PKG=1.9.1-1
389
390 #
391 # Optional: the GnuTLS library enables ssl decryption.
392 #
393 # If you have the GnuTLS library, set this to the package version.
394 #
395 # If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
396 # isn't defined.
397 #
398 # Platform SDK conflicts with openssl.h header
399 GNUTLS_PKG=2.12.18-1.2
400
401 #
402 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
403 #
404 # If you have the kerberos for windows (mit) library, set this to the
405 # directory where the kfw package is stored.
406 #
407 # If you don't have KFW, comment this line out, so that KFW_DIR
408 # isn't defined.
409 #
410 KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3-2-2-i386-ws-vc6
411
412 #
413 # Optional: the Nettle library enables ??? decryption.
414 #
415 # If you have the Nettle encryption library, set this to the
416 # directory in which the nettle package is stored.
417 #
418 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
419 # isn't defined.
420 #
421 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
422
423 #
424 # Optional: the LUA library enables scripting support.
425 #
426 # If you have the LUA library, set this to the directory in which
427 # the LUA package is stored.
428 #
429 # If you don't have LUA, comment this line out, so that LUA_DIR
430 # isn't defined.
431 #
432 LUA_DIST=5_1_4_Win32_dll6
433 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
434
435 #
436 # Optional: the PORTAUDIO library enables audio output for RTP streams.
437 #
438 # If you have the PORTAUDIO library (used for rtp_player), set this to
439 # the directory in which the PORTAUDIO library is stored.
440 #
441 # If you don't have PORTAUDIO, comment this line out, so that
442 # PORTAUDIO_DIR isn't defined.
443 #
444 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
445 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
446
447 #
448 # Version number of PortAudio
449 #
450 #PORTAUDIO_VERSION=18
451 PORTAUDIO_VERSION=19
452
453 #
454 # Optional: AirPcap developer's pack to capture wireless network traffic
455 # incl. 802.11 management frames.
456 #
457 # If you have the AirPcap developer's pack, set this to the directory
458 # in which the AirPcap developer's pack resides.
459 #
460 # If you don't have the AirPcap developer's pack, comment this line out,
461 # so that AIRPCAP_DIR isn't defined.
462 #
463 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
464
465 #
466 # Optional: LIBSMI, System Management Interface
467 #
468 # Used for oid-name resolution for SNMP and other protocols
469 #
470 SMI_PKG=svn-40773
471
472 #
473 # Optional: GeoIP, IP address database lookups
474 #
475 # Used to map IP addresses to MaxMind GeoIP database entries
476 #
477 GEOIP_PKG=1.5.1-2
478
479 #
480 # Optional: WinSparkle, software updates
481 #
482 # Used for automatic software updates
483 #
484 WINSPARKLE_PKG=0.3-44-g2c8d9d3-win32ws
485
486 !else
487 ##### Win64 Libraries #####
488 #
489 # Mandatory: GLib settings
490 #
491 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
492 #
493 GLIB_VERSION=2.0
494
495 #
496 # Mandatory: GLib, GTK & related library settings
497 #
498 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
499 #
500 # If you want building with GTK+, set GTK_DIR to the pathname of the
501 # directory in which the "include" and "lib" directories reside.
502 #
503 #
504 # Set the name to gtk3 if you want to use gtk3 - (experimental ?)
505 GTK_NAME=gtk2
506 GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)
507
508 # These macros are used by the nsis installer script and by the install target.
509 #EXPAT_DLL=libexpat-1.dll
510 FFI_DLL=libffi-5.dll
511 FONTCONFIG_DLL=libfontconfig-1.dll
512 FREETYPE_DLL=libfreetype-6.dll
513 INTL_DLL=libintl-8.dll
514 JASPER_DLL=libjasper-1.dll
515 JPEG_DLL=libjpeg-8.dll
516 LZMA_DLL=liblzma-5.dll
517 PIXMAN_DLL=libpixman-1-0.dll
518 PNG_DLL=libpng15-15.dll
519 TIFF_DLL=libtiff-5.dll
520 XML_DLL=libxml2-2.dll
521
522 # These macros are used by the setup target.
523 !IF "$(GTK_NAME)" == "gtk2"
524 GDK_DLL=libgdk-win32-2.0-0.dll
525 GTK_DLL=libgtk-win32-2.0-0.dll
526 #GTK_PKG=2.24.10-2.7
527 GTK_PKG=2.24.14-1.1
528 PKG_SUFIX=ws
529 !ELSE
530 GDK_DLL=libgdk-3-0.dll
531 GTK_DLL=libgtk-3-0.dll
532 PKG_SUFIX=ws
533 GTK_PKG=3.4.4-2.1
534 #GTK_PKG=3.6.1-1.1
535 !ENDIF
536
537 #
538 # Mandatory: Version numbers of GTK and pango.
539 #
540 # (MAJOR + MINOR Version number but without MICRO version number)
541 # These macros are used by the nsis installer script and by the setup target.
542 #
543 !IF "$(GTK_NAME)" == "gtk2"
544 #GTK_INST_VERSION=2.16
545 GTK_INST_VERSION=2.24
546 !ELSE
547 #GTK_INST_VERSION=3.4
548 GTK_INST_VERSION=3.6
549 !ENDIF
550
551 #
552 # Recommended: Qt
553 #
554 # This must point to a top-level Qt directory. QMake should be in
555 # $(QT5_BASE_DIR)\bin
556 #
557 # Qt's various paths are hardcoded but with care you can relocate your
558 # installation directory:
559 # http://stackoverflow.com/questions/913642/qmake-and-qt-install-prefix-how-can-i-select-a-new-location-for-qt-library
560 #
561 #QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
562 !IF !DEFINED(QT5_BASE_DIR)
563 # Wireshark custom
564 !IF EXIST(C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws)
565 QT5_BASE_DIR=C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws
566 # Digia official
567 !ELSE IF EXIST(C:\Qt\Qt5.1.1\5.1.1\msvc2010)
568 QT5_BASE_DIR=C:\Qt\Qt5.1.1\5.1.1\msvc2010
569 # Digia official, installed in $(WIRESHARK_LIB_DIR)
570 !ELSE IF EXIST($(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010)
571 QT5_BASE_DIR=$(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010
572 !ENDIF
573 !ENDIF
574
575 #
576 # Recommended: WinPcap developer's pack to capture network traffic.
577 #
578 # If you have the WinPcap developer's pack (at least version 3.0),
579 # set this to the directory in which the WinPcap developer's pack resides.
580 #
581 # If you don't have the WPdpack, comment this line out, so that
582 # PCAP_DIR isn't defined.
583 #
584 PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
585 # This macro is used by the nsis installer script, by the u3/portable apps and by the setup target.
586 WINPCAP_VERSION=4_1_3
587 WPD_VERSION=4_1_2
588
589 #
590 # Optional: WinPcap remote capture support and new API
591 # (pcap_open(), pcap_findalldevs_ex(), etc.)
592 #
593 PCAP_REMOTE=1
594
595 #
596 # Optional: The ZLib enables unzipping of gzip compressed capture files
597 # "on the fly".
598 #
599 # If you have Zlib, set this to directory in which the Zlib headers
600 # and .lib file are stored.
601 #
602 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
603 # defined.
604 #
605 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
606
607 #
608 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
609 # name resolvings.
610 #
611 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
612 # .lib file is stored.
613 #
614 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
615 # isn't defined.
616 #
617 # If C_ARES_DIR is defined below, it will override this setting.
618 #
619 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
620
621 #
622 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
623 # name resolvings.
624 #
625 # If you have c-ares, set this to the directory in which the c-ares
626 # .lib file is stored. Setting this will override ADNS_DIR above. You
627 # can't have both.
628 #
629 # If you're using Visual C++ 6.0, you'll have to use a platform SDK that
630 # defines socklen_t, such as Windows Server 2003 PSDK.
631 #
632 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
633 # isn't defined.
634 #
635 C_ARES_PKG=1.9.1-1
636
637 #
638 # Optional: the GnuTLS library enables ssl decryption.
639 #
640 # If you have the GnuTLS library, set this to the package version.
641 #
642 # If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
643 # isn't defined.
644 #
645 # Platform SDK conflicts with openssl.h header
646 GNUTLS_PKG=2.12.18-1.2-1
647
648 #
649 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
650 #
651 # If you have the kerberos for windows (mit) library, set this to the
652 # directory where the kfw package is stored.
653 #
654 # If you don't have KFW, comment this line out, so that KFW_DIR
655 # isn't defined.
656 #
657 #KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3.2.2-ws1
658
659 #
660 # Optional: the Nettle library enables ??? decryption.
661 #
662 # If you have the Nettle encryption library, set this to the
663 # directory in which the nettle package is stored.
664 #
665 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
666 # isn't defined.
667 #
668 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
669
670 #
671 # Optional: the LUA library enables scripting support.
672 #
673 # If you have the LUA library, set this to the directory in which
674 # the LUA package is stored.
675 #
676 # If you don't have LUA, comment this line out, so that LUA_DIR
677 # isn't defined.
678 #
679 LUA_DIST=-5.1.4_Win64_dll10
680 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
681
682 #
683 # Optional: the PORTAUDIO library enables audio output for RTP streams.
684 #
685 # If you have the PORTAUDIO library (used for rtp_player), set this to
686 # the directory in which the PORTAUDIO library is stored.
687 #
688 # If you don't have PORTAUDIO, comment this line out, so that
689 # PORTAUDIO_DIR isn't defined.
690 #
691 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
692 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
693
694 #
695 # Version number of PortAudio
696 #
697 #PORTAUDIO_VERSION=18
698 PORTAUDIO_VERSION=19
699
700 #
701 # Optional: AirPcap developer's pack to capture wireless network traffic
702 # incl. 802.11 management frames.
703 #
704 # If you have the AirPcap developer's pack, set this to the directory
705 # in which the AirPcap developer's pack resides.
706 #
707 # If you don't have the AirPcap developer's pack, comment this line out,
708 # so that AIRPCAP_DIR isn't defined.
709 #
710 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
711
712 #
713 # Optional: LIBSMI, System Management Interface
714 #
715 # Used for oid-name resolution for SNMP and other protocols
716 #
717 SMI_PKG=svn-40773
718
719 #
720 # Optional: GeoIP, IP address database lookups
721 #
722 # Used to map IP addresses to MaxMind GeoIP database entries
723 #
724 GEOIP_PKG=1.5.1-2
725
726 #
727 # Optional: WinSparkle, software updates
728 #
729 # Used for automatic software updates
730 #
731 WINSPARKLE_PKG=0.3-44-g2c8d9d3-win64ws
732
733 !endif
734 ##### win32 / win64 #####
735
736 !IF "$(GTK_NAME)" == "gtk2"
737 GTK_ETC_DIR=etc\gtk-2.0
738 GTK_ENGINES_DIR=lib\gtk-2.0\$(GTK_LIB_DIR)\engines
739 GTK_MODULES_DIR=lib\gtk-2.0\modules
740 GTK_THEMES_DIR=share\themes\MS-Windows\gtk-2.0
741 !ELSE
742 GTK_ETC_DIR=etc\gtk-3.0
743 GTK_SCHEMAS_DIR=\share\glib-2.0\schemas
744 !ENDIF
745
746
747 ##### Tools #####
748
749 # Set the following mandatory commands to find the tools.
750 # The easiest way is to use the corresponding packages from cygwin.
751
752 # Set up the path to the cygwin binaries
753 CYGWIN_PATH=c:\cygwin\bin
754
755 # command for a shell (cygwin's bash package recommended)
756 SH_PROG=bash
757
758 # bash versions after 3.1.6 need the 'igncr' shell option to be able to
759 #  process scripts in windows 'native format' (dos crlf format).
760 # The following !IF results in the option being used only if it is available
761 #  since using it on bash version 3.1.6 (or earlier) is not required and
762 #  will cause an error message.
763 !if "$(SH_PROG)"=="bash" && [$(CYGWIN_PATH)\bash -c "set -o igncr" 2>nul: ] == 0
764 SH_FLAGS=-o igncr
765 !endif
766
767 SH=$(SH_PROG) $(SH_FLAGS)
768
769
770 # command for perl (cygwin's perl package recommended)
771 PERL=perl
772
773 # command for pod2man and pod2html
774 # (part of the perl package, usually leave these unchanged)
775 POD2MAN=$(SH) pod2man
776 POD2HTML=$(SH) pod2html
777
778 # command for sed (cygwin's sed recommended)
779 SED=sed
780
781 # Command for lex/flexx. Cygwin's flex or Chocolatey's win_flex
782 # recommended.
783 # Absolute or relative paths must be Windows-style
784
785 # Chocolatey's C:\Chocolatey\bin\win_flex and -\win_bison are
786 # currently unusable without some manual adjustments to the
787 # win_flex and win_bison wrapper scripts. Calling the executables
788 # directly should work.
789
790 #LEX=win_flex
791 #LEX=C:\Chocolatey\lib\winflexbison.2.4.1.20140103\tools\win_flex
792 LEX=flex
793
794 # Command for yacc/bison. Cygwin's bison or Chocolatey's win_bison
795 # recommended.
796 # Absolute or relative paths must be Windows-style
797
798 #YACC=win_bison
799 #YACC=C:\Chocolatey\lib\winflexbison.2.4.1.20140103\tools\win_bison
800 YACC=bison
801
802 # Commands to convert UNIX line endings to DOS/Windows
803 UNIX2DOS=u2d
804 TEXTIFY=$(SH) $(TOOLS_DIR)/textify.sh
805
806 #
807 # Optional: Build the NSIS installer.
808 #
809 # If NSIS is installed in a standard location (under Program Files
810 # or Program Files (x86)) you shouldn't have to change anything.
811 #
812 # If NSIS is installed in a custom location uncomment the following
813 # line and adjust the path accordingly.
814 #
815
816 #MAKENSIS="\custom\path\to\NSIS\makensis.exe"
817
818 # Find NSIS automatically
819 !IF !DEFINED(MAKENSIS)
820 !IF EXIST("$(PROGRAM_FILES)\NSIS\makensis.exe")
821 MAKENSIS="$(PROGRAM_FILES)\NSIS\makensis.exe"
822 !ELSE IF EXIST("$(PROGRAM_FILES_W6432)\NSIS\makensis.exe")
823 MAKENSIS="$(PROGRAM_FILES_W6432)\NSIS\makensis.exe"
824 !ENDIF
825 !ENDIF
826
827 #
828 # Optional: To build the NSIS PortableApps installer.
829 #
830 # If you have the NSIS Unicode package, set this to the NSIS Unicode executable.
831 #
832 # If you don't have NSIS Unicode, comment this line out, so that
833 # MAKENSIS_UNICODE isn't defined.
834 #
835 MAKENSIS_UNICODE="$(PROGRAM_FILES)\NSIS\Unicode\makensis.exe"
836
837 #
838 # Optional: To build the developers API documentation with doxygen and dot.
839 # Currently experimental, outdated and incomplete.
840 #
841 # You will have to download and install:
842 # Doxygen from: http://www.doxygen.org
843 # Graphviz from: http://www.research.att.com/sw/tools/graphviz/
844 #
845 # If you have doxygen, set this to the doxygen executable.
846 #
847 # If you don't want the developers documentation (or don't have the tools),
848 # comment this line out, so that DOXYGEN isn't defined.
849 #
850 #DOXYGEN="$(PROGRAM_FILES)/doxygen/bin/doxygen.exe"
851
852 #
853 # Recommended: Use the compressed html help format .chm as the Wireshark integrated help.
854 #
855 # The required htmlhelp.h and htmlhelp.lib should be included in versions of MSVC supported by Wireshark
856 #
857 # If you don't want the online help (or don't have the tools),
858 # comment this line out, so that HHC_DIR isn't defined.
859 #
860 HHC_DIR=$(PROGRAM_FILES)\HTML Help Workshop
861
862 #
863 # Optional: To reduce the size of dlls and exes, which is especially useful for USB device distributions (U3, PortableApps)
864 #
865 # If you have the UPX package, set this to the upx.exe executable.
866 #
867 # UPX can be downloaded from:
868 #   http://upx.sourceforge.net/
869 #
870 # If you don't have UPX, or don't want to pack exes and dlls,
871 # comment this line out, so that UPX isn't defined.
872 #
873
874 UPX=$(WIRESHARK_LIB_DIR)\upx303w\upx.exe
875
876 ##### Flags, PATHs and Miscellaneous #####
877
878 # Santity check: Python embedding requires a valid PYTHON_DIR
879 !IF DEFINED(PYTHON_EMBED) && !DEFINED(PYTHON_DIR)
880 !ERROR PYTHON_EMBED requires that PYTHON_DIR is defined
881 !ENDIF
882
883 # "convert" the MSVC variant into the required MSC compiler version
884 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
885 MSC_VER_REQUIRED=1400
886 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008" ||  "$(MSVC_VARIANT)" == "MSVC2008EE"
887 MSC_VER_REQUIRED=1500
888 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010" ||  "$(MSVC_VARIANT)" == "MSVC2010EE"
889 MSC_VER_REQUIRED=1600
890 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" ||  "$(MSVC_VARIANT)" == "MSVC2012EE"
891 MSC_VER_REQUIRED=1700
892 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2013" ||  "$(MSVC_VARIANT)" == "MSVC2013EE"
893 MSC_VER_REQUIRED=1800
894 !ELSE
895 !ERROR MSVC_VARIANT unknown
896 !ENDIF
897
898 ## Manifest processing is not needed for VC10 (Visual Studio 2010 C)
899 ## See: http://msdn.microsoft.com/en-us/library/dd293574.aspx
900 !IF ($(MSC_VER_REQUIRED) >= 1400) && ($(MSC_VER_REQUIRED) < 1600)
901 MANIFEST_INFO_REQUIRED=1
902 !ENDIF
903
904 ## VS2012 (VC11): configure subsystem version
905 ## See: https://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx
906 ## (APPVER used in win32.mak to set subsystem version)
907 !IF ($(MSC_VER_REQUIRED) == 1700)
908 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
909 APPVER=5.01
910 !else
911 APPVER=5.02
912 !endif
913 !ENDIF
914
915 # Compiler flags:
916 # /W3                               Warning level 3 (0 less - 4 most, 1 default).
917 # /Zi                               Create .pdb file for debugging.
918 # /FR                               Create .sbr file with complete symbolic information.
919 #                                   add to standard CFLAGS if you want to build the .sbr files
920 #                                     for Wireshark compiles.
921 #                                     Warning: using /FR for Wireshark requires ~1Gig of additional disk space
922 #                                     XXX: provides less functionality for VC8, ... than for previous compilers ?
923 #                                     XXX: .bsc files not usable (not supported ?) with VC10 (Visual Studio 2010) ?
924 # /MD                               Use "multithread- and DLL-specific version" of run-time libraries.
925 #                                    msvc documentation states that /MD causes _MT and _DLL to be defined
926 #                                    See: http://msdn.microsoft.com/en-us/library/2kzt1wy3%28v=VS.90%29.aspx
927 # /D_CRT_SECURE_NO_DEPRECATE        Don't warn for "insecure" calls;
928 #                                     see MSDN "Security Enhancements in the CRT".
929 # /D_CRT_NONSTDC_NO_DEPRECATE       Don't warn for "Deprecated CRT Functions" as MSDN calls this.
930 # /D_BIND_TO_CURRENT_CRT_VERSION=1  Make sure our CRT and manifest versions match.
931 #                                    (http://msdn.microsoft.com/en-us/library/cc664727.aspx)
932 # /DWIN32_LEAN_AND_MEAN             Don't include unnecessary Windows include files (see windows.h).
933 # /MANIFEST:no                      Don't create a SxS manifest. Makes sure our plugins don't load
934 #                                     a second copy of the CRT.
935 # -DPSAPI_VERSION=1                 Programs that must run on earlier versions of Windows as well as Windows 7 and later 
936 #                                   versions should always call this function as GetProcessMemoryInfo. To ensure correct resolution of symbols, 
937 #                                   add Psapi.lib to the TARGETLIBS macro and compile the program with -DPSAPI_VERSION=1. 
938 #                                   To use run-time dynamic linking, load Psapi.dll.
939 #                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms683219(v=vs.85).aspx
940 # -DBUILD_WINDOWS                   Starting from VS2103, GetVersionEx is deprecated and we are recommended to use
941 #                                   VerifyVersionInfo instead
942 #                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms724429(v=vs.85).aspx
943 #                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms725491(v=vs.85).aspx
944 #                                   To continue to use GetVersionEx, we can define BUILD_WINDOWS
945 #
946 ##Note: LOCAL_CFLAGS are flags used for *all* compilations
947 ##      STANDARD_CFLAGS (see below) are flags used just for *Wireshark* compilations
948 !IF "$(MSVC_VARIANT)" == "MSVC2005"   || \
949         "$(MSVC_VARIANT)" == "MSVC2005EE" || \
950         "$(MSVC_VARIANT)" == "DOTNET20"   || \
951         "$(MSVC_VARIANT)" == "MSVC2008"   || \
952         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
953         "$(MSVC_VARIANT)" == "MSVC2010"   || \
954         "$(MSVC_VARIANT)" == "MSVC2010EE" || \
955         "$(MSVC_VARIANT)" == "MSVC2012"   || \
956         "$(MSVC_VARIANT)" == "MSVC2012EE" || \
957         "$(MSVC_VARIANT)" == "MSVC2013"   || \
958         "$(MSVC_VARIANT)" == "MSVC2013EE"
959 LOCAL_CFLAGS=/Zi /W3 /MD /DWIN32_LEAN_AND_MEAN /DMSC_VER_REQUIRED=$(MSC_VER_REQUIRED) \
960              /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE -DPSAPI_VERSION=1
961
962 !IF "$(MSVC_VARIANT)" == "MSVC2013"   || \
963         "$(MSVC_VARIANT)" == "MSVC2013EE"
964 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /DBUILD_WINDOWS
965 !ENDIF
966
967 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
968 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /D_BIND_TO_CURRENT_CRT_VERSION=1
969 !ENDIF
970
971 # Additional compiler warnings to be treated as "Level 3"
972 #  when compiling Wireshark sources. (Selected from "level 4" warnings).
973 ## 4295: array is too small to include a terminating null character
974 WARNINGS_CFLAGS=/w34295
975
976 !ELSE
977 !ERROR MSVC_VARIANT unknown
978 !ENDIF
979
980 # http://msdn.microsoft.com/en-us/library/bb385193.aspx
981 # /MP               Compiles multiple source files by using multiple processes
982 # /MP[processMax]   If you omit the processMax argument, the compiler retrieves the number of effective processors
983 #                   on your computer from the operating system, and creates a process for each processor.
984 #
985 # The following compiler options and language features that are incompatible with the /MP option:
986 #
987 # * #import preprocessor directive
988 # * /E, /EP
989 # * /Gm
990 # * /showIncludes
991 # * /Yc
992 #
993 !IF     "$(MSVC_VARIANT)" == "MSVC2008"   || \
994         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
995         "$(MSVC_VARIANT)" == "MSVC2010"   || \
996         "$(MSVC_VARIANT)" == "MSVC2010EE" || \
997         "$(MSVC_VARIANT)" == "MSVC2012"   || \
998         "$(MSVC_VARIANT)" == "MSVC2012EE" || \
999         "$(MSVC_VARIANT)" == "MSVC2013"   || \
1000         "$(MSVC_VARIANT)" == "MSVC2013EE"
1001 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /MP
1002 !ENDIF
1003
1004 # Optional: Static analysis. Only supported in the full-frontal MSVC editions.
1005 # http://msdn.microsoft.com/en-us/library/ms182025.aspx
1006
1007 !IFDEF ENABLE_CODE_ANALYSIS
1008 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /analyze:WX-
1009 !ENDIF
1010
1011 #STANDARD_CFLAGS are flags used for *Wireshark* compiles (not stuff like lemon, etc)
1012 STANDARD_CFLAGS=/DWINPCAP_VERSION=$(WINPCAP_VERSION) $(LOCAL_CFLAGS) $(WARNINGS_CFLAGS)
1013
1014 # Optional: Define WIRESHARK_GENERATE_BSC_FILE to generate .sbr files for input to bscmake
1015 !IFDEF WIRESHARK_GENERATE_BSC_FILE
1016 STANDARD_CFLAGS= $(STANDARD_CFLAGS) /FR
1017 !ENDIF
1018
1019 #Comment out the following if warnings are not to be treated as errors
1020 WARNINGS_ARE_ERRORS=-WX
1021
1022 # Linker flags:
1023 # /DEBUG  generate debug info
1024 # /PROFILE generate map file(s) for profiling
1025 # /DEFAULTLIB:xxx use xxx as the standard C library
1026 # /NODEFAULTLIB:xxx don't use xxx as the standard C library
1027 #
1028 LOCAL_LDFLAGS=/DEBUG /MACHINE:$(TARGET_MACHINE)
1029 DLL_LDFLAGS =
1030 !IFDEF MANIFEST_INFO_REQUIRED
1031 DLL_LDFLAGS = /MANIFEST:no
1032 !ENDIF
1033
1034 # Enable Safe Exception Handler.
1035 # http://msdn.microsoft.com/en-us/magazine/cc337897.aspx
1036 !IF $(MSC_VER_REQUIRED) >= 1300
1037 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /GS
1038 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
1039 LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /SafeSEH
1040 !ENDIF
1041 !ENDIF
1042
1043 # Enable ASLR. Requires VS2008 or later.
1044 # http://blogs.msdn.com/b/vcblog/archive/2009/05/21/dynamicbase-and-nxcompat.aspx
1045 # DEP (/NXCompat) is handled in init_process_policies() via SetProcessDEPPolicy.
1046
1047 # ASLR http://msdn.microsoft.com/en-us/library/bb384887.aspx
1048 !IF $(MSC_VER_REQUIRED) >= 1500
1049 LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /DYNAMICBASE /FIXED:no
1050 !ENDIF
1051
1052 PLUGIN_LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS) $(DLL_LDFLAGS)
1053
1054 #
1055 # According to http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=403
1056 # XCOPY under Windows NT doesn't support the "/Y" flag.  This works
1057 # around that bug.
1058 # XXX - This apparently doesn't work for some versions of nmake:
1059 # http://support.microsoft.com/default.aspx?scid=kb;en-us;86814
1060 # It looks like we'll have to call "set copycmd=/y" before we run xcopy.
1061 COPYCMD=/y
1062
1063 #
1064 # If you don't want to build libwireshark.dll, you should comment out the
1065 # following line. (Note: for plugin support this option must stay activated)
1066 ENABLE_LIBWIRESHARK=USE
1067
1068 #
1069 # install (debug) directory for Wireshark (relative to your source dir)
1070 INSTALL_DIR=wireshark-gtk2
1071
1072
1073
1074 ##### C-Runtime Redistributable #####
1075 #
1076 # The C-Runtime since Version 7 must be shipped together with
1077 # the program installer, to avoid missing msvcr*.dll files on
1078 # the target machine.
1079 #
1080 # The location of these files differ on the various compiler
1081 # packages, the following will use the default paths depending
1082 # on the package version.
1083 #
1084
1085 # You can either place the redistributable in its own platform-
1086 # and compiler-specific directory or in the top-level library
1087 # directory.
1088 # Microsoft maintains a list of the latest redistributables in
1089 # KB 20197667: http://support.microsoft.com/kb/2019667
1090 !IF EXIST("$(WIRESHARK_LIB_DIR)\vcredist_$(MSVC_VARIANT)")
1091 VCREDIST_DIR=$(WIRESHARK_LIB_DIR)\vcredist_$(MSVC_VARIANT)
1092 !ELSE
1093 VCREDIST_DIR=$(WIRESHARK_LIB_DIR)
1094 !ENDIF
1095
1096 !IF "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
1097 #
1098 # For 64-bit platforms, we don't create portable packages and therefore
1099 # don't have to worry that "Using the Visual C++ Redistributable
1100 # Package" requires that an installer be run to install that package,
1101 # so we use that method to make the C runtime available.
1102 #
1103 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1104
1105 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"
1106 #
1107 # For MSVC 2005 non-Express Edition, we "Install a particular Visual C++
1108 # assembly as a private assembly for the application", by copying
1109 # the contents of the Microsoft.VC80.CRT folder to the target directory.
1110 # This is done to reduce the size of the installer; it also makes
1111 # a portable version work, as the C runtime doesn't have to be
1112 # installed on the target machine.
1113 #
1114 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 8\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC80.CRT\*.*
1115
1116 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20" || "$(MSVC_VARIANT)" == "MSVC2008EE"
1117 #
1118 # For MSVC 2005 Express Edition, for the .NET Framework 2.0 SDK, and
1119 # for MSVC 2008 Express Edition, we "Use the Visual C++ Redistributable
1120 # Package", because they don't provide the Microsoft.VC80.CRT folder.
1121 #
1122 # They also don't provide the redistributable package, so you need to
1123 # download the appropriate version of the redistributable package,
1124 # vcredist_x86.exe, vcredist_x64.exe, or vcredist_ia64.exe, from
1125 # Microsoft first, and copy it to the lib folder!!!
1126 #
1127 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1128
1129 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008"
1130 #
1131 # For MSVC 2008 non-Express Edition, we "Install a particular Visual C++
1132 # assembly as a private assembly for the application", by copying
1133 # the contents of the Microsoft.VC90.CRT folder to the target directory.
1134 # This is done to reduce the size of the installer; it also makes
1135 # a portable version work, as the C runtime doesn't have to be
1136 # installed on the target machine.
1137 #
1138 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 9.0\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC90.CRT\*.*
1139
1140 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010EE"
1141 #
1142 # For MSVC 2010 Express Edition, we "Use the Visual C++ Redistributable
1143 # Package", because it doesn't provide the Microsoft.VC80.CRT folder.
1144 #
1145 # It also doesn't provide the redistributable package, so you need to
1146 # download the appropriate version of the redistributable package,
1147 # vcredist_x86.exe or vcredist_x64.exe, from Microsoft first, and copy
1148 # it to the lib folder!!!
1149 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1150 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010"
1151 #
1152 # For MSVC 2010 non-Express Edition, we "Install a particular Visual C++
1153 # assembly as a private assembly for the application", by copying
1154 # the contents of the Microsoft.VC100.CRT folder to the target directory.
1155 # This is done to reduce the size of the installer; it also makes
1156 # a portable version work, as the C runtime doesn't have to be
1157 # installed on the target machine.
1158 #
1159 # Note: for what it's worth, Microsoft recommends "Using the Visual C++
1160 # Redistributable Package", rather than "Installing a particular Visual
1161 # C++ assembly as a private assembly for the application", starting
1162 # with Visual Studio 2010.
1163 #
1164 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 10.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC100.CRT\*.*
1165 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" || "$(MSVC_VARIANT)" == "MSVC2012EE"
1166 #
1167 # EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
1168 #
1169 # For MSVC 2012, we "Install a particular Visual C++
1170 # assembly as a private assembly for the application", by copying
1171 # the contents of the Microsoft.VC110.CRT folder to the target directory.
1172 # This is done to reduce the size of the installer; it also makes
1173 # a portable version work, as the C runtime doesn't have to be
1174 # installed on the target machine.
1175 #
1176 # Note: for what it's worth, Microsoft recommends "Using the Visual C++
1177 # Redistributable Package", rather than "Installing a particular Visual
1178 # C++ assembly as a private assembly for the application", starting
1179 # with Visual Studio 2010.
1180 #
1181 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 11.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC110.CRT\*.*
1182 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2013" || "$(MSVC_VARIANT)" == "MSVC2013EE"
1183 #
1184 # EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
1185 #
1186 # For MSVC 2013, we "Install a particular Visual C++
1187 # assembly as a private assembly for the application", by copying
1188 # the contents of the Microsoft.VC120.CRT folder to the target directory.
1189 # This is done to reduce the size of the installer; it also makes
1190 # a portable version work, as the C runtime doesn't have to be
1191 # installed on the target machine.
1192 #
1193 # Note: for what it's worth, Microsoft recommends "Using the Visual C++
1194 # Redistributable Package", rather than "Installing a particular Visual
1195 # C++ assembly as a private assembly for the application", starting
1196 # with Visual Studio 2010.
1197 #
1198 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 12.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC120.CRT\*.*
1199 !ELSE
1200 !ERROR MSVC_VARIANT unknown
1201 !ENDIF
1202
1203 # This is still optional yet we define it above for all users.
1204 # So, don't check if it exists...
1205 #!IF DEFINED(VCREDIST_EXE) && ! EXIST("$(VCREDIST_EXE)")
1206 #!ERROR Can't find $(VCREDIST_EXE). Have you downloaded it from Microsoft? \
1207 #See the developer's guide section "C-Runtime "Redistributable" files" for details how to get it
1208 #!ENDIF
1209
1210 ##### Advanced: Docbook/XML documentation generation #####
1211 # If you want to generate the Docbook/XML based docs (User's and Developer's
1212 # Guide, ...), you'll need some additional tools / libraries compared to the
1213 # rest of the build process.
1214 #
1215 # FOR DETAILED INSTRUCTIONS TO GENERATE THE DOCS, SEE: docbook\README.txt.
1216 #
1217 # If you don't call the Makefile.nmake in the docbook dir to generate the
1218 # docs, the following settings in this section will have no effect.
1219
1220 # formatting objects processor executable
1221 # Comment this out if you don't have fop installed or you don't want the docs
1222 # in PDF format.
1223 #
1224 # You may want to install the FOP hyphenation patterns from
1225 # http://offo.sourceforge.net/hyphenation/
1226 !IFNDEF FOP
1227 FOP=fop-1.0\fop.bat
1228 !ENDIF
1229
1230 # Additional options to fop.
1231 FOP_OPTS=-Xmx256m
1232
1233 # html help compiler
1234 # Comment this out if you don't have hhc.exe or you don't want the docs in
1235 # .chm format.
1236 #
1237 # Beware: hhc.exe is NOT part of the MSVC packages in HHC_DIR mentioned above,
1238 # so you'll need to install the HTML Help Workshop for this.
1239 HHC_EXE="$(HHC_DIR)\hhc.exe"
1240
1241 # html to text converter for text version of release notes, e.g. elinks.
1242 # This could also be "lynx", or "true" if neither elinks nor lynx is installed
1243 # (cygwin: lynx works, elinks not available, links and true doesn't produce output)
1244 #HTML2TXT=elinks -dump -dump-width 72
1245 ##HTML2TXT=links -dump -width 72 ## XXX: Fails: For links -dump requires 'url' (filename) arg.
1246 #HTML2TXT=lynx -dump -width=72 -nolist -stdin
1247
1248 !IFNDEF HTML2TXT
1249 HTML2TXT=$(PYTHON) $(TOOLS_DIR)\html2text.py --width=72 --no-links
1250 !ENDIF
1251
1252 # the XSL processor (part of cygwin's libxslt package)
1253 XSLTPROC="xsltproc"
1254
1255 # the XML validator (part of cygwin's libxml2 package)
1256 XMLLINT="xmllint"
1257
1258 # Asciidoc converter (part of cygwin's asciidoc package). In order to build
1259 # the release notes you must have the Cygwin asciidoc and lynx packages
1260 # installed.
1261 A2X=a2x
1262 LYNX=lynx
1263
1264 ##############################################################################
1265 #
1266 # You should not have to change anything below this comment.
1267 # If you do, it's a deficiency in the Makefile.nmake files;
1268 # either tell wireshark-dev@wireshark.org about it, including
1269 # details of why you had to change it, or fix config.nmake
1270 # and any Makefile.nmake files that need to be changed, and
1271 # send us the patches, along with details of why the change
1272 # was necessary.
1273 #
1274 ##############################################################################
1275
1276 #
1277 # The RC_VERSION should be comma-separated, not dot-separated,
1278 # as per Graham Bloice's message in
1279 #
1280 #       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
1281 #
1282 # "The RC_VERSION variable in config.nmake should be comma separated.
1283 # This allows the resources to be built correctly and the version
1284 # number to be correctly displayed in the explorer properties dialog
1285 # for the executables, and XP's tooltip, rather than 0.0.0.0."
1286 #
1287
1288 VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)$(VERSION_EXTRA)
1289 RC_VERSION=$(VERSION_MAJOR),$(VERSION_MINOR),$(VERSION_MICRO),$(VERSION_BUILD)
1290 PRODUCT_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO).$(VERSION_BUILD)
1291
1292 WTAP_VERSION=$(WTAP_VERSION_MAJOR).$(WTAP_VERSION_MINOR).$(WTAP_VERSION_MICRO)
1293 RC_WTAP_VERSION=$(WTAP_VERSION_MAJOR),$(WTAP_VERSION_MINOR),$(WTAP_VERSION_MICRO)
1294 FTAP_VERSION=$(FTAP_VERSION_MAJOR).$(FTAP_VERSION_MINOR).$(FTAP_VERSION_MICRO)
1295 RC_FTAP_VERSION=$(FTAP_VERSION_MAJOR),$(FTAP_VERSION_MINOR),$(FTAP_VERSION_MICRO)
1296
1297 # GLib
1298 GLIB_CFLAGS=/I$(GTK_DIR)\include\glib-$(GLIB_VERSION) \
1299         /I$(GTK_DIR)\lib\glib-$(GLIB_VERSION)\include \
1300         -DG_DISABLE_DEPRECATED \
1301         -DG_DISABLE_SINGLE_INCLUDES
1302 GLIB_LIBS=$(GTK_DIR)\lib\glib-$(GLIB_VERSION).lib \
1303         $(GTK_DIR)\lib\gmodule-$(GLIB_VERSION).lib \
1304         $(GTK_DIR)\lib\gobject-$(GLIB_VERSION).lib
1305 GTHREAD_LIBS=$(GTK_DIR)\lib\gthread-$(GLIB_VERSION).lib
1306
1307
1308 # 2.18 was no good(Theming problem)
1309 !IF "$(GTK_INST_VERSION)" == "2.24" || "$(GTK_INST_VERSION)" == "2.22" || "$(GTK_INST_VERSION)" == "2.16" || "$(GTK_INST_VERSION)" == "2.14"
1310
1311 # GTK+
1312 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-2.0 \
1313         /I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
1314         /I$(GTK_DIR)\lib\gtk-2.0\include \
1315         /I$(GTK_DIR)\include\atk-1.0 \
1316         /I$(GTK_DIR)\include\cairo \
1317         /I$(GTK_DIR)\include\pango-1.0 \
1318         -DGDK_DISABLE_DEPRECATED \
1319         -DGDK_PIXBUF_DISABLE_DEPRECATED \
1320         -DGTK_DISABLE_DEPRECATED \
1321         -DGTK_DISABLE_SINGLE_INCLUDES \
1322         -DGSEAL_ENABLE
1323 GTK_LIBS=$(GTK_DIR)\lib\gtk-win32-2.0.lib \
1324         $(GTK_DIR)\lib\gdk-win32-2.0.lib \
1325         $(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
1326         $(GTK_DIR)\lib\cairo.lib \
1327         $(GTK_DIR)\lib\pango-1.0.lib \
1328         $(GTK_DIR)\lib\pangocairo-1.0.lib \
1329         $(GLIB_LIBS)
1330
1331 GTK_LIB_DIR=2.10.0
1332
1333 !IFDEF PNG_DLL
1334 NEED_PNG_DLL=USE
1335 !ENDIF
1336 !IFDEF JPEG_DLL
1337 NEED_JPEG_DLL=USE
1338 !ENDIF
1339 !IFDEF TIFF_DLL
1340 NEED_TIFF_DLL=USE
1341 !ENDIF
1342 NEED_CAIRO_DLL=USE
1343 # Pango >=1.24.5 Needs these:
1344 NEED_FREETYPE_DLL=USE
1345 NEED_FONTCONFIG_DLL=USE
1346 #NEED_EXPAT_DLL=USE
1347 NEED_XML_DLL=USE
1348 NEED_PIXMAN_DLL=USE
1349 NEED_FFI_DLL=USE
1350 NEED_JASPER_DLL=USE
1351 NEED_JPEG_DLL=USE
1352 NEED_TIFF_DLL=USE
1353 NEED_LZMA_DLL=USE
1354
1355 !ELSEIF "$(GTK_INST_VERSION)" == "3.4" || "$(GTK_INST_VERSION)" == "3.6"
1356
1357 # GTK+
1358 ## Note: If Wireshark is ever to be built with Gtk >= 3.10
1359 ##        then -DGTK_DISABLE_DEPRECATED must be removed
1360 ##        and -DGDK_DISABLE_DEPRECIATION_WARNINGS must
1361 ##        be added below.
1362 ##       Wireshark changes to handle Gtk 3.10 deprecated features
1363 ##        will not be done since Wireshark is moving to Qt.
1364 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-3.0 \
1365         /I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
1366         /I$(GTK_DIR)\lib\gtk-3.0\include \
1367         /I$(GTK_DIR)\include\atk-1.0 \
1368         /I$(GTK_DIR)\include\cairo \
1369         /I$(GTK_DIR)\include\pango-1.0 \
1370         -DGDK_DISABLE_DEPRECATED \
1371         -DGDK_PIXBUF_DISABLE_DEPRECATED \
1372         -DGTK_DISABLE_DEPRECATED \
1373         -DGTK_DISABLE_SINGLE_INCLUDES \
1374         -DGSEAL_ENABLE
1375 GTK_LIBS=$(GTK_DIR)\lib\gtk-3.lib \
1376         $(GTK_DIR)\lib\gdk-3.lib \
1377         $(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
1378         $(GTK_DIR)\lib\cairo.lib \
1379         $(GTK_DIR)\lib\pango-1.0.lib \
1380         $(GTK_DIR)\lib\pangocairo-1.0.lib \
1381         $(GLIB_LIBS)
1382
1383 GTK_LIB_DIR=3.4
1384
1385 !IFDEF _DLL
1386 !ENDIF
1387
1388 NEED_CAIRO_GOBJECT_DLL=USE
1389 NEED_CAIRO_DLL=USE
1390
1391 !IFDEF EXPAT_DLL
1392 NEED_EXPAT_DLL=USE
1393 !ENDIF
1394 !IFDEF FFI_DLL
1395 NEED_FFI_DLL=USE
1396 !ENDIF
1397 !IFDEF FONTCONFIG_DLL
1398 NEED_FONTCONFIG_DLL=USE
1399 !ENDIF
1400 !IFDEF FREETYPE_DLL
1401 NEED_FREETYPE_DLL=USE
1402 !ENDIF
1403 !IFDEF JASPER_DLL
1404 NEED_JASPER_DLL=USE
1405 !ENDIF
1406 !IFDEF JPEG_DLL
1407 NEED_JPEG_DLL=USE
1408 !ENDIF
1409 !IFDEF LZMA_DLL
1410 NEED_LZMA_DLL=USE
1411 !ENDIF
1412 !IFDEF PIXMAN_DLL
1413 NEED_PIXMAN_DLL=USE
1414 !ENDIF
1415 !IFDEF PNG_DLL
1416 NEED_PNG_DLL=USE
1417 !ENDIF
1418 !IFDEF TIFF_DLL
1419 NEED_TIFF_DLL=USE
1420 !ENDIF
1421 !IFDEF XML_DLL
1422 NEED_XML_DLL=USE
1423 !ENDIF
1424 !ELSE
1425 !ERROR ? Unknown or invalid GTK_INST_VERSION "$(GTK_INST_VERSION)"
1426 !ENDIF
1427
1428
1429 !IFDEF AIRPCAP_DIR
1430 AIRPCAP_CONFIG=^#define HAVE_AIRPCAP 1
1431 #AIRPCAP_CFLAGS=/I$(AIRPCAP_DIR)\include
1432 !ELSE
1433 AIRPCAP_CONFIG=
1434 WIRELESS_TOOLBAR_CONFIG=
1435 !ENDIF
1436
1437 !IFDEF PCAP_DIR
1438 # Nmake uses carets to escape special characters
1439 WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
1440 #
1441 # This requires that, if you're *building* Wireshark, you have
1442 # the most recent WinPcap's development package.  If, at *run*
1443 # time, an older version of WinPcap, missing some routines,
1444 # is found, we work around that.
1445 #
1446 PCAP_FINDALLDEVS_CONFIG=^#define HAVE_PCAP_FINDALLDEVS 1
1447 PCAP_DATALINK_NAME_TO_VAL_CONFIG=^#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1
1448 PCAP_DATALINK_VAL_TO_NAME_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_NAME 1
1449 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1
1450 # PCAP_BREAKLOOP won't have any benefit on Win32, but breaks compatibility with 3.0
1451 PCAP_BREAKLOOP_CONFIG=
1452 PCAP_LIST_DATALINKS_CONFIG=^#define HAVE_PCAP_LIST_DATALINKS 1
1453 PCAP_FREE_DATALINKS_CONFIG=^#define HAVE_PCAP_FREE_DATALINKS 1
1454 PCAP_SET_DATALINK_CONFIG=^#define HAVE_PCAP_SET_DATALINK 1
1455 PCAP_OPEN_DEAD_CONFIG=^#define HAVE_PCAP_OPEN_DEAD 1
1456 BPF_IMAGE_CONFIG=^#define HAVE_BPF_IMAGE 1
1457 !ELSE
1458 # no WpdPack installed
1459 WINPCAP_CONFIG=
1460 PCAP_FINDALLDEVS_CONFIG=
1461 PCAP_DATALINK_NAME_TO_VAL_CONFIG=
1462 PCAP_DATALINK_VAL_TO_NAME_CONFIG=
1463 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=
1464 PCAP_BREAKLOOP_CONFIG=
1465 PCAP_LIST_DATALINKS_CONFIG=
1466 PCAP_FREE_DATALINKS_CONFIG=
1467 PCAP_SET_DATALINK_CONFIG=
1468 PCAP_OPEN_DEAD_CONFIG=
1469 BPF_IMAGE_CONFIG=
1470 !ENDIF
1471
1472 !IF DEFINED(PCAP_DIR) && DEFINED(PCAP_REMOTE)
1473 PCAP_HAVE_REMOTE_CONFIG=^#define HAVE_REMOTE 1
1474 PCAP_REMOTE_CONFIG=^#define HAVE_PCAP_REMOTE 1
1475 PCAP_OPEN_CONFIG=^#define HAVE_PCAP_OPEN 1
1476 PCAP_SETSAMPLING_CONFIG=^#define HAVE_PCAP_SETSAMPLING 1
1477 !ELSE
1478 PCAP_HAVE_REMOTE_CONFIG=
1479 PCAP_REMOTE_CONFIG=
1480 PCAP_OPEN_CONFIG=
1481 PCAP_SETSAMPLING_CONFIG=
1482 !ENDIF
1483
1484 !IFDEF ZLIB_DIR
1485 ZLIB_PATH=$(ZLIB_DIR)
1486 ZLIB_CFLAGS=/I$(ZLIB_DIR)\include
1487 ZLIB_LIBS=$(ZLIB_DIR)\lib\zdll.lib
1488 ZLIB_DLL=$(ZLIB_DIR)\zlib1.dll
1489 # Nmake uses carets to escape special characters
1490 ZLIB_CONFIG=^#define HAVE_LIBZ 1
1491 !else
1492 ZLIB_CFLAGS=
1493 ZLIB_LIBS=
1494 ZLIB_DLL=
1495 ZLIB_CONFIG=
1496 !ENDIF
1497
1498 !IFDEF C_ARES_PKG
1499 !UNDEF ADNS_DIR
1500 C_ARES_DIR=$(WIRESHARK_LIB_DIR)\c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1501 C_ARES_CFLAGS=/I$(C_ARES_DIR)/include
1502 C_ARES_LIBS=$(C_ARES_DIR)\lib\libcares-2.lib
1503 C_ARES_DLL=$(C_ARES_DIR)\bin\libcares-2.dll
1504 # Nmake uses carets to escape special characters
1505 C_ARES_CONFIG=^#define HAVE_C_ARES 1
1506 !else
1507 C_ARES_CFLAGS=
1508 C_ARES_LIBS=
1509 C_ARES_CONFIG=
1510 !IFDEF ADNS_DIR
1511 ADNS_PATH=$(ADNS_DIR)\adns_win32\lib
1512 ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32
1513 ADNS_LIBS=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.lib
1514 ADNS_DLL=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.dll
1515 # Nmake uses carets to escape special characters
1516 ADNS_CONFIG=^#define HAVE_GNU_ADNS 1
1517 !else
1518 ADNS_CFLAGS=
1519 ADNS_LIBS=
1520 ADNS_CONFIG=
1521 !ENDIF # ADNS
1522 !ENDIF # C_ARES
1523
1524 !IFDEF KFW_DIR
1525 KFW_PATH=$(KFW_DIR)\bin
1526 KFW_CFLAGS=/I$(KFW_DIR)\include
1527 KFW_LIBS=$(KFW_DIR)\lib\krb5_32.lib
1528 # Nmake uses carets to escape special characters
1529 KFW_CONFIG=^#define HAVE_MIT_KERBEROS 1
1530 !else
1531 KFW_CFLAGS=
1532 KFW_LIBS=
1533 KFW_CONFIG=
1534 !ENDIF
1535
1536 !IFDEF NETTLE_DIR
1537 NETTLE_CFLAGS=/I$(NETTLE_DIR)
1538 NETTLE_LIBS=$(NETTLE_DIR)\libnettle.lib
1539 # Nmake uses carets to escape special characters
1540 NETTLE_CONFIG=^#define HAVE_LIBNETTLE 1
1541 !else
1542 NETTLE_CFLAGS=
1543 NETTLE_LIBS=
1544 NETTLE_CONFIG=
1545 !ENDIF
1546
1547 !IFDEF GNUTLS_PKG
1548 GNUTLS_DIR=$(WIRESHARK_LIB_DIR)\gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1549 GNUTLS_PATH=$(GNUTLS_DIR)
1550 # /DNOCRYPT avoids inclusion of Wincrypt.h, avoiding a X509_NAME define clash
1551 GNUTLS_CFLAGS=/I$(GNUTLS_DIR)\include /DNOCRYPT /DIMPORT_LIGNUTLSDLL
1552 GCRYPT_LIBS = $(GNUTLS_DIR)\bin\libgcrypt-11.lib
1553 GNUTLS_LIBS=\
1554         $(GNUTLS_DIR)\bin\libtasn1-3.lib        \
1555         $(GNUTLS_DIR)\bin\libgpg-error-0.lib    \
1556         $(GCRYPT_LIBS) \
1557         $(GNUTLS_DIR)\bin\libgnutls-26.lib
1558 # Nmake uses carets to escape special characters
1559 GNUTLS_CONFIG=^#define HAVE_LIBGNUTLS 1
1560 LIBGCRYPT_CONFIG=^#define HAVE_LIBGCRYPT 1
1561 !else
1562 GNUTLS_CFLAGS=
1563 GNUTLS_LIBS=
1564 GNUTLS_CONFIG=
1565 LIBGCRYPT_CONFIG=
1566 !ENDIF
1567
1568 !IFDEF LUA_DIR
1569 LUA_CFLAGS=/I$(LUA_DIR)\include
1570 LUA_LIBS=$(LUA_DIR)\lua5.1.lib
1571 # Nmake uses carets to escape special characters
1572 LUA_CONFIG=^#define HAVE_LUA 1
1573 LUA_VERSION=^#define HAVE_LUA 1
1574 !else
1575 LUA_CFLAGS=
1576 LUA_LIBS=
1577 LUA_CONFIG=
1578 !ENDIF
1579
1580 !IF DEFINED(PYTHON_EMBED)
1581 PYTHON_CFLAGS=/I$(PYTHON_DIR)\include
1582 PYTHON_LIBS=$(PYTHON_DIR)\libs\python$(PYTHON_VER).lib
1583 # Nmake uses carets to escape special characters
1584 PYTHON_CONFIG=^#define HAVE_PYTHON 1
1585 !else
1586 PYTHON_CFLAGS=
1587 PYTHON_LIBS=
1588 PYTHON_CONFIG=
1589 !ENDIF
1590
1591 !IFDEF PORTAUDIO_DIR
1592 # Nmake uses carets to escape special characters
1593 PORTAUDIO_CONFIG=^#define HAVE_LIBPORTAUDIO 1
1594 !IF "$(PORTAUDIO_VERSION)" == "18"
1595 # V18 uses API version 1 and v19 API version 2
1596 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\pa_common
1597 PORTAUDIO_API_CONFIG=^#define PORTAUDIO_API_1 1
1598 !ELSE
1599 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\include /I$(PORTAUDIO_DIR)\src\common /I$(PORTAUDIO_DIR)\src\os\win /DPA_NO_DS /DPA_NO_ASIO
1600 !ENDIF
1601 !ELSE
1602 PORTAUDIO_CFLAGS=
1603 PORTAUDIO_CONFIG=
1604 !ENDIF
1605
1606 !IFDEF HHC_DIR
1607 HHC_CFLAGS=-DHHC_DIR
1608 HHC_LIBS=htmlhelp.lib
1609 !ELSE
1610 HHC_CFLAGS=
1611 HHC_LIBS=
1612 !ENDIF
1613
1614 !IFDEF SMI_PKG
1615 SMI_DIR=$(WIRESHARK_LIB_DIR)\libsmi-$(SMI_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1616 SMI_CONFIG=^#define HAVE_LIBSMI 1
1617 SMI_CFLAGS=/I$(SMI_DIR)\include
1618 SMI_LIBS=$(SMI_DIR)\lib\libsmi-2.lib
1619 !ELSE
1620 SMI_DIR=
1621 SMI_LIBS=
1622 SMI_CFLAGS=
1623 SMI_CONFIG=
1624 !ENDIF
1625
1626 !IFDEF GEOIP_PKG
1627 GEOIP_DIR=$(WIRESHARK_LIB_DIR)\GeoIP-$(GEOIP_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1628 GEOIP_CONFIG=^#define HAVE_GEOIP 1
1629 GEOIP_V6_CONFIG=^#define HAVE_GEOIP_V6 1
1630 GEOIP_CFLAGS=/I$(GEOIP_DIR)/include
1631 GEOIP_LIBS=$(GEOIP_DIR)\lib\libGeoIP-1.lib
1632 !ELSE
1633 GEOIP_DIR=
1634 GEOIP_LIBS=
1635 GEOIP_CFLAGS=
1636 GEOIP_CONFIG=
1637 GEOIP_V6_CONFIG=
1638 !ENDIF
1639
1640 !IFDEF WINSPARKLE_PKG
1641 WINSPARKLE_DIR=$(WIRESHARK_LIB_DIR)\WinSparkle-$(WINSPARKLE_PKG)
1642 WINSPARKLE_CONFIG=^#define HAVE_SOFTWARE_UPDATE 1
1643 WINSPARKLE_CFLAGS=/I$(WINSPARKLE_DIR)
1644 WINSPARKLE_LIBS=$(WINSPARKLE_DIR)\WinSparkle.lib
1645 !ELSE
1646 WINSPARKLE_DIR=
1647 WINSPARKLE_CONFIG=
1648 WINSPARKLE_CFLAGS=
1649 WINSPARKLE_LIBS=
1650 !ENDIF
1651
1652 !IFDEF ENABLE_LIBWIRESHARK
1653 # Link plugins with the import library of libwireshark.dll
1654 LINK_PLUGINS_WITH_LIBWIRESHARK=USE
1655 !ELSE
1656 LIBWIRESHARK_CONFIG=
1657 !ENDIF
1658
1659 # Construct the path
1660 PATH=$(PATH);$(CYGWIN_PATH);$(GTK_DIR)\bin;$(GETTEXT_DIR)\bin;$(ZLIB_PATH);$(ADNS_PATH)
1661
1662 INET6_CONFIG=^#define INET6 1
1663
1664 NTDDNDIS_CONFIG=^#define HAVE_NTDDNDIS_H 1