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