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