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