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