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