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