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