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