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