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