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