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