One more place where setcap does not need inheritance
[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 2005"
104 # Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
105 #MSVC_VARIANT=MSVC2005
106
107 # "Microsoft Visual C++ 2005 Express Edition"
108 # needs additional Platform SDK installation
109 # Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
110 #MSVC_VARIANT=MSVC2005EE
111
112 # "Microsoft .Net Framework 2.0 SDK"
113 # needs additional Platform SDK installation
114 # Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
115 #MSVC_VARIANT=DOTNET20
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. Sep 20,2012: *Beta*: Build with VC11 (2012) succeeds; Seems OK: Minimally tested;
137 ##        win32.mak is apparently not part of the MS 2012EE install;
138 ##        To build Windows Wireshark, win32.mak must be obtained*
139 ##        and copied to a dir specified in the Windows Environment
140 ##        variable 'include' (or to a dir added to the list in 'include').
141 ##        *One possibility: download the Windows 7 Platform SDK and copy
142 ##         win32.mak from ...\Microsoft SDKs\Windows\v7.[something]\include
143 ##         See: http://ask.wireshark.org/questions/14343/setting-development-project-under-visual-studio-2012
144 ##    2. Dec 28,2012: "VS2012 Update 1" is required to use VS 2012 to build an .exe which
145 ##        will run on Windows XP (as well as on later versions of Windows).
146 ##        ToDo: It appears that some special setup is required to to do this.
147 ##          https://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx
148 ##    3. Feb 07,2013: [WMeier] I've noted no problems to date with Wireshark built with VS2012
149 ##        based upon a fair amount of use while doing Wireshark testing and debugging.
150 ##
151 #MSVC_VARIANT=MSVC2012EE
152
153 # "Microsoft Visual Studio 2012"
154 # Visual C++ 11.0, _MSC_VER 1700, msvcr110.dll
155 #MSVC_VARIANT=MSVC2012
156
157 # "Microsoft Visual Studio 2013"
158 # Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
159 #MSVC_VARIANT=MSVC2013
160
161 # "Microsoft Visual Studio 2013 Express Edition"
162 # Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
163 #MSVC_VARIANT=MSVC2013EE
164
165 # The default if we haven't set a system environment variable or
166 # uncommented an entry above.  We default to the version recommended
167 # in the Developer's Guide, namely MSVC++ 2010 Express Edition.
168 !IFNDEF MSVC_VARIANT
169 MSVC_VARIANT=MSVC2010EE
170 !ENDIF
171
172 #
173 # Optional: To compile some time critical code from assembler instead of C
174 #
175 # If you have the NASM compiler, set this to the NASM executable.
176 # http://nasm.sourceforge.net/
177 #
178 # If you don't have NASM, comment this line out, so that NASM
179 # isn't defined.
180 #
181 NASM=$(WIRESHARK_LIB_DIR)\nasm-2.09.08\nasm.exe
182
183 #
184 # Optional: the Python library enables scripting support.
185 #
186 # If you don't have the Python library, comment this line out, so that
187 # PYTHON_EMBED isn't defined.
188 #
189 # NOTE: The Python library must have been compiled with the same
190 # compiler (MSVC_VARIANT) as Wireshark. Known python.org Python
191 # CRT versions:
192 #
193 # Python version    CRT (32-bit)    CRT (64-bit)
194 # 2.4.4             7.1             ?
195 # 2.6.1             9.0             ?
196 # 2.6.2             ?               9.0
197 # 2.7.1             9.0             9.0
198 # 3.2.2             9.0             9.0
199 #
200 # If you versions of Python and Visual C++ use different CRTs
201 # comment this out.
202 #
203 # XXX The DLL path in epan/wspython/wspy_libws.py likely needs to
204 # be fixed before this is enabled by default.
205 #PYTHON_EMBED=1
206
207 #
208 # Optional: the Python interpreter is used as part of the buildsystem
209 #
210 # This will override the automatic detection below.
211 #PYTHON_VER=27
212 #PYTHON_DIR=C:\Python$(PYTHON_VER)
213
214 #
215 # If you don't have the native Python package installed, you can use
216 # the Cygwin version (not recommended)
217 #
218 #PYTHON=env python
219
220 # Santity check: native vs Cygwin Python options
221 !IF DEFINED(PYTHON) && DEFINED(PYTHON_DIR)
222 !ERROR PYTHON and PYTHON_DIR cannot be specified at the same time
223 !ENDIF
224
225 # Find native Python automatically if PYTHON(_DIR) wasn't defined
226 !IF !DEFINED(PYTHON) && !DEFINED(PYTHON_DIR)
227 !IF EXIST(c:\Python27\python.exe)
228 PYTHON_VER=27
229 !ELSE IF EXIST(c:\Python26\python.exe)
230 PYTHON_VER=26
231 !ELSE IF EXIST(c:\Python25\python.exe)
232 PYTHON_VER=25
233 !ELSE IF EXIST(c:\Python24\python.exe)
234 PYTHON_VER=24
235 !ENDIF
236
237 !IF DEFINED(PYTHON_VER)
238 PYTHON_DIR=C:\Python$(PYTHON_VER)
239 !ENDIF
240 !ENDIF
241
242 !IF DEFINED(PYTHON_DIR)
243 PYTHON="$(PYTHON_DIR)\python.exe"
244 PATH=$(PYTHON_DIR);$(PATH)
245 !ENDIF
246
247 #### Save files as pcap-ng by default. Comment out to use pcap instead. ####
248 PCAP_NG_DEFAULT=^#define PCAP_NG_DEFAULT 1
249
250 ##### To Use packet editor uncomment this line ####
251 ### Experimental - work in progress
252 WANT_PACKET_EDITOR=^#define WANT_PACKET_EDITOR 1
253
254 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
255 ##### Win32 Libraries #####
256 #
257 # Mandatory: GLib settings
258 #
259 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
260 #
261 GLIB_VERSION=2.0
262
263 #
264 # Mandatory: GLib, GTK & related library settings
265 #
266 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
267 #
268 # If you want building with GTK+, set GTK_DIR to the pathname of the
269 # directory in which the "include" and "lib" directories reside.
270 #
271 # Set the name to gtk2 if you want to use gtk2
272 GTK_NAME=gtk3
273 GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)
274
275
276 # These macros are used by the nsis installer script and by the install target.
277 #EXPAT_DLL=libexpat-1.dll
278 FFI_DLL=libffi-5.dll
279 FONTCONFIG_DLL=libfontconfig-1.dll
280 FREETYPE_DLL=libfreetype-6.dll
281 INTL_DLL=libintl-8.dll
282 JASPER_DLL=libjasper-1.dll
283 JPEG_DLL=libjpeg-8.dll
284 LZMA_DLL=liblzma-5.dll
285 PIXMAN_DLL=libpixman-1-0.dll
286 PNG_DLL=libpng15-15.dll
287 TIFF_DLL=libtiff-5.dll
288 XML_DLL=libxml2-2.dll
289
290 # This macro is used by the setup target.
291 !IF "$(GTK_NAME)" == "gtk2"
292 GDK_DLL=libgdk-win32-2.0-0.dll
293 GTK_DLL=libgtk-win32-2.0-0.dll
294 #GTK_PKG=2.24.10-2.7
295 GTK_PKG=2.24.14-1.1
296 PKG_SUFIX=ws
297 !ELSE
298 GDK_DLL=libgdk-3-0.dll
299 GTK_DLL=libgtk-3-0.dll
300 PKG_SUFIX=ws
301 GTK_PKG=3.4.4-2.1
302 !ENDIF
303
304 #
305 # Mandatory: Version numbers of GTK and pango.
306 #
307 # (MAJOR + MINOR Version number but without MICRO version number)
308 # These macros are used by the nsis installer script and by the setup target.
309 #
310 !IF "$(GTK_NAME)" == "gtk2"
311 GTK_INST_VERSION=2.24
312 !ELSE
313 GTK_INST_VERSION=3.4
314 !ENDIF
315
316 #
317 # Recommended: Qt
318 #
319 # This must point to a top-level Qt directory. QMake should be in
320 # $(QT5_BASE_DIR)\bin
321 #
322 # Qt's various paths are hardcoded but with care you can relocate your
323 # installation directory:
324 # http://stackoverflow.com/questions/913642/qmake-and-qt-install-prefix-how-can-i-select-a-new-location-for-qt-library
325 #
326 #QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
327 !IF !DEFINED(QT5_BASE_DIR)
328 # Wireshark custom
329 !IF EXIST(C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws)
330 QT5_BASE_DIR=C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws
331 # Digia official
332 !ELSE IF EXIST(C:\Qt\Qt5.1.1\5.1.1\msvc2010)
333 QT5_BASE_DIR=C:\Qt\Qt5.1.1\5.1.1\msvc2010
334 # Digia official, installed in $(WIRESHARK_LIB_DIR)
335 !ELSE IF EXIST($(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010)
336 QT5_BASE_DIR=$(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010
337 !ENDIF
338 !ENDIF
339
340 #
341 # Recommended: WinPcap developer's pack to capture network traffic.
342 #
343 # If you have the WinPcap developer's pack (at least version 3.0),
344 # set this to the directory in which the WinPcap developer's pack resides.
345 #
346 # If you don't have the WPdpack, comment this line out, so that
347 # PCAP_DIR isn't defined.
348 #
349 PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
350 # This macro is used by the nsis installer script, by the u3/portable apps and by the setup target.
351 WINPCAP_VERSION=4_1_3
352 WPD_VERSION=4_1_2
353
354 #
355 # Optional: WinPcap remote capture support and new API
356 # (pcap_open(), pcap_findalldevs_ex(), etc.)
357 #
358 PCAP_REMOTE=1
359
360 #
361 # Optional: The ZLib enables unzipping of gzip compressed capture files
362 # "on the fly".
363 #
364 # If you have Zlib, set this to directory in which the Zlib headers
365 # and .lib file are stored.
366 #
367 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
368 # defined.
369 # EXperimental only use zlib 1.2.5 on win32 for now
370 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
371
372 #
373 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
374 # name resolvings.
375 #
376 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
377 # .lib file is stored.
378 #
379 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
380 # isn't defined.
381 #
382 # If C_ARES_DIR is defined below, it will override this setting.
383 #
384 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
385
386 #
387 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
388 # name resolvings.
389 #
390 # If you have c-ares, set this to the directory in which the c-ares
391 # .lib file is stored. Setting this will override ADNS_DIR above. You
392 # can't have both.
393 #
394 # If you're using Visual C++ 6.0, you'll have to use a platform SDK that
395 # defines socklen_t, such as Windows Server 2003 PSDK.
396 #
397 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
398 # isn't defined.
399 #
400 C_ARES_PKG=1.9.1-1
401
402 #
403 # Optional: the GnuTLS library enables ssl decryption.
404 #
405 # If you have the GnuTLS library, set this to the package version.
406 #
407 # If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
408 # isn't defined.
409 #
410 # Platform SDK conflicts with openssl.h header
411 GNUTLS_PKG=2.12.18-1.2
412
413 #
414 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
415 #
416 # If you have the kerberos for windows (mit) library, set this to the
417 # directory where the kfw package is stored.
418 #
419 # If you don't have KFW, comment this line out, so that KFW_DIR
420 # isn't defined.
421 #
422 KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3-2-2-i386-ws-vc6
423
424 #
425 # Optional: the Nettle library enables ??? decryption.
426 #
427 # If you have the Nettle encryption library, set this to the
428 # directory in which the nettle package is stored.
429 #
430 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
431 # isn't defined.
432 #
433 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
434
435 #
436 # Optional: the LUA library enables scripting support.
437 #
438 # If you have the LUA library, set this to the directory in which
439 # the LUA package is stored.
440 #
441 # If you don't have LUA, comment this line out, so that LUA_DIR
442 # isn't defined.
443 #
444 LUA_DIST=5_1_4_Win32_dll6
445 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
446
447 #
448 # Optional: the PORTAUDIO library enables audio output for RTP streams.
449 #
450 # If you have the PORTAUDIO library (used for rtp_player), set this to
451 # the directory in which the PORTAUDIO library is stored.
452 #
453 # If you don't have PORTAUDIO, comment this line out, so that
454 # PORTAUDIO_DIR isn't defined.
455 #
456 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
457 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
458
459 #
460 # Version number of PortAudio
461 #
462 #PORTAUDIO_VERSION=18
463 PORTAUDIO_VERSION=19
464
465 #
466 # Optional: AirPcap developer's pack to capture wireless network traffic
467 # incl. 802.11 management frames.
468 #
469 # If you have the AirPcap developer's pack, set this to the directory
470 # in which the AirPcap developer's pack resides.
471 #
472 # If you don't have the AirPcap developer's pack, comment this line out,
473 # so that AIRPCAP_DIR isn't defined.
474 #
475 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
476
477 #
478 # Optional: LIBSMI, System Management Interface
479 #
480 # Used for oid-name resolution for SNMP and other protocols
481 #
482 SMI_PKG=svn-40773
483
484 #
485 # Optional: GeoIP, IP address database lookups
486 #
487 # Used to map IP addresses to MaxMind GeoIP database entries
488 #
489 GEOIP_PKG=1.5.1-2
490
491 #
492 # Optional: WinSparkle, software updates
493 #
494 # Used for automatic software updates
495 #
496 WINSPARKLE_PKG=0.3-44-g2c8d9d3-win32ws
497
498 !else
499 ##### Win64 Libraries #####
500 #
501 # Mandatory: GLib settings
502 #
503 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
504 #
505 GLIB_VERSION=2.0
506
507 #
508 # Mandatory: GLib, GTK & related library settings
509 #
510 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
511 #
512 # If you want building with GTK+, set GTK_DIR to the pathname of the
513 # directory in which the "include" and "lib" directories reside.
514 #
515 #
516 # Set the name to gtk3 if you want to use gtk3 - (experimental ?)
517 GTK_NAME=gtk2
518 GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)
519
520 # These macros are used by the nsis installer script and by the install target.
521 #EXPAT_DLL=libexpat-1.dll
522 FFI_DLL=libffi-5.dll
523 FONTCONFIG_DLL=libfontconfig-1.dll
524 FREETYPE_DLL=libfreetype-6.dll
525 INTL_DLL=libintl-8.dll
526 JASPER_DLL=libjasper-1.dll
527 JPEG_DLL=libjpeg-8.dll
528 LZMA_DLL=liblzma-5.dll
529 PIXMAN_DLL=libpixman-1-0.dll
530 PNG_DLL=libpng15-15.dll
531 TIFF_DLL=libtiff-5.dll
532 XML_DLL=libxml2-2.dll
533
534 # These macros are used by the setup target.
535 !IF "$(GTK_NAME)" == "gtk2"
536 GDK_DLL=libgdk-win32-2.0-0.dll
537 GTK_DLL=libgtk-win32-2.0-0.dll
538 #GTK_PKG=2.24.10-2.7
539 GTK_PKG=2.24.14-1.1
540 PKG_SUFIX=ws
541 !ELSE
542 GDK_DLL=libgdk-3-0.dll
543 GTK_DLL=libgtk-3-0.dll
544 PKG_SUFIX=ws
545 GTK_PKG=3.4.4-2.1
546 !ENDIF
547
548 #
549 # Mandatory: Version numbers of GTK and pango.
550 #
551 # (MAJOR + MINOR Version number but without MICRO version number)
552 # These macros are used by the nsis installer script and by the setup target.
553 #
554 !IF "$(GTK_NAME)" == "gtk2"
555 #GTK_INST_VERSION=2.16
556 GTK_INST_VERSION=2.24
557 !ELSE
558 GTK_INST_VERSION=3.4
559 !ENDIF
560
561 #
562 # Recommended: Qt
563 #
564 # This must point to a top-level Qt directory. QMake should be in
565 # $(QT5_BASE_DIR)\bin
566 #
567 # Qt's various paths are hardcoded but with care you can relocate your
568 # installation directory:
569 # http://stackoverflow.com/questions/913642/qmake-and-qt-install-prefix-how-can-i-select-a-new-location-for-qt-library
570 #
571 #QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
572 !IF !DEFINED(QT5_BASE_DIR)
573 # Wireshark custom
574 !IF EXIST(C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws)
575 QT5_BASE_DIR=C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws
576 # Digia official
577 !ELSE IF EXIST(C:\Qt\Qt5.1.1\5.1.1\msvc2010)
578 QT5_BASE_DIR=C:\Qt\Qt5.1.1\5.1.1\msvc2010
579 # Digia official, installed in $(WIRESHARK_LIB_DIR)
580 !ELSE IF EXIST($(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010)
581 QT5_BASE_DIR=$(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010
582 !ENDIF
583 !ENDIF
584
585 #
586 # Recommended: WinPcap developer's pack to capture network traffic.
587 #
588 # If you have the WinPcap developer's pack (at least version 3.0),
589 # set this to the directory in which the WinPcap developer's pack resides.
590 #
591 # If you don't have the WPdpack, comment this line out, so that
592 # PCAP_DIR isn't defined.
593 #
594 PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
595 # This macro is used by the nsis installer script, by the u3/portable apps and by the setup target.
596 WINPCAP_VERSION=4_1_3
597 WPD_VERSION=4_1_2
598
599 #
600 # Optional: WinPcap remote capture support and new API
601 # (pcap_open(), pcap_findalldevs_ex(), etc.)
602 #
603 PCAP_REMOTE=1
604
605 #
606 # Optional: The ZLib enables unzipping of gzip compressed capture files
607 # "on the fly".
608 #
609 # If you have Zlib, set this to directory in which the Zlib headers
610 # and .lib file are stored.
611 #
612 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
613 # defined.
614 #
615 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
616
617 #
618 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
619 # name resolvings.
620 #
621 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
622 # .lib file is stored.
623 #
624 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
625 # isn't defined.
626 #
627 # If C_ARES_DIR is defined below, it will override this setting.
628 #
629 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
630
631 #
632 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
633 # name resolvings.
634 #
635 # If you have c-ares, set this to the directory in which the c-ares
636 # .lib file is stored. Setting this will override ADNS_DIR above. You
637 # can't have both.
638 #
639 # If you're using Visual C++ 6.0, you'll have to use a platform SDK that
640 # defines socklen_t, such as Windows Server 2003 PSDK.
641 #
642 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
643 # isn't defined.
644 #
645 C_ARES_PKG=1.9.1-1
646
647 #
648 # Optional: the GnuTLS library enables ssl decryption.
649 #
650 # If you have the GnuTLS library, set this to the package version.
651 #
652 # If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
653 # isn't defined.
654 #
655 # Platform SDK conflicts with openssl.h header
656 GNUTLS_PKG=2.12.18-1.2-1
657
658 #
659 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
660 #
661 # If you have the kerberos for windows (mit) library, set this to the
662 # directory where the kfw package is stored.
663 #
664 # If you don't have KFW, comment this line out, so that KFW_DIR
665 # isn't defined.
666 #
667 #KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3.2.2-ws1
668
669 #
670 # Optional: the Nettle library enables ??? decryption.
671 #
672 # If you have the Nettle encryption library, set this to the
673 # directory in which the nettle package is stored.
674 #
675 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
676 # isn't defined.
677 #
678 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
679
680 #
681 # Optional: the LUA library enables scripting support.
682 #
683 # If you have the LUA library, set this to the directory in which
684 # the LUA package is stored.
685 #
686 # If you don't have LUA, comment this line out, so that LUA_DIR
687 # isn't defined.
688 #
689 LUA_DIST=-5.1.4_Win64_dll10
690 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
691
692 #
693 # Optional: the PORTAUDIO library enables audio output for RTP streams.
694 #
695 # If you have the PORTAUDIO library (used for rtp_player), set this to
696 # the directory in which the PORTAUDIO library is stored.
697 #
698 # If you don't have PORTAUDIO, comment this line out, so that
699 # PORTAUDIO_DIR isn't defined.
700 #
701 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
702 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
703
704 #
705 # Version number of PortAudio
706 #
707 #PORTAUDIO_VERSION=18
708 PORTAUDIO_VERSION=19
709
710 #
711 # Optional: AirPcap developer's pack to capture wireless network traffic
712 # incl. 802.11 management frames.
713 #
714 # If you have the AirPcap developer's pack, set this to the directory
715 # in which the AirPcap developer's pack resides.
716 #
717 # If you don't have the AirPcap developer's pack, comment this line out,
718 # so that AIRPCAP_DIR isn't defined.
719 #
720 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
721
722 #
723 # Optional: LIBSMI, System Management Interface
724 #
725 # Used for oid-name resolution for SNMP and other protocols
726 #
727 SMI_PKG=svn-40773
728
729 #
730 # Optional: GeoIP, IP address database lookups
731 #
732 # Used to map IP addresses to MaxMind GeoIP database entries
733 #
734 GEOIP_PKG=1.5.1-2
735
736 #
737 # Optional: WinSparkle, software updates
738 #
739 # Used for automatic software updates
740 #
741 WINSPARKLE_PKG=0.3-44-g2c8d9d3-win64ws
742
743 !endif
744 ##### win32 / win64 #####
745
746 !IF "$(GTK_NAME)" == "gtk2"
747 GTK_ETC_DIR=etc\gtk-2.0
748 GTK_ENGINES_DIR=lib\gtk-2.0\$(GTK_LIB_DIR)\engines
749 GTK_MODULES_DIR=lib\gtk-2.0\modules
750 GTK_THEMES_DIR=share\themes\MS-Windows\gtk-2.0
751 !ELSE
752 GTK_ETC_DIR=etc\gtk-3.0
753 GTK_SCHEMAS_DIR=\share\glib-2.0\schemas
754 !ENDIF
755
756
757 ##### Tools #####
758
759 # Set the following mandatory commands to find the tools.
760 # The easiest way is to use the corresponding packages from cygwin.
761
762 # Set up the path to the cygwin binaries
763 CYGWIN_PATH=c:\cygwin\bin
764
765 # command for a shell (cygwin's bash package recommended)
766 SH_PROG=bash
767
768 # bash versions after 3.1.6 need the 'igncr' shell option to be able to
769 #  process scripts in windows 'native format' (dos crlf format).
770 # The following !IF results in the option being used only if it is available
771 #  since using it on bash version 3.1.6 (or earlier) is not required and
772 #  will cause an error message.
773 !if "$(SH_PROG)"=="bash" && [$(CYGWIN_PATH)\bash -c "set -o igncr" 2>nul: ] == 0
774 SH_FLAGS=-o igncr
775 !endif
776
777 SH=$(SH_PROG) $(SH_FLAGS)
778
779
780 # command for perl (cygwin's perl package recommended)
781 PERL=perl
782
783 # command for pod2man and pod2html
784 # (part of the perl package, usually leave these unchanged)
785 POD2MAN=$(SH) pod2man
786 POD2HTML=$(SH) pod2html
787
788 # command for sed (cygwin's sed recommended)
789 SED=sed
790
791 # command for lex/flexx. Cygwin's flex recommended. Chocolatey has a
792 # "Win flex-bison" package but it is currently unusable without some
793 # manual adjustments to the win_flex and win_bison wrapper scripts.
794 # This is called by tools/runlex.sh and must be a UNIX-style path
795 #LEX=win_flex
796 LEX=flex
797
798 # command for yacc/bison (Cygwin's bison recommended, see flex comments above)
799 #YACC=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"
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