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