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