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).
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...
13 PROGRAM_NAME=Wireshark
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
25 # The SVN revision of our build. Updated by make-version.pl
28 # The current Wireshark version. Recommended: Leave unchanged.
29 # Updated by make-version.pl
33 VERSION_BUILD=$(SVN_REVISION)
35 # Local build information. Recommended: Unique string for your
36 # environment, e.g. "-JackStackBarbecue". Updated by make-version.pl
40 # The version of the wiretap library. Recommended: Leave unchanged.
41 WTAP_VERSION_MAJOR=$(VERSION_MAJOR)
42 WTAP_VERSION_MINOR=$(VERSION_MINOR)
45 ##### Directories #####
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.
52 !IFNDEF WIRESHARK_LIB_DIR
53 WIRESHARK_LIB_DIR=C:\$(PROGRAM_NAME)-$(WIRESHARK_TARGET_PLATFORM)-libs
57 # Base directory, where your programs reside.
58 # This setting is used only inside this file.
60 PROGRAM_FILES=$(PROGRAMFILES)
61 PROGRAM_FILES_W6432=$(PROGRAMW6432)
64 # Location of the "tools" directory. This affects HTML2TXT below and should
65 # be overridden by makefiles in any subdirectories that use HTML2TXT.
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"
80 PROCESSOR_ARCHITECTURE=x86
81 !else if "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
84 PROCESSOR_ARCHITECTURE=amd64
86 !error Your mysterious moon-man architecture "$(WIRESHARK_TARGET_PLATFORM)" frightens and confuses us.
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
94 # "Microsoft Visual Studio 2005"
95 # Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
96 #MSVC_VARIANT=MSVC2005
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
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
108 # "Microsoft Visual Studio 2008"
109 # Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
110 #MSVC_VARIANT=MSVC2008
112 # "Microsoft Visual C++ 2008 Express Edition"
113 # Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
114 #MSVC_VARIANT=MSVC2008EE
116 # "Microsoft Visual Studio 2010"
117 # Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
118 #MSVC_VARIANT=MSVC2010
120 # "Microsoft Visual C++ 2010 Express Edition"
121 # Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
122 #MSVC_VARIANT=MSVC2010EE
124 # "Microsoft Visual C++ 2012 Express Edition"
125 # Visual C++ 11.0, _MSC_VER 1700, msvcr110.dll
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.
142 #MSVC_VARIANT=MSVC2012EE
144 # "Microsoft Visual Studio 2012"
145 # Visual C++ 11.0, _MSC_VER 1700, msvcr110.dll
146 #MSVC_VARIANT=MSVC2012
148 # "Microsoft Visual Studio 2013"
149 # Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
150 #MSVC_VARIANT=MSVC2013
152 # "Microsoft Visual Studio 2013 Express Edition"
153 # Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
154 #MSVC_VARIANT=MSVC2013EE
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.
160 MSVC_VARIANT=MSVC2010EE
164 # Optional: To compile some time critical code from assembler instead of C
166 # If you have the NASM compiler, set this to the NASM executable.
167 # http://nasm.sourceforge.net/
169 # If you don't have NASM, comment this line out, so that NASM
172 NASM=$(WIRESHARK_LIB_DIR)\nasm-2.09.08\nasm.exe
175 # Optional: the Python library enables scripting support.
177 # If you don't have the Python library, comment this line out, so that
178 # PYTHON_EMBED isn't defined.
180 # NOTE: The Python library must have been compiled with the same
181 # compiler (MSVC_VARIANT) as Wireshark. Known python.org Python
184 # Python version CRT (32-bit) CRT (64-bit)
191 # If you versions of Python and Visual C++ use different CRTs
194 # XXX The DLL path in epan/wspython/wspy_libws.py likely needs to
195 # be fixed before this is enabled by default.
199 # Optional: the Python interpreter is used as part of the buildsystem
201 # This will override the automatic detection below.
203 #PYTHON_DIR=C:\Python$(PYTHON_VER)
206 # If you don't have the native Python package installed, you can use
207 # the Cygwin version (not recommended)
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
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)
220 !ELSE IF EXIST(c:\Python26\python.exe)
222 !ELSE IF EXIST(c:\Python25\python.exe)
224 !ELSE IF EXIST(c:\Python24\python.exe)
228 !IF DEFINED(PYTHON_VER)
229 PYTHON_DIR=C:\Python$(PYTHON_VER)
233 !IF DEFINED(PYTHON_DIR)
234 PYTHON="$(PYTHON_DIR)\python.exe"
235 PATH=$(PYTHON_DIR);$(PATH)
238 #### Save files as pcap-ng by default. Comment out to use pcap instead. ####
239 PCAP_NG_DEFAULT=^#define PCAP_NG_DEFAULT 1
241 ##### To Use packet editor uncomment this line ####
242 ### Experimental - work in progress
243 WANT_PACKET_EDITOR=^#define WANT_PACKET_EDITOR 1
245 !if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
246 ##### Win32 Libraries #####
248 # Mandatory: GLib settings
250 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
255 # Mandatory: GLib, GTK & related library settings
257 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
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.
262 # Set the name to gtk2 if you want to use gtk2
264 GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)
267 # These macros are used by the nsis installer script and by the install target.
268 #EXPAT_DLL=libexpat-1.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
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
289 GDK_DLL=libgdk-3-0.dll
290 GTK_DLL=libgtk-3-0.dll
296 # Mandatory: Version numbers of GTK and pango.
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.
301 !IF "$(GTK_NAME)" == "gtk2"
302 GTK_INST_VERSION=2.24
310 # This must point to a top-level Qt directory. QMake should be in
311 # $(QT5_BASE_DIR)\bin
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
317 #QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
318 !IF !DEFINED(QT5_BASE_DIR)
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
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
332 # Recommended: WinPcap developer's pack to capture network traffic.
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.
337 # If you don't have the WPdpack, comment this line out, so that
338 # PCAP_DIR isn't defined.
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.
346 # Optional: WinPcap remote capture support and new API
347 # (pcap_open(), pcap_findalldevs_ex(), etc.)
352 # Optional: The ZLib enables unzipping of gzip compressed capture files
355 # If you have Zlib, set this to directory in which the Zlib headers
356 # and .lib file are stored.
358 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
360 # EXperimental only use zlib 1.2.5 on win32 for now
361 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
364 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
367 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
368 # .lib file is stored.
370 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
373 # If C_ARES_DIR is defined below, it will override this setting.
375 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
378 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
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
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.
388 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
394 # Optional: the GnuTLS library enables ssl decryption.
396 # If you have the GnuTLS library, set this to the package version.
398 # If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
401 # Platform SDK conflicts with openssl.h header
402 GNUTLS_PKG=2.12.18-1.2
405 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
407 # If you have the kerberos for windows (mit) library, set this to the
408 # directory where the kfw package is stored.
410 # If you don't have KFW, comment this line out, so that KFW_DIR
413 KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3-2-2-i386-ws-vc6
416 # Optional: the Nettle library enables ??? decryption.
418 # If you have the Nettle encryption library, set this to the
419 # directory in which the nettle package is stored.
421 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
424 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
427 # Optional: the LUA library enables scripting support.
429 # If you have the LUA library, set this to the directory in which
430 # the LUA package is stored.
432 # If you don't have LUA, comment this line out, so that LUA_DIR
435 LUA_DIST=5_1_4_Win32_dll6
436 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
439 # Optional: the PORTAUDIO library enables audio output for RTP streams.
441 # If you have the PORTAUDIO library (used for rtp_player), set this to
442 # the directory in which the PORTAUDIO library is stored.
444 # If you don't have PORTAUDIO, comment this line out, so that
445 # PORTAUDIO_DIR isn't defined.
447 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
448 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
451 # Version number of PortAudio
453 #PORTAUDIO_VERSION=18
457 # Optional: AirPcap developer's pack to capture wireless network traffic
458 # incl. 802.11 management frames.
460 # If you have the AirPcap developer's pack, set this to the directory
461 # in which the AirPcap developer's pack resides.
463 # If you don't have the AirPcap developer's pack, comment this line out,
464 # so that AIRPCAP_DIR isn't defined.
466 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
469 # Optional: LIBSMI, System Management Interface
471 # Used for oid-name resolution for SNMP and other protocols
476 # Optional: GeoIP, IP address database lookups
478 # Used to map IP addresses to MaxMind GeoIP database entries
483 # Optional: WinSparkle, software updates
485 # Used for automatic software updates
487 WINSPARKLE_PKG=0.3-44-g2c8d9d3-win32ws
490 ##### Win64 Libraries #####
492 # Mandatory: GLib settings
494 # Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
499 # Mandatory: GLib, GTK & related library settings
501 # Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
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.
507 # Set the name to gtk3 if you want to use gtk3 - (experimental ?)
509 GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)
511 # These macros are used by the nsis installer script and by the install target.
512 #EXPAT_DLL=libexpat-1.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
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
533 GDK_DLL=libgdk-3-0.dll
534 GTK_DLL=libgtk-3-0.dll
540 # Mandatory: Version numbers of GTK and pango.
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.
545 !IF "$(GTK_NAME)" == "gtk2"
546 #GTK_INST_VERSION=2.16
547 GTK_INST_VERSION=2.24
555 # This must point to a top-level Qt directory. QMake should be in
556 # $(QT5_BASE_DIR)\bin
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
562 #QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
563 !IF !DEFINED(QT5_BASE_DIR)
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
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
577 # Recommended: WinPcap developer's pack to capture network traffic.
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.
582 # If you don't have the WPdpack, comment this line out, so that
583 # PCAP_DIR isn't defined.
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.
591 # Optional: WinPcap remote capture support and new API
592 # (pcap_open(), pcap_findalldevs_ex(), etc.)
597 # Optional: The ZLib enables unzipping of gzip compressed capture files
600 # If you have Zlib, set this to directory in which the Zlib headers
601 # and .lib file are stored.
603 # If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
606 ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib125
609 # Optional: the ADNS library enables asynchronous (nonblocking) DNS
612 # If you have GNU ADNS, set this to the directory in which the GNU ADNS
613 # .lib file is stored.
615 # If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
618 # If C_ARES_DIR is defined below, it will override this setting.
620 #ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws
623 # Optional: the c-ares library enables asynchronous (nonblocking) DNS
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
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.
633 # If you don't have c-ares, comment this line out, so that C_ARES_DIR
639 # Optional: the GnuTLS library enables ssl decryption.
641 # If you have the GnuTLS library, set this to the package version.
643 # If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
646 # Platform SDK conflicts with openssl.h header
647 GNUTLS_PKG=2.12.18-1.2-1
650 # Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
652 # If you have the kerberos for windows (mit) library, set this to the
653 # directory where the kfw package is stored.
655 # If you don't have KFW, comment this line out, so that KFW_DIR
658 #KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3.2.2-ws1
661 # Optional: the Nettle library enables ??? decryption.
663 # If you have the Nettle encryption library, set this to the
664 # directory in which the nettle package is stored.
666 # If you don't have Nettle, comment this line out, so that NETTLE_DIR
669 # NETTLE_DIR=$(WIRESHARK_LIB_DIR)\nettle-1.10
672 # Optional: the LUA library enables scripting support.
674 # If you have the LUA library, set this to the directory in which
675 # the LUA package is stored.
677 # If you don't have LUA, comment this line out, so that LUA_DIR
680 LUA_DIST=-5.1.4_Win64_dll10
681 LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.1.4
684 # Optional: the PORTAUDIO library enables audio output for RTP streams.
686 # If you have the PORTAUDIO library (used for rtp_player), set this to
687 # the directory in which the PORTAUDIO library is stored.
689 # If you don't have PORTAUDIO, comment this line out, so that
690 # PORTAUDIO_DIR isn't defined.
692 #PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
693 PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2
696 # Version number of PortAudio
698 #PORTAUDIO_VERSION=18
702 # Optional: AirPcap developer's pack to capture wireless network traffic
703 # incl. 802.11 management frames.
705 # If you have the AirPcap developer's pack, set this to the directory
706 # in which the AirPcap developer's pack resides.
708 # If you don't have the AirPcap developer's pack, comment this line out,
709 # so that AIRPCAP_DIR isn't defined.
711 AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack
714 # Optional: LIBSMI, System Management Interface
716 # Used for oid-name resolution for SNMP and other protocols
721 # Optional: GeoIP, IP address database lookups
723 # Used to map IP addresses to MaxMind GeoIP database entries
728 # Optional: WinSparkle, software updates
730 # Used for automatic software updates
732 WINSPARKLE_PKG=0.3-44-g2c8d9d3-win64ws
735 ##### win32 / win64 #####
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
743 GTK_ETC_DIR=etc\gtk-3.0
744 GTK_SCHEMAS_DIR=\share\glib-2.0\schemas
750 # Set the following mandatory commands to find the tools.
751 # The easiest way is to use the corresponding packages from cygwin.
753 # Set up the path to the cygwin binaries
754 CYGWIN_PATH=c:\cygwin\bin
756 # command for a shell (cygwin's bash package recommended)
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
768 SH=$(SH_PROG) $(SH_FLAGS)
771 # command for perl (cygwin's perl package recommended)
774 # command for pod2man and pod2html
775 # (part of the perl package, usually leave these unchanged)
776 POD2MAN=$(SH) pod2man
777 POD2HTML=$(SH) pod2html
779 # command for sed (cygwin's sed recommended)
782 # command for lex/flexx (cygwin's flex recommended)
785 # command for yacc/bison (cygwin's bison recommended)
788 # Commands to convert UNIX line endings to DOS/Windows
790 TEXTIFY=$(SH) $(TOOLS_DIR)/textify.sh
793 # Optional: Build the NSIS installer.
795 # If NSIS is installed in a standard location (under Program Files
796 # or Program Files (x86)) you shouldn't have to change anything.
798 # If NSIS is installed in a custom location uncomment the following
799 # line and adjust the path accordingly.
802 #MAKENSIS="\custom\path\to\NSIS\makensis.exe"
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"
814 # Optional: To build the NSIS PortableApps installer.
816 # If you have the NSIS Unicode package, set this to the NSIS Unicode executable.
818 # If you don't have NSIS Unicode, comment this line out, so that
819 # MAKENSIS_UNICODE isn't defined.
821 MAKENSIS_UNICODE="$(PROGRAM_FILES)\NSIS\Unicode\makensis.exe"
824 # Optional: To build the developers API documentation with doxygen and dot.
825 # Currently experimental, outdated and incomplete.
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/
831 # If you have doxygen, set this to the doxygen executable.
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.
836 #DOXYGEN="$(PROGRAM_FILES)/doxygen/bin/doxygen.exe"
839 # Recommended: Use the compressed html help format .chm as the Wireshark integrated help.
841 # The required htmlhelp.h and htmlhelp.lib should be included in versions of MSVC supported by Wireshark
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.
846 HHC_DIR=$(PROGRAM_FILES)\HTML Help Workshop
849 # Optional: To reduce the size of dlls and exes, which is especially useful for USB device distributions (U3, PortableApps)
851 # If you have the UPX package, set this to the upx.exe executable.
853 # UPX can be downloaded from:
854 # http://upx.sourceforge.net/
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.
860 UPX=$(WIRESHARK_LIB_DIR)\upx303w\upx.exe
862 ##### Flags, PATHs and Miscellaneous #####
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
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
881 !ERROR MSVC_VARIANT unknown
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
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"
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
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
948 !IF "$(MSVC_VARIANT)" == "MSVC2013" || \
949 "$(MSVC_VARIANT)" == "MSVC2013EE"
950 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /DBUILD_WINDOWS
953 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
954 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /D_BIND_TO_CURRENT_CRT_VERSION=1
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
963 !ERROR MSVC_VARIANT unknown
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.
971 # The following compiler options and language features that are incompatible with the /MP option:
973 # * #import preprocessor directive
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
990 # Optional: Static analysis. Only supported in the full-frontal MSVC editions.
991 # http://msdn.microsoft.com/en-us/library/ms182025.aspx
993 !IFDEF ENABLE_CODE_ANALYSIS
994 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /analyze:WX-
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)
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
1005 #Comment out the following if warnings are not to be treated as errors
1006 WARNINGS_ARE_ERRORS=-WX
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
1014 LOCAL_LDFLAGS=/DEBUG /MACHINE:$(TARGET_MACHINE)
1016 !IFDEF MANIFEST_INFO_REQUIRED
1017 DLL_LDFLAGS = /MANIFEST:no
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
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.
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
1038 PLUGIN_LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS) $(DLL_LDFLAGS)
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
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.
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
1055 # install (debug) directory for Wireshark (relative to your source dir)
1056 INSTALL_DIR=wireshark-gtk2
1060 ##### C-Runtime Redistributable #####
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.
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.
1071 # You can either place the redistributable in its own platform-
1072 # and compiler-specific directory or in the top-level library
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)
1079 VCREDIST_DIR=$(WIRESHARK_LIB_DIR)
1082 !IF "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
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.
1089 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1091 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"
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.
1100 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 8\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC80.CRT\*.*
1102 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20" || "$(MSVC_VARIANT)" == "MSVC2008EE"
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.
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!!!
1113 VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe
1115 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008"
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.
1124 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 9.0\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC90.CRT\*.*
1126 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010EE"
1128 # For MSVC 2010 Express Edition, we "Use the Visual C++ Redistributable
1129 # Package", because it doesn't provide the Microsoft.VC80.CRT folder.
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"
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.
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.
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"
1153 # EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
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.
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.
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"
1170 # EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
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.
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.
1184 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 12.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC120.CRT\*.*
1186 !ERROR MSVC_VARIANT unknown
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
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.
1201 # FOR DETAILED INSTRUCTIONS TO GENERATE THE DOCS, SEE: docbook\README.txt.
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.
1206 # formatting objects processor executable
1207 # Comment this out if you don't have fop installed or you don't want the docs
1210 # You may want to install the FOP hyphenation patterns from
1211 # http://offo.sourceforge.net/hyphenation/
1216 # Additional options to fop.
1219 # html help compiler
1220 # Comment this out if you don't have hhc.exe or you don't want the docs in
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"
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
1235 HTML2TXT=$(PYTHON) $(TOOLS_DIR)\html2text.py --width=72 --no-links
1238 # the XSL processor (part of cygwin's libxslt package)
1241 # the XML validator (part of cygwin's libxml2 package)
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
1250 ##############################################################################
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
1260 ##############################################################################
1263 # The RC_VERSION should be comma-separated, not dot-separated,
1264 # as per Graham Bloice's message in
1266 # http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
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."
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)
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)
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
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"
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 \
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 \
1327 # Pango >=1.24.5 Needs these:
1328 NEED_FREETYPE_DLL=USE
1329 NEED_FONTCONFIG_DLL=USE
1339 !ELSEIF "$(GTK_INST_VERSION)" == "3.4"
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 \
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 \
1366 NEED_CAIRO_GOBJECT_DLL=USE
1375 !IFDEF FONTCONFIG_DLL
1376 NEED_FONTCONFIG_DLL=USE
1379 NEED_FREETYPE_DLL=USE
1403 !ERROR ? Unknown or invalid GTK_INST_VERSION "$(GTK_INST_VERSION)"
1408 AIRPCAP_CONFIG=^#define HAVE_AIRPCAP 1
1409 #AIRPCAP_CFLAGS=/I$(AIRPCAP_DIR)\include
1412 WIRELESS_TOOLBAR_CONFIG=
1416 # Nmake uses carets to escape special characters
1417 WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
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.
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
1436 # no WpdPack installed
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=
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
1456 PCAP_HAVE_REMOTE_CONFIG=
1459 PCAP_SETSAMPLING_CONFIG=
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
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
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
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
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
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
1532 $(GNUTLS_DIR)\bin\libtasn1-3.lib \
1533 $(GNUTLS_DIR)\bin\libgpg-error-0.lib \
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
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
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
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
1577 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\include /I$(PORTAUDIO_DIR)\src\common /I$(PORTAUDIO_DIR)\src\os\win /DPA_NO_DS /DPA_NO_ASIO
1585 HHC_CFLAGS=-DHHC_DIR
1586 HHC_LIBS=htmlhelp.lib
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
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
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
1630 !IFDEF ENABLE_LIBWIRESHARK
1631 # Link plugins with the import library of libwireshark.dll
1632 LINK_PLUGINS_WITH_LIBWIRESHARK=USE
1634 LIBWIRESHARK_CONFIG=
1637 # Construct the path
1638 PATH=$(PATH);$(CYGWIN_PATH);$(GTK_DIR)\bin;$(GETTEXT_DIR)\bin;$(ZLIB_PATH);$(ADNS_PATH)
1640 INET6_CONFIG=^#define INET6 1
1642 NTDDNDIS_CONFIG=^#define HAVE_NTDDNDIS_H 1