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