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