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