Allow the use of Win flex-bison and document how to do that.
[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 or Chocolatey's win_flex
792 # recommended.
793 # This is called by tools\runlex.sh and must be a UNIX-style path
794
795 # Chocolatey's C:\Chocolatey\bin\win_flex and -\win_bison are
796 # currently unusable without some manual adjustments to the
797 # win_flex and win_bison wrapper scripts. Calling the executables
798 # directly should work.
799
800 #LEX=win_flex
801 #LEX=/cygdrive/c/Chocolatey/lib/winflexbison.2.4.1.20140103/tools/win_flex
802 LEX=flex
803
804 # Command for yacc/bison. Cygwin's bison or Chocolatey's win_bison
805 # recommended.
806 # This is called by nmake and must be a Windows-style path
807
808 #YACC=win_bison
809 #YACC=C:\Chocolatey\lib\winflexbison.2.4.1.20140103\tools\win_bison
810 YACC=bison
811
812 # Commands to convert UNIX line endings to DOS/Windows
813 UNIX2DOS=u2d
814 TEXTIFY=$(SH) $(TOOLS_DIR)/textify.sh
815
816 #
817 # Optional: Build the NSIS installer.
818 #
819 # If NSIS is installed in a standard location (under Program Files
820 # or Program Files (x86)) you shouldn't have to change anything.
821 #
822 # If NSIS is installed in a custom location uncomment the following
823 # line and adjust the path accordingly.
824 #
825
826 #MAKENSIS="\custom\path\to\NSIS\makensis.exe"
827
828 # Find NSIS automatically
829 !IF !DEFINED(MAKENSIS)
830 !IF EXIST("$(PROGRAM_FILES)\NSIS\makensis.exe")
831 MAKENSIS="$(PROGRAM_FILES)\NSIS\makensis.exe"
832 !ELSE IF EXIST("$(PROGRAM_FILES_W6432)\NSIS\makensis.exe")
833 MAKENSIS="$(PROGRAM_FILES_W6432)\NSIS\makensis.exe"
834 !ENDIF
835 !ENDIF
836
837 #
838 # Optional: To build the NSIS PortableApps installer.
839 #
840 # If you have the NSIS Unicode package, set this to the NSIS Unicode executable.
841 #
842 # If you don't have NSIS Unicode, comment this line out, so that
843 # MAKENSIS_UNICODE isn't defined.
844 #
845 MAKENSIS_UNICODE="$(PROGRAM_FILES)\NSIS\Unicode\makensis.exe"
846
847 #
848 # Optional: To build the developers API documentation with doxygen and dot.
849 # Currently experimental, outdated and incomplete.
850 #
851 # You will have to download and install:
852 # Doxygen from: http://www.doxygen.org
853 # Graphviz from: http://www.research.att.com/sw/tools/graphviz/
854 #
855 # If you have doxygen, set this to the doxygen executable.
856 #
857 # If you don't want the developers documentation (or don't have the tools),
858 # comment this line out, so that DOXYGEN isn't defined.
859 #
860 #DOXYGEN="$(PROGRAM_FILES)/doxygen/bin/doxygen.exe"
861
862 #
863 # Recommended: Use the compressed html help format .chm as the Wireshark integrated help.
864 #
865 # The required htmlhelp.h and htmlhelp.lib should be included in versions of MSVC supported by Wireshark
866 #
867 # If you don't want the online help (or don't have the tools),
868 # comment this line out, so that HHC_DIR isn't defined.
869 #
870 HHC_DIR=$(PROGRAM_FILES)\HTML Help Workshop
871
872 #
873 # Optional: To reduce the size of dlls and exes, which is especially useful for USB device distributions (U3, PortableApps)
874 #
875 # If you have the UPX package, set this to the upx.exe executable.
876 #
877 # UPX can be downloaded from:
878 #   http://upx.sourceforge.net/
879 #
880 # If you don't have UPX, or don't want to pack exes and dlls,
881 # comment this line out, so that UPX isn't defined.
882 #
883
884 UPX=$(WIRESHARK_LIB_DIR)\upx303w\upx.exe
885
886 ##### Flags, PATHs and Miscellaneous #####
887
888 # Santity check: Python embedding requires a valid PYTHON_DIR
889 !IF DEFINED(PYTHON_EMBED) && !DEFINED(PYTHON_DIR)
890 !ERROR PYTHON_EMBED requires that PYTHON_DIR is defined
891 !ENDIF
892
893 # "convert" the MSVC variant into the required MSC compiler version
894 !IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
895 MSC_VER_REQUIRED=1400
896 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008" ||  "$(MSVC_VARIANT)" == "MSVC2008EE"
897 MSC_VER_REQUIRED=1500
898 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010" ||  "$(MSVC_VARIANT)" == "MSVC2010EE"
899 MSC_VER_REQUIRED=1600
900 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" ||  "$(MSVC_VARIANT)" == "MSVC2012EE"
901 MSC_VER_REQUIRED=1700
902 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2013" ||  "$(MSVC_VARIANT)" == "MSVC2013EE"
903 MSC_VER_REQUIRED=1800
904 !ELSE
905 !ERROR MSVC_VARIANT unknown
906 !ENDIF
907
908 ## Manifest processing is not needed for VC10 (Visual Studio 2010 C)
909 ## See: http://msdn.microsoft.com/en-us/library/dd293574.aspx
910 !IF ($(MSC_VER_REQUIRED) >= 1400) && ($(MSC_VER_REQUIRED) < 1600)
911 MANIFEST_INFO_REQUIRED=1
912 !ENDIF
913
914 ## VS2012 (VC11): configure subsystem version
915 ## See: https://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx
916 ## (APPVER used in win32.mak to set subsystem version)
917 !IF ($(MSC_VER_REQUIRED) == 1700)
918 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
919 APPVER=5.01
920 !else
921 APPVER=5.02
922 !endif
923 !ENDIF
924
925 # Compiler flags:
926 # /W3                               Warning level 3 (0 less - 4 most, 1 default).
927 # /Zi                               Create .pdb file for debugging.
928 # /FR                               Create .sbr file with complete symbolic information.
929 #                                   add to standard CFLAGS if you want to build the .sbr files
930 #                                     for Wireshark compiles.
931 #                                     Warning: using /FR for Wireshark requires ~1Gig of additional disk space
932 #                                     XXX: provides less functionality for VC8, ... than for previous compilers ?
933 #                                     XXX: .bsc files not usable (not supported ?) with VC10 (Visual Studio 2010) ?
934 # /MD                               Use "multithread- and DLL-specific version" of run-time libraries.
935 #                                    msvc documentation states that /MD causes _MT and _DLL to be defined
936 #                                    See: http://msdn.microsoft.com/en-us/library/2kzt1wy3%28v=VS.90%29.aspx
937 # /D_CRT_SECURE_NO_DEPRECATE        Don't warn for "insecure" calls;
938 #                                     see MSDN "Security Enhancements in the CRT".
939 # /D_CRT_NONSTDC_NO_DEPRECATE       Don't warn for "Deprecated CRT Functions" as MSDN calls this.
940 # /D_BIND_TO_CURRENT_CRT_VERSION=1  Make sure our CRT and manifest versions match.
941 #                                    (http://msdn.microsoft.com/en-us/library/cc664727.aspx)
942 # /DWIN32_LEAN_AND_MEAN             Don't include unnecessary Windows include files (see windows.h).
943 # /MANIFEST:no                      Don't create a SxS manifest. Makes sure our plugins don't load
944 #                                     a second copy of the CRT.
945 # -DPSAPI_VERSION=1                 Programs that must run on earlier versions of Windows as well as Windows 7 and later 
946 #                                   versions should always call this function as GetProcessMemoryInfo. To ensure correct resolution of symbols, 
947 #                                   add Psapi.lib to the TARGETLIBS macro and compile the program with -DPSAPI_VERSION=1. 
948 #                                   To use run-time dynamic linking, load Psapi.dll.
949 #                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms683219(v=vs.85).aspx
950 # -DBUILD_WINDOWS                   Starting from VS2103, GetVersionEx is deprecated and we are recommended to use
951 #                                   VerifyVersionInfo instead
952 #                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms724429(v=vs.85).aspx
953 #                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms725491(v=vs.85).aspx
954 #                                   To continue to use GetVersionEx, we can define BUILD_WINDOWS
955 #
956 ##Note: LOCAL_CFLAGS are flags used for *all* compilations
957 ##      STANDARD_CFLAGS (see below) are flags used just for *Wireshark* compilations
958 !IF "$(MSVC_VARIANT)" == "MSVC2005"   || \
959         "$(MSVC_VARIANT)" == "MSVC2005EE" || \
960         "$(MSVC_VARIANT)" == "DOTNET20"   || \
961         "$(MSVC_VARIANT)" == "MSVC2008"   || \
962         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
963         "$(MSVC_VARIANT)" == "MSVC2010"   || \
964         "$(MSVC_VARIANT)" == "MSVC2010EE" || \
965         "$(MSVC_VARIANT)" == "MSVC2012"   || \
966         "$(MSVC_VARIANT)" == "MSVC2012EE" || \
967         "$(MSVC_VARIANT)" == "MSVC2013"   || \
968         "$(MSVC_VARIANT)" == "MSVC2013EE"
969 LOCAL_CFLAGS=/Zi /W3 /MD /DWIN32_LEAN_AND_MEAN /DMSC_VER_REQUIRED=$(MSC_VER_REQUIRED) \
970              /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE -DPSAPI_VERSION=1
971
972 !IF "$(MSVC_VARIANT)" == "MSVC2013"   || \
973         "$(MSVC_VARIANT)" == "MSVC2013EE"
974 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /DBUILD_WINDOWS
975 !ENDIF
976
977 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
978 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /D_BIND_TO_CURRENT_CRT_VERSION=1
979 !ENDIF
980
981 # Additional compiler warnings to be treated as "Level 3"
982 #  when compiling Wireshark sources. (Selected from "level 4" warnings).
983 ## 4295: array is too small to include a terminating null character
984 WARNINGS_CFLAGS=/w34295
985
986 !ELSE
987 !ERROR MSVC_VARIANT unknown
988 !ENDIF
989
990 # http://msdn.microsoft.com/en-us/library/bb385193.aspx
991 # /MP               Compiles multiple source files by using multiple processes
992 # /MP[processMax]   If you omit the processMax argument, the compiler retrieves the number of effective processors
993 #                   on your computer from the operating system, and creates a process for each processor.
994 #
995 # The following compiler options and language features that are incompatible with the /MP option:
996 #
997 # * #import preprocessor directive
998 # * /E, /EP
999 # * /Gm
1000 # * /showIncludes
1001 # * /Yc
1002 #
1003 !IF     "$(MSVC_VARIANT)" == "MSVC2008"   || \
1004         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
1005         "$(MSVC_VARIANT)" == "MSVC2010"   || \
1006         "$(MSVC_VARIANT)" == "MSVC2010EE" || \
1007         "$(MSVC_VARIANT)" == "MSVC2012"   || \
1008         "$(MSVC_VARIANT)" == "MSVC2012EE" || \
1009         "$(MSVC_VARIANT)" == "MSVC2013"   || \
1010         "$(MSVC_VARIANT)" == "MSVC2013EE"
1011 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /MP
1012 !ENDIF
1013
1014 # Optional: Static analysis. Only supported in the full-frontal MSVC editions.
1015 # http://msdn.microsoft.com/en-us/library/ms182025.aspx
1016
1017 !IFDEF ENABLE_CODE_ANALYSIS
1018 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /analyze:WX-
1019 !ENDIF
1020
1021 #STANDARD_CFLAGS are flags used for *Wireshark* compiles (not stuff like lemon, etc)
1022 STANDARD_CFLAGS=/DWINPCAP_VERSION=$(WINPCAP_VERSION) $(LOCAL_CFLAGS) $(WARNINGS_CFLAGS)
1023
1024 # Optional: Define WIRESHARK_GENERATE_BSC_FILE to generate .sbr files for input to bscmake
1025 !IFDEF WIRESHARK_GENERATE_BSC_FILE
1026 STANDARD_CFLAGS= $(STANDARD_CFLAGS) /FR
1027 !ENDIF
1028
1029 #Comment out the following if warnings are not to be treated as errors
1030 WARNINGS_ARE_ERRORS=-WX
1031
1032 # Linker flags:
1033 # /DEBUG  generate debug info
1034 # /PROFILE generate map file(s) for profiling
1035 # /DEFAULTLIB:xxx use xxx as the standard C library
1036 # /NODEFAULTLIB:xxx don't use xxx as the standard C library
1037 #
1038 LOCAL_LDFLAGS=/DEBUG /MACHINE:$(TARGET_MACHINE)
1039 DLL_LDFLAGS =
1040 !IFDEF MANIFEST_INFO_REQUIRED
1041 DLL_LDFLAGS = /MANIFEST:no
1042 !ENDIF
1043
1044 # Enable Safe Exception Handler.
1045 # http://msdn.microsoft.com/en-us/magazine/cc337897.aspx
1046 !IF $(MSC_VER_REQUIRED) >= 1300
1047 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /GS
1048 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
1049 LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /SafeSEH
1050 !ENDIF
1051 !ENDIF
1052
1053 # Enable ASLR. Requires VS2008 or later.
1054 # http://blogs.msdn.com/b/vcblog/archive/2009/05/21/dynamicbase-and-nxcompat.aspx
1055 # DEP (/NXCompat) is handled in init_process_policies() via SetProcessDEPPolicy.
1056
1057 # ASLR http://msdn.microsoft.com/en-us/library/bb384887.aspx
1058 !IF $(MSC_VER_REQUIRED) >= 1500
1059 LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /DYNAMICBASE /FIXED:no
1060 !ENDIF
1061
1062 PLUGIN_LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS) $(DLL_LDFLAGS)
1063
1064 #
1065 # According to http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=403
1066 # XCOPY under Windows NT doesn't support the "/Y" flag.  This works
1067 # around that bug.
1068 # XXX - This apparently doesn't work for some versions of nmake:
1069 # http://support.microsoft.com/default.aspx?scid=kb;en-us;86814
1070 # It looks like we'll have to call "set copycmd=/y" before we run xcopy.
1071 COPYCMD=/y
1072
1073 #
1074 # If you don't want to build libwireshark.dll, you should comment out the
1075 # following line. (Note: for plugin support this option must stay activated)
1076 ENABLE_LIBWIRESHARK=USE
1077
1078 #
1079 # install (debug) directory for Wireshark (relative to your source dir)
1080 INSTALL_DIR=wireshark-gtk2
1081
1082
1083
1084 ##### C-Runtime Redistributable #####
1085 #
1086 # The C-Runtime since Version 7 must be shipped together with
1087 # the program installer, to avoid missing msvcr*.dll files on
1088 # the target machine.
1089 #
1090 # The location of these files differ on the various compiler
1091 # packages, the following will use the default paths depending
1092 # on the package version.
1093 #
1094
1095 # You can either place the redistributable in its own platform-
1096 # and compiler-specific directory or in the top-level library
1097 # directory.
1098 # Microsoft maintains a list of the latest redistributables in
1099 # KB 20197667: http://support.microsoft.com/kb/2019667
1100 !IF EXIST("$(WIRESHARK_LIB_DIR)\vcredist_$(MSVC_VARIANT)")
1101 VCREDIST_DIR=$(WIRESHARK_LIB_DIR)\vcredist_$(MSVC_VARIANT)
1102 !ELSE
1103 VCREDIST_DIR=$(WIRESHARK_LIB_DIR)
1104 !ENDIF
1105
1106 !IF "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
1107 #
1108 # For 64-bit platforms, we don't create portable packages and therefore
1109 # don't have to worry that "Using the Visual C++ Redistributable
1110 # Package" requires that an installer be run to install that package,
1111 # so we use that method to make the C runtime available.
1112 #
1113 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1114
1115 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"
1116 #
1117 # For MSVC 2005 non-Express Edition, we "Install a particular Visual C++
1118 # assembly as a private assembly for the application", by copying
1119 # the contents of the Microsoft.VC80.CRT folder to the target directory.
1120 # This is done to reduce the size of the installer; it also makes
1121 # a portable version work, as the C runtime doesn't have to be
1122 # installed on the target machine.
1123 #
1124 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 8\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC80.CRT\*.*
1125
1126 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20" || "$(MSVC_VARIANT)" == "MSVC2008EE"
1127 #
1128 # For MSVC 2005 Express Edition, for the .NET Framework 2.0 SDK, and
1129 # for MSVC 2008 Express Edition, we "Use the Visual C++ Redistributable
1130 # Package", because they don't provide the Microsoft.VC80.CRT folder.
1131 #
1132 # They also don't provide the redistributable package, so you need to
1133 # download the appropriate version of the redistributable package,
1134 # vcredist_x86.exe, vcredist_x64.exe, or vcredist_ia64.exe, from
1135 # Microsoft first, and copy it to the lib folder!!!
1136 #
1137 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1138
1139 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008"
1140 #
1141 # For MSVC 2008 non-Express Edition, we "Install a particular Visual C++
1142 # assembly as a private assembly for the application", by copying
1143 # the contents of the Microsoft.VC90.CRT folder to the target directory.
1144 # This is done to reduce the size of the installer; it also makes
1145 # a portable version work, as the C runtime doesn't have to be
1146 # installed on the target machine.
1147 #
1148 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 9.0\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC90.CRT\*.*
1149
1150 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010EE"
1151 #
1152 # For MSVC 2010 Express Edition, we "Use the Visual C++ Redistributable
1153 # Package", because it doesn't provide the Microsoft.VC80.CRT folder.
1154 #
1155 # It also doesn't provide the redistributable package, so you need to
1156 # download the appropriate version of the redistributable package,
1157 # vcredist_x86.exe or vcredist_x64.exe, from Microsoft first, and copy
1158 # it to the lib folder!!!
1159 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1160 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010"
1161 #
1162 # For MSVC 2010 non-Express Edition, we "Install a particular Visual C++
1163 # assembly as a private assembly for the application", by copying
1164 # the contents of the Microsoft.VC100.CRT folder to the target directory.
1165 # This is done to reduce the size of the installer; it also makes
1166 # a portable version work, as the C runtime doesn't have to be
1167 # installed on the target machine.
1168 #
1169 # Note: for what it's worth, Microsoft recommends "Using the Visual C++
1170 # Redistributable Package", rather than "Installing a particular Visual
1171 # C++ assembly as a private assembly for the application", starting
1172 # with Visual Studio 2010.
1173 #
1174 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 10.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC100.CRT\*.*
1175 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" || "$(MSVC_VARIANT)" == "MSVC2012EE"
1176 #
1177 # EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
1178 #
1179 # For MSVC 2012, we "Install a particular Visual C++
1180 # assembly as a private assembly for the application", by copying
1181 # the contents of the Microsoft.VC110.CRT folder to the target directory.
1182 # This is done to reduce the size of the installer; it also makes
1183 # a portable version work, as the C runtime doesn't have to be
1184 # installed on the target machine.
1185 #
1186 # Note: for what it's worth, Microsoft recommends "Using the Visual C++
1187 # Redistributable Package", rather than "Installing a particular Visual
1188 # C++ assembly as a private assembly for the application", starting
1189 # with Visual Studio 2010.
1190 #
1191 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 11.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC110.CRT\*.*
1192 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2013" || "$(MSVC_VARIANT)" == "MSVC2013EE"
1193 #
1194 # EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
1195 #
1196 # For MSVC 2013, we "Install a particular Visual C++
1197 # assembly as a private assembly for the application", by copying
1198 # the contents of the Microsoft.VC120.CRT folder to the target directory.
1199 # This is done to reduce the size of the installer; it also makes
1200 # a portable version work, as the C runtime doesn't have to be
1201 # installed on the target machine.
1202 #
1203 # Note: for what it's worth, Microsoft recommends "Using the Visual C++
1204 # Redistributable Package", rather than "Installing a particular Visual
1205 # C++ assembly as a private assembly for the application", starting
1206 # with Visual Studio 2010.
1207 #
1208 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 12.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC120.CRT\*.*
1209 !ELSE
1210 !ERROR MSVC_VARIANT unknown
1211 !ENDIF
1212
1213 # This is still optional yet we define it above for all users.
1214 # So, don't check if it exists...
1215 #!IF DEFINED(VCREDIST_EXE) && ! EXIST("$(VCREDIST_EXE)")
1216 #!ERROR Can't find $(VCREDIST_EXE). Have you downloaded it from Microsoft? \
1217 #See the developer's guide section "C-Runtime "Redistributable" files" for details how to get it
1218 #!ENDIF
1219
1220 ##### Advanced: Docbook/XML documentation generation #####
1221 # If you want to generate the Docbook/XML based docs (User's and Developer's
1222 # Guide, ...), you'll need some additional tools / libraries compared to the
1223 # rest of the build process.
1224 #
1225 # FOR DETAILED INSTRUCTIONS TO GENERATE THE DOCS, SEE: docbook\README.txt.
1226 #
1227 # If you don't call the Makefile.nmake in the docbook dir to generate the
1228 # docs, the following settings in this section will have no effect.
1229
1230 # formatting objects processor executable
1231 # Comment this out if you don't have fop installed or you don't want the docs
1232 # in PDF format.
1233 #
1234 # You may want to install the FOP hyphenation patterns from
1235 # http://offo.sourceforge.net/hyphenation/
1236 !IFNDEF FOP
1237 FOP=fop-1.0\fop.bat
1238 !ENDIF
1239
1240 # Additional options to fop.
1241 FOP_OPTS=-Xmx256m
1242
1243 # html help compiler
1244 # Comment this out if you don't have hhc.exe or you don't want the docs in
1245 # .chm format.
1246 #
1247 # Beware: hhc.exe is NOT part of the MSVC packages in HHC_DIR mentioned above,
1248 # so you'll need to install the HTML Help Workshop for this.
1249 HHC_EXE="$(HHC_DIR)\hhc.exe"
1250
1251 # html to text converter for text version of release notes, e.g. elinks.
1252 # This could also be "lynx", or "true" if neither elinks nor lynx is installed
1253 # (cygwin: lynx works, elinks not available, links and true doesn't produce output)
1254 #HTML2TXT=elinks -dump -dump-width 72
1255 ##HTML2TXT=links -dump -width 72 ## XXX: Fails: For links -dump requires 'url' (filename) arg.
1256 #HTML2TXT=lynx -dump -width=72 -nolist -stdin
1257
1258 !IFNDEF HTML2TXT
1259 HTML2TXT=$(PYTHON) $(TOOLS_DIR)\html2text.py --width=72 --no-links
1260 !ENDIF
1261
1262 # the XSL processor (part of cygwin's libxslt package)
1263 XSLTPROC="xsltproc"
1264
1265 # the XML validator (part of cygwin's libxml2 package)
1266 XMLLINT="xmllint"
1267
1268 # Asciidoc converter (part of cygwin's asciidoc package). In order to build
1269 # the release notes you must have the Cygwin asciidoc and lynx packages
1270 # installed.
1271 A2X=a2x
1272 LYNX=lynx
1273
1274 ##############################################################################
1275 #
1276 # You should not have to change anything below this comment.
1277 # If you do, it's a deficiency in the Makefile.nmake files;
1278 # either tell wireshark-dev@wireshark.org about it, including
1279 # details of why you had to change it, or fix config.nmake
1280 # and any Makefile.nmake files that need to be changed, and
1281 # send us the patches, along with details of why the change
1282 # was necessary.
1283 #
1284 ##############################################################################
1285
1286 #
1287 # The RC_VERSION should be comma-separated, not dot-separated,
1288 # as per Graham Bloice's message in
1289 #
1290 #       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
1291 #
1292 # "The RC_VERSION variable in config.nmake should be comma separated.
1293 # This allows the resources to be built correctly and the version
1294 # number to be correctly displayed in the explorer properties dialog
1295 # for the executables, and XP's tooltip, rather than 0.0.0.0."
1296 #
1297
1298 VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)$(VERSION_EXTRA)
1299 RC_VERSION=$(VERSION_MAJOR),$(VERSION_MINOR),$(VERSION_MICRO),$(VERSION_BUILD)
1300 PRODUCT_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO).$(VERSION_BUILD)
1301
1302 WTAP_VERSION=$(WTAP_VERSION_MAJOR).$(WTAP_VERSION_MINOR).$(WTAP_VERSION_MICRO)
1303 RC_WTAP_VERSION=$(WTAP_VERSION_MAJOR),$(WTAP_VERSION_MINOR),$(WTAP_VERSION_MICRO)
1304 FTAP_VERSION=$(FTAP_VERSION_MAJOR).$(FTAP_VERSION_MINOR).$(FTAP_VERSION_MICRO)
1305 RC_FTAP_VERSION=$(FTAP_VERSION_MAJOR),$(FTAP_VERSION_MINOR),$(FTAP_VERSION_MICRO)
1306
1307 # GLib
1308 GLIB_CFLAGS=/I$(GTK_DIR)\include\glib-$(GLIB_VERSION) \
1309         /I$(GTK_DIR)\lib\glib-$(GLIB_VERSION)\include \
1310         -DG_DISABLE_DEPRECATED \
1311         -DG_DISABLE_SINGLE_INCLUDES
1312 GLIB_LIBS=$(GTK_DIR)\lib\glib-$(GLIB_VERSION).lib \
1313         $(GTK_DIR)\lib\gmodule-$(GLIB_VERSION).lib \
1314         $(GTK_DIR)\lib\gobject-$(GLIB_VERSION).lib
1315 GTHREAD_LIBS=$(GTK_DIR)\lib\gthread-$(GLIB_VERSION).lib
1316
1317
1318 # 2.18 was no good(Theming problem)
1319 !IF "$(GTK_INST_VERSION)" == "2.24" || "$(GTK_INST_VERSION)" == "2.22" || "$(GTK_INST_VERSION)" == "2.16" || "$(GTK_INST_VERSION)" == "2.14"
1320
1321 # GTK+
1322 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-2.0 \
1323         /I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
1324         /I$(GTK_DIR)\lib\gtk-2.0\include \
1325         /I$(GTK_DIR)\include\atk-1.0 \
1326         /I$(GTK_DIR)\include\cairo \
1327         /I$(GTK_DIR)\include\pango-1.0 \
1328         -DGDK_DISABLE_DEPRECATED \
1329         -DGDK_PIXBUF_DISABLE_DEPRECATED \
1330         -DGTK_DISABLE_DEPRECATED \
1331         -DGTK_DISABLE_SINGLE_INCLUDES \
1332         -DGSEAL_ENABLE
1333 GTK_LIBS=$(GTK_DIR)\lib\gtk-win32-2.0.lib \
1334         $(GTK_DIR)\lib\gdk-win32-2.0.lib \
1335         $(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
1336         $(GTK_DIR)\lib\cairo.lib \
1337         $(GTK_DIR)\lib\pango-1.0.lib \
1338         $(GTK_DIR)\lib\pangocairo-1.0.lib \
1339         $(GLIB_LIBS)
1340
1341 GTK_LIB_DIR=2.10.0
1342
1343 !IFDEF PNG_DLL
1344 NEED_PNG_DLL=USE
1345 !ENDIF
1346 !IFDEF JPEG_DLL
1347 NEED_JPEG_DLL=USE
1348 !ENDIF
1349 !IFDEF TIFF_DLL
1350 NEED_TIFF_DLL=USE
1351 !ENDIF
1352 NEED_CAIRO_DLL=USE
1353 # Pango >=1.24.5 Needs these:
1354 NEED_FREETYPE_DLL=USE
1355 NEED_FONTCONFIG_DLL=USE
1356 #NEED_EXPAT_DLL=USE
1357 NEED_XML_DLL=USE
1358 NEED_PIXMAN_DLL=USE
1359 NEED_FFI_DLL=USE
1360 NEED_JASPER_DLL=USE
1361 NEED_JPEG_DLL=USE
1362 NEED_TIFF_DLL=USE
1363 NEED_LZMA_DLL=USE
1364
1365 !ELSEIF "$(GTK_INST_VERSION)" == "3.4"
1366
1367 # GTK+
1368 ## Note: If Wireshark is ever to be built with Gtk >= 3.10
1369 ##        then -DGTK_DISABLE_DEPRECATED must be removed
1370 ##        and -DGDK_DISABLE_DEPRECIATION_WARNINGS must
1371 ##        be added below.
1372 ##       Wireshark changes to handle Gtk 3.10 deprecated features
1373 ##        will not be done since Wireshark is moving to Qt.
1374 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-3.0 \
1375         /I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
1376         /I$(GTK_DIR)\lib\gtk-3.0\include \
1377         /I$(GTK_DIR)\include\atk-1.0 \
1378         /I$(GTK_DIR)\include\cairo \
1379         /I$(GTK_DIR)\include\pango-1.0 \
1380         -DGDK_DISABLE_DEPRECATED \
1381         -DGDK_PIXBUF_DISABLE_DEPRECATED \
1382         -DGTK_DISABLE_DEPRECATED \
1383         -DGTK_DISABLE_SINGLE_INCLUDES \
1384         -DGSEAL_ENABLE
1385 GTK_LIBS=$(GTK_DIR)\lib\gtk-3.lib \
1386         $(GTK_DIR)\lib\gdk-3.lib \
1387         $(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
1388         $(GTK_DIR)\lib\cairo.lib \
1389         $(GTK_DIR)\lib\pango-1.0.lib \
1390         $(GTK_DIR)\lib\pangocairo-1.0.lib \
1391         $(GLIB_LIBS)
1392
1393 GTK_LIB_DIR=3.4
1394
1395 !IFDEF _DLL
1396 !ENDIF
1397
1398 NEED_CAIRO_GOBJECT_DLL=USE
1399 NEED_CAIRO_DLL=USE
1400
1401 !IFDEF EXPAT_DLL
1402 NEED_EXPAT_DLL=USE
1403 !ENDIF
1404 !IFDEF FFI_DLL
1405 NEED_FFI_DLL=USE
1406 !ENDIF
1407 !IFDEF FONTCONFIG_DLL
1408 NEED_FONTCONFIG_DLL=USE
1409 !ENDIF
1410 !IFDEF FREETYPE_DLL
1411 NEED_FREETYPE_DLL=USE
1412 !ENDIF
1413 !IFDEF JASPER_DLL
1414 NEED_JASPER_DLL=USE
1415 !ENDIF
1416 !IFDEF JPEG_DLL
1417 NEED_JPEG_DLL=USE
1418 !ENDIF
1419 !IFDEF LZMA_DLL
1420 NEED_LZMA_DLL=USE
1421 !ENDIF
1422 !IFDEF PIXMAN_DLL
1423 NEED_PIXMAN_DLL=USE
1424 !ENDIF
1425 !IFDEF PNG_DLL
1426 NEED_PNG_DLL=USE
1427 !ENDIF
1428 !IFDEF TIFF_DLL
1429 NEED_TIFF_DLL=USE
1430 !ENDIF
1431 !IFDEF XML_DLL
1432 NEED_XML_DLL=USE
1433 !ENDIF
1434 !ELSE
1435 !ERROR ? Unknown or invalid GTK_INST_VERSION "$(GTK_INST_VERSION)"
1436 !ENDIF
1437
1438
1439 !IFDEF AIRPCAP_DIR
1440 AIRPCAP_CONFIG=^#define HAVE_AIRPCAP 1
1441 #AIRPCAP_CFLAGS=/I$(AIRPCAP_DIR)\include
1442 !ELSE
1443 AIRPCAP_CONFIG=
1444 WIRELESS_TOOLBAR_CONFIG=
1445 !ENDIF
1446
1447 !IFDEF PCAP_DIR
1448 # Nmake uses carets to escape special characters
1449 WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
1450 #
1451 # This requires that, if you're *building* Wireshark, you have
1452 # the most recent WinPcap's development package.  If, at *run*
1453 # time, an older version of WinPcap, missing some routines,
1454 # is found, we work around that.
1455 #
1456 PCAP_FINDALLDEVS_CONFIG=^#define HAVE_PCAP_FINDALLDEVS 1
1457 PCAP_DATALINK_NAME_TO_VAL_CONFIG=^#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1
1458 PCAP_DATALINK_VAL_TO_NAME_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_NAME 1
1459 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1
1460 # PCAP_BREAKLOOP won't have any benefit on Win32, but breaks compatibility with 3.0
1461 PCAP_BREAKLOOP_CONFIG=
1462 PCAP_LIST_DATALINKS_CONFIG=^#define HAVE_PCAP_LIST_DATALINKS 1
1463 PCAP_FREE_DATALINKS_CONFIG=^#define HAVE_PCAP_FREE_DATALINKS 1
1464 PCAP_SET_DATALINK_CONFIG=^#define HAVE_PCAP_SET_DATALINK 1
1465 PCAP_OPEN_DEAD_CONFIG=^#define HAVE_PCAP_OPEN_DEAD 1
1466 BPF_IMAGE_CONFIG=^#define HAVE_BPF_IMAGE 1
1467 !ELSE
1468 # no WpdPack installed
1469 WINPCAP_CONFIG=
1470 PCAP_FINDALLDEVS_CONFIG=
1471 PCAP_DATALINK_NAME_TO_VAL_CONFIG=
1472 PCAP_DATALINK_VAL_TO_NAME_CONFIG=
1473 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=
1474 PCAP_BREAKLOOP_CONFIG=
1475 PCAP_LIST_DATALINKS_CONFIG=
1476 PCAP_FREE_DATALINKS_CONFIG=
1477 PCAP_SET_DATALINK_CONFIG=
1478 PCAP_OPEN_DEAD_CONFIG=
1479 BPF_IMAGE_CONFIG=
1480 !ENDIF
1481
1482 !IF DEFINED(PCAP_DIR) && DEFINED(PCAP_REMOTE)
1483 PCAP_HAVE_REMOTE_CONFIG=^#define HAVE_REMOTE 1
1484 PCAP_REMOTE_CONFIG=^#define HAVE_PCAP_REMOTE 1
1485 PCAP_OPEN_CONFIG=^#define HAVE_PCAP_OPEN 1
1486 PCAP_SETSAMPLING_CONFIG=^#define HAVE_PCAP_SETSAMPLING 1
1487 !ELSE
1488 PCAP_HAVE_REMOTE_CONFIG=
1489 PCAP_REMOTE_CONFIG=
1490 PCAP_OPEN_CONFIG=
1491 PCAP_SETSAMPLING_CONFIG=
1492 !ENDIF
1493
1494 !IFDEF ZLIB_DIR
1495 ZLIB_PATH=$(ZLIB_DIR)
1496 ZLIB_CFLAGS=/I$(ZLIB_DIR)\include
1497 ZLIB_LIBS=$(ZLIB_DIR)\lib\zdll.lib
1498 ZLIB_DLL=$(ZLIB_DIR)\zlib1.dll
1499 # Nmake uses carets to escape special characters
1500 ZLIB_CONFIG=^#define HAVE_LIBZ 1
1501 !else
1502 ZLIB_CFLAGS=
1503 ZLIB_LIBS=
1504 ZLIB_DLL=
1505 ZLIB_CONFIG=
1506 !ENDIF
1507
1508 !IFDEF C_ARES_PKG
1509 !UNDEF ADNS_DIR
1510 C_ARES_DIR=$(WIRESHARK_LIB_DIR)\c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1511 C_ARES_CFLAGS=/I$(C_ARES_DIR)/include
1512 C_ARES_LIBS=$(C_ARES_DIR)\lib\libcares-2.lib
1513 C_ARES_DLL=$(C_ARES_DIR)\bin\libcares-2.dll
1514 # Nmake uses carets to escape special characters
1515 C_ARES_CONFIG=^#define HAVE_C_ARES 1
1516 !else
1517 C_ARES_CFLAGS=
1518 C_ARES_LIBS=
1519 C_ARES_CONFIG=
1520 !IFDEF ADNS_DIR
1521 ADNS_PATH=$(ADNS_DIR)\adns_win32\lib
1522 ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32
1523 ADNS_LIBS=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.lib
1524 ADNS_DLL=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.dll
1525 # Nmake uses carets to escape special characters
1526 ADNS_CONFIG=^#define HAVE_GNU_ADNS 1
1527 !else
1528 ADNS_CFLAGS=
1529 ADNS_LIBS=
1530 ADNS_CONFIG=
1531 !ENDIF # ADNS
1532 !ENDIF # C_ARES
1533
1534 !IFDEF KFW_DIR
1535 KFW_PATH=$(KFW_DIR)\bin
1536 KFW_CFLAGS=/I$(KFW_DIR)\include
1537 KFW_LIBS=$(KFW_DIR)\lib\krb5_32.lib
1538 # Nmake uses carets to escape special characters
1539 KFW_CONFIG=^#define HAVE_MIT_KERBEROS 1
1540 !else
1541 KFW_CFLAGS=
1542 KFW_LIBS=
1543 KFW_CONFIG=
1544 !ENDIF
1545
1546 !IFDEF NETTLE_DIR
1547 NETTLE_CFLAGS=/I$(NETTLE_DIR)
1548 NETTLE_LIBS=$(NETTLE_DIR)\libnettle.lib
1549 # Nmake uses carets to escape special characters
1550 NETTLE_CONFIG=^#define HAVE_LIBNETTLE 1
1551 !else
1552 NETTLE_CFLAGS=
1553 NETTLE_LIBS=
1554 NETTLE_CONFIG=
1555 !ENDIF
1556
1557 !IFDEF GNUTLS_PKG
1558 GNUTLS_DIR=$(WIRESHARK_LIB_DIR)\gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1559 GNUTLS_PATH=$(GNUTLS_DIR)
1560 # /DNOCRYPT avoids inclusion of Wincrypt.h, avoiding a X509_NAME define clash
1561 GNUTLS_CFLAGS=/I$(GNUTLS_DIR)\include /DNOCRYPT /DIMPORT_LIGNUTLSDLL
1562 GCRYPT_LIBS = $(GNUTLS_DIR)\bin\libgcrypt-11.lib
1563 GNUTLS_LIBS=\
1564         $(GNUTLS_DIR)\bin\libtasn1-3.lib        \
1565         $(GNUTLS_DIR)\bin\libgpg-error-0.lib    \
1566         $(GCRYPT_LIBS) \
1567         $(GNUTLS_DIR)\bin\libgnutls-26.lib
1568 # Nmake uses carets to escape special characters
1569 GNUTLS_CONFIG=^#define HAVE_LIBGNUTLS 1
1570 LIBGCRYPT_CONFIG=^#define HAVE_LIBGCRYPT 1
1571 !else
1572 GNUTLS_CFLAGS=
1573 GNUTLS_LIBS=
1574 GNUTLS_CONFIG=
1575 LIBGCRYPT_CONFIG=
1576 !ENDIF
1577
1578 !IFDEF LUA_DIR
1579 LUA_CFLAGS=/I$(LUA_DIR)\include
1580 LUA_LIBS=$(LUA_DIR)\lua5.1.lib
1581 # Nmake uses carets to escape special characters
1582 LUA_CONFIG=^#define HAVE_LUA 1
1583 LUA_VERSION=^#define HAVE_LUA 1
1584 !else
1585 LUA_CFLAGS=
1586 LUA_LIBS=
1587 LUA_CONFIG=
1588 !ENDIF
1589
1590 !IF DEFINED(PYTHON_EMBED)
1591 PYTHON_CFLAGS=/I$(PYTHON_DIR)\include
1592 PYTHON_LIBS=$(PYTHON_DIR)\libs\python$(PYTHON_VER).lib
1593 # Nmake uses carets to escape special characters
1594 PYTHON_CONFIG=^#define HAVE_PYTHON 1
1595 !else
1596 PYTHON_CFLAGS=
1597 PYTHON_LIBS=
1598 PYTHON_CONFIG=
1599 !ENDIF
1600
1601 !IFDEF PORTAUDIO_DIR
1602 # Nmake uses carets to escape special characters
1603 PORTAUDIO_CONFIG=^#define HAVE_LIBPORTAUDIO 1
1604 !IF "$(PORTAUDIO_VERSION)" == "18"
1605 # V18 uses API version 1 and v19 API version 2
1606 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\pa_common
1607 PORTAUDIO_API_CONFIG=^#define PORTAUDIO_API_1 1
1608 !ELSE
1609 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\include /I$(PORTAUDIO_DIR)\src\common /I$(PORTAUDIO_DIR)\src\os\win /DPA_NO_DS /DPA_NO_ASIO
1610 !ENDIF
1611 !ELSE
1612 PORTAUDIO_CFLAGS=
1613 PORTAUDIO_CONFIG=
1614 !ENDIF
1615
1616 !IFDEF HHC_DIR
1617 HHC_CFLAGS=-DHHC_DIR
1618 HHC_LIBS=htmlhelp.lib
1619 !ELSE
1620 HHC_CFLAGS=
1621 HHC_LIBS=
1622 !ENDIF
1623
1624 !IFDEF SMI_PKG
1625 SMI_DIR=$(WIRESHARK_LIB_DIR)\libsmi-$(SMI_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1626 SMI_CONFIG=^#define HAVE_LIBSMI 1
1627 SMI_CFLAGS=/I$(SMI_DIR)\include
1628 SMI_LIBS=$(SMI_DIR)\lib\libsmi-2.lib
1629 !ELSE
1630 SMI_DIR=
1631 SMI_LIBS=
1632 SMI_CFLAGS=
1633 SMI_CONFIG=
1634 !ENDIF
1635
1636 !IFDEF GEOIP_PKG
1637 GEOIP_DIR=$(WIRESHARK_LIB_DIR)\GeoIP-$(GEOIP_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1638 GEOIP_CONFIG=^#define HAVE_GEOIP 1
1639 GEOIP_V6_CONFIG=^#define HAVE_GEOIP_V6 1
1640 GEOIP_CFLAGS=/I$(GEOIP_DIR)/include
1641 GEOIP_LIBS=$(GEOIP_DIR)\lib\libGeoIP-1.lib
1642 !ELSE
1643 GEOIP_DIR=
1644 GEOIP_LIBS=
1645 GEOIP_CFLAGS=
1646 GEOIP_CONFIG=
1647 GEOIP_V6_CONFIG=
1648 !ENDIF
1649
1650 !IFDEF WINSPARKLE_PKG
1651 WINSPARKLE_DIR=$(WIRESHARK_LIB_DIR)\WinSparkle-$(WINSPARKLE_PKG)
1652 WINSPARKLE_CONFIG=^#define HAVE_SOFTWARE_UPDATE 1
1653 WINSPARKLE_CFLAGS=/I$(WINSPARKLE_DIR)
1654 WINSPARKLE_LIBS=$(WINSPARKLE_DIR)\WinSparkle.lib
1655 !ELSE
1656 WINSPARKLE_DIR=
1657 WINSPARKLE_CONFIG=
1658 WINSPARKLE_CFLAGS=
1659 WINSPARKLE_LIBS=
1660 !ENDIF
1661
1662 !IFDEF ENABLE_LIBWIRESHARK
1663 # Link plugins with the import library of libwireshark.dll
1664 LINK_PLUGINS_WITH_LIBWIRESHARK=USE
1665 !ELSE
1666 LIBWIRESHARK_CONFIG=
1667 !ENDIF
1668
1669 # Construct the path
1670 PATH=$(PATH);$(CYGWIN_PATH);$(GTK_DIR)\bin;$(GETTEXT_DIR)\bin;$(ZLIB_PATH);$(ADNS_PATH)
1671
1672 INET6_CONFIG=^#define INET6 1
1673
1674 NTDDNDIS_CONFIG=^#define HAVE_NTDDNDIS_H 1