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