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