From Ivan Lawrow:
[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 are flags used for *all* compilations
776 ##      STANDARD_CFLAGS (see below) are flags used just for *Wireshark* compilations
777 !IF     "$(MSVC_VARIANT)" == "MSVC6"      || \
778         "$(MSVC_VARIANT)" == "MSVC2002"   || \
779         "$(MSVC_VARIANT)" == "DOTNET10"   || \
780         "$(MSVC_VARIANT)" == "MSVC2003"   || \
781         "$(MSVC_VARIANT)" == "DOTNET11"
782 LOCAL_CFLAGS=/Zi /W3 /MD /DWIN32_LEAN_AND_MEAN /DMSC_VER_REQUIRED=$(MSC_VER_REQUIRED)
783
784 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"   || \
785         "$(MSVC_VARIANT)" == "MSVC2005EE" || \
786         "$(MSVC_VARIANT)" == "DOTNET20"   || \
787         "$(MSVC_VARIANT)" == "MSVC2008"   || \
788         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
789         "$(MSVC_VARIANT)" == "MSVC2010"   || \
790         "$(MSVC_VARIANT)" == "MSVC2010EE"
791 LOCAL_CFLAGS=/Zi /W3 /MD /DWIN32_LEAN_AND_MEAN /DMSC_VER_REQUIRED=$(MSC_VER_REQUIRED) \
792              /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE
793
794 !IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
795 LOCAL_CFLAGS=$(LOCAL_CFLAGS) /D_BIND_TO_CURRENT_CRT_VERSION=1
796 !ENDIF
797
798 # Additional compiler warnings to be treated as "Level 3"
799 #  when compiling Wireshark sources. (Selected from "level 4" warnings).
800 ## 4295: array is too small to include a terminating null character
801 WARNINGS_CFLAGS=/w34295
802
803 !ELSE
804 !ERROR MSVC_VARIANT unknown
805 !ENDIF
806
807 # http://msdn.microsoft.com/en-us/library/bb385193.aspx
808 # /MP               Compiles multiple source files by using multiple processes
809 # /MP[processMax]   If you omit the processMax argument, the compiler retrieves the number of effective processors
810 #                   on your computer from the operating system, and creates a process for each processor.
811 #
812 # The following compiler options and language features that are incompatible with the /MP option:
813 #
814 # * #import preprocessor directive
815 # * /E, /EP
816 # * /Gm
817 # * /showIncludes
818 # * /Yc
819 #
820 !IF     "$(MSVC_VARIANT)" == "MSVC2008"   || \
821         "$(MSVC_VARIANT)" == "MSVC2008EE" || \
822         "$(MSVC_VARIANT)" == "MSVC2010"   || \
823         "$(MSVC_VARIANT)" == "MSVC2010EE"
824 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /MP
825 !ENDIF
826
827 # Optional: Static analysis. Only supported in the full-frontal MSVC editions.
828 # http://msdn.microsoft.com/en-us/library/ms182025.aspx
829
830 !IFDEF ENABLE_CODE_ANALYSIS
831 LOCAL_CFLAGS= $(LOCAL_CFLAGS) /analyze:WX-
832 !ENDIF
833
834 #STANDARD_CFLAGS are flags used for *Wireshark* compiles (not stuff like lemon, etc)
835 STANDARD_CFLAGS=-DHAVE_CONFIG_H -D_U_="" $(LOCAL_CFLAGS) $(WARNINGS_CFLAGS)
836
837 #Comment out the following if warnings are not to be treated as errors
838 WARNINGS_ARE_ERRORS=-WX
839
840 ## XXX: _MT and _DLL are defined when /MD is used so CVARSDLL is apparently unneeded
841 ##CVARSDLL=-D_MT -D_DLL
842
843 # Linker flags:
844 # /DEBUG  generate debug info
845 # /PROFILE generate map file(s) for profiling
846 # /DEFAULTLIB:xxx use xxx as the standard C library
847 # /NODEFAULTLIB:xxx don't use xxx as the standard C library
848 #
849 LOCAL_LDFLAGS=/DEBUG /MACHINE:$(TARGET_MACHINE)
850 DLL_LDFLAGS =
851 !IFDEF MANIFEST_INFO_REQUIRED
852 DLL_LDFLAGS = /MANIFEST:no
853 !ENDIF
854
855 # Enable ASLR. Requires VS2008 or later.
856 # http://blogs.msdn.com/b/vcblog/archive/2009/05/21/dynamicbase-and-nxcompat.aspx
857 # DEP is handled in init_process_policies()
858
859 # ASLR http://msdn.microsoft.com/en-us/library/bb384887.aspx
860 !IF $(MSC_VER_REQUIRED) >= 1500
861 LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /DYNAMICBASE
862 !ENDIF
863
864 PLUGIN_LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS) $(DLL_LDFLAGS)
865
866 #
867 # According to http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=403
868 # XCOPY under Windows NT doesn't support the "/Y" flag.  This works
869 # around that bug.
870 # XXX - This apparently doesn't work for some versions of nmake:
871 # http://support.microsoft.com/default.aspx?scid=kb;en-us;86814
872 # It looks like we'll have to call "set copycmd=/y" before we run xcopy.
873 COPYCMD=/y
874
875 #
876 # If you don't want to build libwireshark.dll, you should comment out the
877 # following line. (Note: for plugin support this option must stay activated)
878 ENABLE_LIBWIRESHARK=USE
879
880 #
881 # install (debug) directory for Wireshark (relative to your source dir)
882 INSTALL_DIR=wireshark-gtk2
883
884
885
886 ##### C-Runtime Redistributable #####
887 #
888 # The C-Runtime since Version 7 must be shipped together with
889 # the program installer, to avoid missing msvcr*.dll files on
890 # the target machine.
891 #
892 # The location of these files differ on the various compiler
893 # packages, the following will use the default paths depending
894 # on the package version.
895 #
896 !IF "$(MSVC_VARIANT)" == "MSVC6"
897 # msvcrt.dll will already be available on target machines - nothing additional to install
898
899 !ELSEIF "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
900 # We're not creating portable packages and therefore don't have to worry about
901 # "deploying using xcopy"
902 VCREDIST_EXE=$(WIRESHARK_LIBS)\vcredist_$(TARGET_MACHINE).exe
903
904 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2002"
905 # you probably need to tweak this directory if you don't use the professional edition!
906 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio .NET\Visual Studio .NET Professional - English\msvcr70.dll
907
908 !ELSEIF "$(MSVC_VARIANT)" == "DOTNET10"
909 # no redistributable available for this package!
910
911 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2003"
912 # you probably need to tweak this directory if you don't use the professional edition!
913 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio .NET 2003\Visual Studio .NET Professional 2003 - English\msvcr71.dll
914
915 !ELSEIF "$(MSVC_VARIANT)" == "DOTNET11"
916 # no redistributable available for this package!
917
918 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"
919 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 8\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC80.CRT\*.*
920
921 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20" || "$(MSVC_VARIANT)" == "MSVC2008EE"
922 # you need to download the redistributable package vcredist_x86.exe from Microsoft first,
923 # and copy it to the lib folder!!!
924 VCREDIST_EXE=$(WIRESHARK_LIBS)\vcredist_$(TARGET_MACHINE).exe
925
926 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2008"
927 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 9.0\VC\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC90.CRT\*.*
928
929 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010EE"
930 # you need to download the redistributable package vcredist_x86.exe from Microsoft first,
931 # and copy it to the lib folder!!!
932 VCREDIST_EXE=$(WIRESHARK_LIBS)\vcredist_$(TARGET_MACHINE).exe
933 !ELSEIF "$(MSVC_VARIANT)" == "MSVC2010"
934 MSVCR_DLL=$(PROGRAM_FILES)\Microsoft Visual Studio 10.0\VC\redist\$(TARGET_MACHINE)\Microsoft.VC100.CRT\*.*
935
936 !ELSE
937 !ERROR MSVC_VARIANT unknown
938 !ENDIF
939
940 !IF DEFINED(VCREDIST_EXE) && ! EXIST("$(VCREDIST_EXE)")
941 !ERROR Can't find $(VCREDIST_EXE). Have you downloaded it from Microsoft? \
942 See the developer's guide section "C-Runtime "Redistributable" files" for details how to get it
943 !ENDIF
944
945 ##### Advanced: Docbook/XML documentation generation #####
946 # If you want to generate the Docbook/XML based docs (User's and Developer's
947 # Guide, ...), you'll need some additional tools / libraries compared to the
948 # rest of the build process.
949 #
950 # FOR DETAILED INSTRUCTIONS TO GENERATE THE DOCS, SEE: docbook\README.txt.
951 #
952 # If you don't call the Makefile.nmake in the docbook dir to generate the
953 # docs, the following settings in this section will have no effect.
954
955 # formatting objects processor executable
956 # Comment this out if you don't have fop installed or you don't want the docs
957 # in PDF format.
958 #
959 # You may want to install the FOP hyphenation patterns from
960 # http://offo.sourceforge.net/hyphenation/
961 !IFNDEF FOP
962 FOP=fop-0.95\fop.bat
963 !ENDIF
964
965 # Additional options to fop.
966 FOP_OPTS=-Xmx256m
967
968 # html help compiler
969 # Comment this out if you don't have hhc.exe or you don't want the docs in
970 # .chm format.
971 #
972 # Beware: hhc.exe is NOT part of the MSVC packages in HHC_DIR mentioned above,
973 # so you'll need to install the HTML Help Workshop for this.
974 HHC_EXE="$(HHC_DIR)\hhc.exe"
975
976 # html to text converter for text version of release notes, e.g. elinks.
977 # This could also be "lynx", or "true" if neither elinks nor lynx is installed
978 # (cygwin: lynx works, elinks not available, links and true doesn't produce output)
979 #HTML2TXT=elinks -dump -dump-width 72
980 ##HTML2TXT=links -dump -width 72 ## XXX: Fails: For links -dump requires 'url' (filename) arg.
981 #HTML2TXT=lynx -dump -width=72 -nolist -stdin
982
983 !IFNDEF HTML2TXT
984 HTML2TXT=$(PYTHON) $(TOOLS_DIR)\html2text.py --width=72 --no-links
985 !ENDIF
986
987 # the XSL processor (part of cygwin's libxslt package)
988 XSLTPROC="xsltproc"
989
990 # the XML validator (part of cygwin's libxml2 package)
991 XMLLINT="xmllint"
992
993
994
995 ##############################################################################
996 #
997 # You should not have to change anything below this comment.
998 # If you do, it's a deficiency in the Makefile.nmake files;
999 # either tell wireshark-dev@wireshark.org about it, including
1000 # details of why you had to change it, or fix config.nmake
1001 # and any Makefile.nmake files that need to be changed, and
1002 # send us the patches, along with details of why the change
1003 # was necessary.
1004 #
1005 ##############################################################################
1006
1007 #
1008 # The RC_VERSION should be comma-separated, not dot-separated,
1009 # as per Graham Bloice's message in
1010 #
1011 #       http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
1012 #
1013 # "The RC_VERSION variable in config.nmake should be comma separated.
1014 # This allows the resources to be built correctly and the version
1015 # number to be correctly displayed in the explorer properties dialog
1016 # for the executables, and XP's tooltip, rather than 0.0.0.0."
1017 #
1018
1019 VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)$(VERSION_EXTRA)
1020 RC_VERSION=$(VERSION_MAJOR),$(VERSION_MINOR),$(VERSION_MICRO),$(VERSION_BUILD)
1021
1022 WTAP_VERSION=$(WTAP_VERSION_MAJOR).$(WTAP_VERSION_MINOR).$(WTAP_VERSION_MICRO)
1023 RC_WTAP_VERSION=$(WTAP_VERSION_MAJOR),$(WTAP_VERSION_MINOR),$(WTAP_VERSION_MICRO)
1024
1025 # GLib
1026 GLIB_CFLAGS=/I$(GTK_DIR)\include\glib-$(GLIB_VERSION) \
1027         /I$(GTK_DIR)\lib\glib-$(GLIB_VERSION)\include
1028 GLIB_LIBS=$(GTK_DIR)\lib\glib-$(GLIB_VERSION).lib \
1029         $(GTK_DIR)\lib\gmodule-$(GLIB_VERSION).lib \
1030         $(GTK_DIR)\lib\gobject-$(GLIB_VERSION).lib
1031 GTHREAD_LIBS=$(GTK_DIR)\lib\gthread-$(GLIB_VERSION).lib
1032
1033 # GTK+
1034 GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-2.0 \
1035         /I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
1036         /I$(GTK_DIR)\lib\gtk-2.0\include \
1037         /I$(GTK_DIR)\include\atk-1.0 \
1038         /I$(GTK_DIR)\include\cairo \
1039         /I$(GTK_DIR)\include\pango-1.0
1040 GTK_LIBS=$(GTK_DIR)\lib\gtk-win32-2.0.lib \
1041         $(GTK_DIR)\lib\gdk-win32-2.0.lib \
1042         $(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
1043         $(GTK_DIR)\lib\pango-1.0.lib \
1044         $(GLIB_LIBS)
1045
1046 # 2.18 was no good(Theming problem)
1047 !IF "$(GTK_INST_VERSION)" == "2.22" || "$(GTK_INST_VERSION)" == "2.16" || "$(GTK_INST_VERSION)" == "2.14"
1048 GTK_LIB_DIR=2.10.0
1049
1050 !IFDEF PNG_DLL
1051 NEED_LIBPNG_DLL=USE
1052 !ENDIF
1053 !IFDEF JPEG_DLL
1054 NEED_LIBJPEG_DLL=USE
1055 !ENDIF
1056 !IFDEF TIFF_DLL
1057 NEED_LIBTIFF_DLL=USE
1058 !ENDIF
1059 NEED_CAIRO_DLL=USE
1060 # Pango >=1.24.5 Needs these:
1061 NEED_FREETYPE_DLL=USE
1062 NEED_FONTCONFIG_DLL=USE
1063 NEED_EXPAT_DLL=USE
1064
1065 GTK_WIMP_DLLSRC_DIR=$(GTK_DIR)\lib\gtk-2.0\2.10.0\engines
1066 GTK_WIMP_DLLDST_DIR=lib\gtk-2.0\2.10.0\engines
1067 GTK_WIMP_RCSRC_DIR=$(GTK_DIR)\share\themes\MS-Windows\gtk-2.0
1068 GTK_WIMP_RCDST_DIR=etc\gtk-2.0
1069 !ELSE
1070 !ERROR ? Unknown or invalid GTK_INST_VERSION
1071 !ENDIF
1072
1073
1074 !IFDEF AIRPCAP_DIR
1075 AIRPCAP_CONFIG=^#define HAVE_AIRPCAP 1
1076 AIRPDCAP_CONFIG=^#define HAVE_AIRPDCAP 1
1077 #AIRPCAP_CFLAGS=/I$(AIRPCAP_DIR)\include
1078 !ELSE
1079 AIRPCAP_CONFIG=
1080 AIRPDCAP_CONFIG=
1081 !ENDIF
1082
1083 !IFDEF PCAP_DIR
1084 # Nmake uses carets to escape special characters
1085 WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
1086 #
1087 # This requires that, if you're *building* Wireshark, you have
1088 # the most recent WinPcap's development package.  If, at *run*
1089 # time, an older version of WinPcap, missing some routines,
1090 # is found, we work around that.
1091 #
1092 PCAP_FINDALLDEVS_CONFIG=^#define HAVE_PCAP_FINDALLDEVS 1
1093 PCAP_DATALINK_NAME_TO_VAL_CONFIG=^#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1
1094 PCAP_DATALINK_VAL_TO_NAME_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_NAME 1
1095 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1
1096 # PCAP_BREAKLOOP won't have any benefit on Win32, but breaks compatibility with 3.0
1097 PCAP_BREAKLOOP_CONFIG=
1098 PCAP_LIST_DATALINKS_CONFIG=^#define HAVE_PCAP_LIST_DATALINKS 1
1099 PCAP_FREE_DATALINKS_CONFIG=^#define HAVE_PCAP_FREE_DATALINKS 1
1100 PCAP_SET_DATALINK_CONFIG=^#define HAVE_PCAP_SET_DATALINK 1
1101 PCAP_OPEN_DEAD_CONFIG=^#define HAVE_PCAP_OPEN_DEAD 1
1102 BPF_IMAGE_CONFIG=^#define HAVE_BPF_IMAGE 1
1103 !ELSE
1104 # no WpdPack installed
1105 WINPCAP_CONFIG=
1106 PCAP_FINDALLDEVS_CONFIG=
1107 PCAP_DATALINK_NAME_TO_VAL_CONFIG=
1108 PCAP_DATALINK_VAL_TO_NAME_CONFIG=
1109 PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=
1110 PCAP_BREAKLOOP_CONFIG=
1111 PCAP_LIST_DATALINKS_CONFIG=
1112 PCAP_FREE_DATALINKS_CONFIG=
1113 PCAP_SET_DATALINK_CONFIG=
1114 PCAP_OPEN_DEAD_CONFIG=
1115 BPF_IMAGE_CONFIG=
1116 !ENDIF
1117
1118 !IF DEFINED(PCAP_DIR) && DEFINED(PCAP_REMOTE)
1119 PCAP_HAVE_REMOTE_CONFIG=^#define HAVE_REMOTE 1
1120 PCAP_REMOTE_CONFIG=^#define HAVE_PCAP_REMOTE 1
1121 PCAP_OPEN_CONFIG=^#define HAVE_PCAP_OPEN 1
1122 PCAP_SETSAMPLING_CONFIG=^#define HAVE_PCAP_SETSAMPLING 1
1123 !ELSE
1124 PCAP_HAVE_REMOTE_CONFIG=
1125 PCAP_REMOTE_CONFIG=
1126 PCAP_OPEN_CONFIG=
1127 PCAP_SETSAMPLING_CONFIG=
1128 !ENDIF
1129
1130 !IFDEF ZLIB_DIR
1131 ZLIB_PATH=$(ZLIB_DIR)
1132 ZLIB_CFLAGS=/I$(ZLIB_DIR)\include
1133 ZLIB_LIBS=$(ZLIB_DIR)\lib\zdll.lib
1134 ZLIB_DLL=$(ZLIB_DIR)\zlib1.dll
1135 # Nmake uses carets to escape special characters
1136 ZLIB_CONFIG=^#define HAVE_LIBZ 1
1137 ZLIB_GZCLEARERR_CONFIG=^#define HAVE_GZCLEARERR 1
1138 !else
1139 ZLIB_CFLAGS=
1140 ZLIB_LIBS=
1141 ZLIB_DLL=
1142 ZLIB_CONFIG=
1143 !ENDIF
1144
1145 !IFDEF C_ARES_PKG
1146 !UNDEF ADNS_DIR
1147 C_ARES_DIR=$(WIRESHARK_LIBS)\c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1148 C_ARES_CFLAGS=/I$(C_ARES_DIR)/include
1149 C_ARES_LIBS=$(C_ARES_DIR)\lib\libcares-2.lib
1150 C_ARES_DLL=$(C_ARES_DIR)\bin\libcares-2.dll
1151 # Nmake uses carets to escape special characters
1152 C_ARES_CONFIG=^#define HAVE_C_ARES 1
1153 !else
1154 C_ARES_CFLAGS=
1155 C_ARES_LIBS=
1156 C_ARES_CONFIG=
1157 !IFDEF ADNS_DIR
1158 ADNS_PATH=$(ADNS_DIR)\adns_win32\lib
1159 ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32
1160 ADNS_LIBS=$(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns\adns_dll.lib
1161 ADNS_DLL=$(WIRESHARK_LIBS)\$(MSVC_VARIANT)\adns\adns_dll.dll
1162 # Nmake uses carets to escape special characters
1163 ADNS_CONFIG=^#define HAVE_GNU_ADNS 1
1164 !else
1165 ADNS_CFLAGS=
1166 ADNS_LIBS=
1167 ADNS_CONFIG=
1168 !ENDIF # ADNS
1169 !ENDIF # C_ARES
1170
1171 !IFDEF KFW_DIR
1172 KFW_PATH=$(KFW_DIR)\bin
1173 KFW_CFLAGS=/I$(KFW_DIR)\include
1174 KFW_LIBS=$(KFW_DIR)\lib\krb5_32.lib
1175 # Nmake uses carets to escape special characters
1176 KFW_CONFIG=^#define HAVE_MIT_KERBEROS 1
1177 !else
1178 KFW_CFLAGS=
1179 KFW_LIBS=
1180 KFW_CONFIG=
1181 !ENDIF
1182
1183 !IFDEF PCRE_DIR
1184 PCRE_PATH=$(PCRE_DIR)\bin
1185 PCRE_CFLAGS=/I$(PCRE_DIR)\include
1186 PCRE_LIBS=$(PCRE_DIR)\lib\pcre.lib
1187 # Nmake uses carets to escape special characters
1188 PCRE_CONFIG=^#define HAVE_LIBPCRE 1
1189 !else
1190 PCRE_CFLAGS=
1191 PCRE_LIBS=
1192 PCRE_CONFIG=
1193 !ENDIF
1194
1195 !IFDEF NETTLE_DIR
1196 NETTLE_CFLAGS=/I$(NETTLE_DIR)
1197 NETTLE_LIBS=$(NETTLE_DIR)\libnettle.lib
1198 # Nmake uses carets to escape special characters
1199 NETTLE_CONFIG=^#define HAVE_LIBNETTLE 1
1200 !else
1201 NETTLE_CFLAGS=
1202 NETTLE_LIBS=
1203 NETTLE_CONFIG=
1204 !ENDIF
1205
1206 !IFDEF GNUTLS_PKG
1207 GNUTLS_DIR=$(WIRESHARK_LIBS)\gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
1208 GNUTLS_PATH=$(GNUTLS_DIR)
1209 # /DNOCRYPT avoids inclusion of Wincrypt.h, avoiding a X509_NAME define clash
1210 GNUTLS_CFLAGS=/I$(GNUTLS_DIR)\include /DNOCRYPT /DIMPORT_LIGNUTLSDLL
1211 GCRYPT_LIBS = $(GNUTLS_DIR)\bin\libgcrypt-11.lib
1212 GNUTLS_LIBS=\
1213         $(GNUTLS_DIR)\bin\libtasn1-3.lib        \
1214         $(GNUTLS_DIR)\bin\libgpg-error-0.lib    \
1215         $(GCRYPT_LIBS) \
1216         $(GNUTLS_DIR)\bin\libgnutls-26.lib
1217 # Nmake uses carets to escape special characters
1218 GNUTLS_CONFIG=^#define HAVE_LIBGNUTLS 1
1219 LIBGCRYPT_CONFIG=^#define HAVE_LIBGCRYPT 1
1220 !else
1221 GNUTLS_CFLAGS=
1222 GNUTLS_LIBS=
1223 GNUTLS_CONFIG=
1224 LIBGCRYPT_CONFIG=
1225 !ENDIF
1226
1227 !IFDEF LUA_DIR
1228 LUA_CFLAGS=/I$(LUA_DIR)\include
1229 LUA_LIBS=$(LUA_DIR)\lua5.1.lib
1230 # Nmake uses carets to escape special characters
1231 LUA_CONFIG=^#define HAVE_LUA 1
1232 LUA_VERSION=^#define HAVE_LUA_5_1 1
1233 !else
1234 LUA_CFLAGS=
1235 LUA_LIBS=
1236 LUA_CONFIG=
1237 !ENDIF
1238
1239 !IF DEFINED(PYTHON_EMBED)
1240 PYTHON_CFLAGS=/I$(PYTHON_DIR)\include
1241 PYTHON_LIBS=$(PYTHON_DIR)\libs\python$(PYTHON_VER).lib
1242 # Nmake uses carets to escape special characters
1243 PYTHON_CONFIG=^#define HAVE_PYTHON 1
1244 !else
1245 PYTHON_CFLAGS=
1246 PYTHON_LIBS=
1247 PYTHON_CONFIG=
1248 !ENDIF
1249
1250 !IFDEF PORTAUDIO_DIR
1251 # Nmake uses carets to escape special characters
1252 PORTAUDIO_CONFIG=^#define HAVE_LIBPORTAUDIO 1
1253 !IF "$(PORTAUDIO_VERSION)" == "18"
1254 # V18 uses API version 1 and v19 API version 2
1255 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\pa_common
1256 PORTAUDIO_API_CONFIG=^#define PORTAUDIO_API_1 1
1257 !ELSE
1258 PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\include /I$(PORTAUDIO_DIR)\src\common /I$(PORTAUDIO_DIR)\src\os\win /DPA_NO_DS /DPA_NO_ASIO
1259 !ENDIF
1260 !ELSE
1261 PORTAUDIO_CFLAGS=
1262 PORTAUDIO_CONFIG=
1263 !ENDIF
1264
1265 !IFDEF HHC_DIR
1266 !IF "$(MSVC_VARIANT)" == "MSVC6"
1267 HHC_CFLAGS=/I"$(HHC_DIR)\include" -DHHC_DIR
1268 HHC_LIBS="$(HHC_DIR)\lib\htmlhelp.lib"
1269 !ELSE
1270 HHC_CFLAGS=-DHHC_DIR
1271 HHC_LIBS=htmlhelp.lib
1272 !ENDIF
1273 !ELSE
1274 HHC_CFLAGS=
1275 HHC_LIBS=
1276 !ENDIF
1277
1278 !IFDEF SMI_DIR
1279 SMI_CONFIG=^#define HAVE_LIBSMI 1
1280 SMI_CFLAGS=/I$(SMI_DIR)\include
1281 SMI_LIBS=$(SMI_DIR)\lib\smi.lib
1282 !ELSE
1283 SMI_LIBS=
1284 SMI_CFLAGS=
1285 SMI_CONFIG=
1286 !ENDIF
1287
1288 !IFDEF GEOIP_DIR
1289 GEOIP_CONFIG=^#define HAVE_GEOIP 1
1290 GEOIP_CFLAGS=/I$(GEOIP_DIR)
1291 GEOIP_LIBS=$(GEOIP_DIR)\GeoIP.lib
1292 !ELSE
1293 GeoIP_LIBS=
1294 GeoIP_CFLAGS=
1295 GeoIP_CONFIG=
1296 !ENDIF
1297
1298 !IFDEF ENABLE_LIBWIRESHARK
1299 LIBWIRESHARK_CONFIG=^#define HAVE_LIBWIRESHARKDLL 1
1300 # Link plugins with the import library of libwireshark.dll
1301 LINK_PLUGINS_WITH_LIBWIRESHARK=USE
1302 !ELSE
1303 LIBWIRESHARK_CONFIG=
1304 !ENDIF
1305
1306 # Construct the path
1307 PATH=$(PATH);$(CYGWIN_PATH);$(GTK_DIR)\bin;$(GETTEXT_DIR)\bin;$(ZLIB_PATH);$(ADNS_PATH)
1308
1309 # We can't use a lot of IPv6 code with plain Visual C++ 6.0
1310 !IF "$(MSVC_VARIANT)" == "MSVC6" && !DEFINED(MSSDK)
1311 INET6_CONFIG=
1312 !ELSE
1313 INET6_CONFIG=^#define INET6 1
1314 !ENDIF
1315
1316 !IF "$(MSVC_VARIANT)" == "MSVC6" && !DEFINED(MSSDK)
1317 NTDDNDIS_CONFIG=
1318 !ELSE
1319 NTDDNDIS_CONFIG=^#define HAVE_NTDDNDIS_H 1
1320 !ENDIF