aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
blob: 5831ef3350de3ee1e07cc851837ae4c3276d7829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
# Some more information about the settings in this file can be found in
# the file README.windows and the Developer's Guide (available online).

##### Program name #####
# Changing the name is experimental and may break the installer/uninstaller and possibly other stuff.
# Application data will still be under the same dir as Wireshark so preference files, profiles, and etc
# will be shared with a "normal" Wireshark installation.
# Note that support libraries need to be in PROGRAM_NAME-libs...

!IFNDEF PROGRAM_NAME
PROGRAM_NAME=Wireshark
!ENDIF

##### Target platform #####

# Pick up the value from the environment, VS2012 onwards sets PLATFORM via
# vcvarsall.bat (it appears for X64 only).
# For VS2010 and earlier you'll have to set the value yourself
!IF "$(PLATFORM)" == "x64" || "$(PLATFORM)" == "X64"
WIRESHARK_TARGET_PLATFORM=win64
!ENDIF

# Only "win32" and "win64" are valid (for now).
# This can be defined in the system environment.
!IFNDEF WIRESHARK_TARGET_PLATFORM
WIRESHARK_TARGET_PLATFORM=win32
!ENDIF

##### Versions #####

# The VCS's description of our build. Updated by make-version.pl
VCS_REVISION=0

# The current Wireshark version. Recommended: Leave unchanged.
# Updated by make-version.pl
VERSION_MAJOR=1
VERSION_MINOR=99
VERSION_MICRO=6
VERSION_BUILD=$(VCS_REVISION)

# Local build information. Recommended: Unique string for your
# environment, e.g. "-JackStackBarbecue". Updated by make-version.pl
# Defaults to the environment variable WIRESHARK_VERSION_EXTRA

VERSION_EXTRA=$(WIRESHARK_VERSION_EXTRA)

# Banner shown at top right of Qt welcome screen.
!IFDEF WIRESHARK_VERSION_FLAVOR
VERSION_FLAVOR=$(WIRESHARK_VERSION_FLAVOR)
!ELSE
VERSION_FLAVOR=Development Build
!ENDIF

# The version of the wiretap library. Recommended: Leave unchanged.
WTAP_VERSION_MAJOR=$(VERSION_MAJOR)
WTAP_VERSION_MINOR=$(VERSION_MINOR)
WTAP_VERSION_MICRO=0

##### Directories #####

#
# Base directory, where your libraries reside, which are needed to
# compile the sources. This setting is used only inside this file.
# This can be defined in the system environment.
#
!IFNDEF WIRESHARK_LIB_DIR
!IFDEF WIRESHARK_BASE_DIR
WIRESHARK_LIB_DIR=$(WIRESHARK_BASE_DIR)\$(PROGRAM_NAME)-$(WIRESHARK_TARGET_PLATFORM)-libs
!ELSE
WIRESHARK_LIB_DIR=C:\$(PROGRAM_NAME)-$(WIRESHARK_TARGET_PLATFORM)-libs
!ENDIF
!ENDIF

#
# Base directory, where your programs reside.
# This setting is used only inside this file.
#
PROGRAM_FILES=$(PROGRAMFILES)
PROGRAM_FILES_W6432=$(PROGRAMW6432)

#
# Location of the "tools" directory. This affects the path to textify.ps1
!IFNDEF TOOLS_DIR
TOOLS_DIR=tools
!ENDIF

#
# Machine type for the compiler and linker
# TARGET_MACHINE (Used for link /MACHINE) should be one of "X86" or "X64"
# (sorry ARM, Alpha, MIPS, and Itanium fans).
# CPU (Used by win32.mak) should be one of "i386" or "AMD64".
# PROCESSOR_ARCHITECTURE (Used for redistributable packages and
# manifests) should be one of "x86" or "amd64".
!if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
TARGET_MACHINE=x86
CPU=i386
PROCESSOR_ARCHITECTURE=x86
!else if "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
TARGET_MACHINE=x64
CPU=AMD64
PROCESSOR_ARCHITECTURE=amd64
!else
!error Your mysterious moon-man architecture "$(WIRESHARK_TARGET_PLATFORM)" frightens and confuses us.
!endif


##### Microsoft Visual C / Studio Variant #####

# Pick up the value from the environment, VS2012 onwards sets this via vcvarsall.bat
# For VS2010 and earlier you'll have to set the value yourself
# Assume that the lack of detection of Express editions doesn't matter
!IF "$(VISUALSTUDIOVERSION)" == "10.0"
MSVC_VARIANT=MSVC2010
!ELSE IF "$(VISUALSTUDIOVERSION)" == "11.0"
MSVC_VARIANT=MSVC2012
!ELSE IF "$(VISUALSTUDIOVERSION)" == "12.0"
MSVC_VARIANT=MSVC2013
!ENDIF

# For the different Studios, see: http://en.wikipedia.org/wiki/Microsoft_Visual_Studio
# Only one of the following MSVC_VARIANT settings should be used

# "Microsoft Visual Studio 2008"
# Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
#MSVC_VARIANT=MSVC2008

# "Microsoft Visual C++ 2008 Express Edition"
# Visual C++ 9.0, _MSC_VER 1500, msvcr90.dll
#MSVC_VARIANT=MSVC2008EE

# "Microsoft Visual Studio 2010"
# Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
#MSVC_VARIANT=MSVC2010

# "Microsoft Visual C++ 2010 Express Edition"
# Visual C++ 10.0, _MSC_VER 1600, msvcr100.dll
#MSVC_VARIANT=MSVC2010EE

# "Microsoft Visual C++ 2012 Express Edition"
# Visual C++ 11.0, _MSC_VER 1700, msvcr110.dll
## Notes:
##    1.  win32.mak is apparently not part of the MS 2012EE install;
##        To build Windows Wireshark, win32.mak must be obtained [*]
##        and copied to a dir specified in the Windows Environment
##        variable 'include' (or to a dir added to the list in 'include').
##        Note that the 'include' environment variable is initialized
##         when vcvarsall.bat is called to set up the build environment.
##        [*]One possibility: download the Windows 7 Platform SDK and copy
##         win32.mak from ...\Microsoft SDKs\Windows\v7.[something]\include
##         See: https://ask.wireshark.org/questions/14343/setting-development-project-under-visual-studio-2012
##    2. Dec 28,2012: "VS2012 Update 1" is required to use VS 2012 to build an .exe which
##        will run on Windows XP (as well as on later versions of Windows).
##        ToDo: It appears that some special setup is required to to do this.
##          https://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx
##
#MSVC_VARIANT=MSVC2012EE

# "Microsoft Visual Studio 2012"
# Visual C++ 11.0, _MSC_VER 1700, msvcr110.dll
#MSVC_VARIANT=MSVC2012

# "Microsoft Visual Studio 2013"
# Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
#MSVC_VARIANT=MSVC2013

# "Microsoft Visual Studio 2013 Express Edition"
# Visual C++ 12.0, _MSC_VER 1800, msvcr120.dll
##    Notes:
##    1.  win32.mak is apparently not part of the MS 2013EE install;
##        To build Windows Wireshark, win32.mak must be obtained [*]
##        and copied to a dir specified in the Windows Environment
##        variable 'include' (or to a dir added to the list in 'include').
##        Note that the 'include' environment variable is initialized
##         when vcvarsall.bat is called to set up the build environment.
##        [*]One possibility: download the Windows 7 Platform SDK and copy
##         win32.mak from ...\Microsoft SDKs\Windows\v7.[something]\include
##         See: https://ask.wireshark.org/questions/14343/setting-development-project-under-visual-studio-2012
#MSVC_VARIANT=MSVC2013EE

# The default if we haven't set a system environment variable or
# uncommented an entry above.  We default to the version recommended
# in the Developer's Guide, namely MSVC++ 2010 Express Edition.
!IFNDEF MSVC_VARIANT
MSVC_VARIANT=MSVC2010EE
!ENDIF

#
# Optional: To compile some time critical code from assembler instead of C
#
# If you have the NASM compiler, set this to the NASM executable.
# http://nasm.sourceforge.net/
#
# If you don't have NASM, comment this line out, so that NASM
# isn't defined.
#
NASM=$(WIRESHARK_LIB_DIR)\nasm-2.09.08\nasm.exe

#
# The Python interpreter is used as part of the buildsystem
#
# This will override the automatic detection below.
#PYTHON_VER=27
#PYTHON_DIR=C:\Python$(PYTHON_VER)

#
# If you don't have the native Python package installed, you can use
# the Cygwin version (not recommended)
#
#PYTHON=env python

# Santity check: native vs Cygwin Python options
!IF DEFINED(PYTHON) && DEFINED(PYTHON_DIR)
!ERROR PYTHON and PYTHON_DIR cannot be specified at the same time
!ENDIF

# Find native Python automatically if PYTHON(_DIR) wasn't defined
!IF !DEFINED(PYTHON) && !DEFINED(PYTHON_DIR)
!IF EXIST(c:\tools\python2\python.exe)
# Chocolatey default
PYTHON_DIR=C:\tools\python2
!ELSE IF EXIST(c:\Python27\python.exe)
PYTHON_VER=27
!ELSE IF EXIST(c:\Python26\python.exe)
PYTHON_VER=26
!ELSE IF EXIST(c:\Python25\python.exe)
PYTHON_VER=25
!ELSE IF EXIST(c:\Python24\python.exe)
PYTHON_VER=24
!ENDIF

!IF DEFINED(PYTHON_VER)
PYTHON_DIR=C:\Python$(PYTHON_VER)
!ENDIF
!ENDIF

!IF DEFINED(PYTHON_DIR)
PYTHON="$(PYTHON_DIR)\python.exe"
PATH=$(PYTHON_DIR);$(PATH)
!ENDIF

# If all else fails, try to find it on the PATH
!IF !DEFINED(PYTHON)
PYTHON=python
!ENDIF

#### Save files as pcap-ng by default. Comment out to use pcap instead. ####
PCAP_NG_DEFAULT=^#define PCAP_NG_DEFAULT 1

##### To Use packet editor uncomment this line ####
### Experimental - work in progress
WANT_PACKET_EDITOR=^#define WANT_PACKET_EDITOR 1

!if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
DOWNLOAD_TAG=2015-04-06
##### Win32 Libraries #####
#
# Mandatory: GLib settings
#
# Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
#
GLIB_VERSION=2.0

#
# Mandatory: GLib, GTK & related library settings
#
# Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
#
# If you want building with GTK+, set GTK_DIR to the pathname of the
# directory in which the "include" and "lib" directories reside.
#
# Set the name to gtk3 if you want to use gtk3
GTK_NAME=gtk2
GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)


# These macros are used by the nsis installer script and by the install target.
#EXPAT_DLL=libexpat-1.dll
FFI_DLL=libffi-6.dll
FONTCONFIG_DLL=libfontconfig-1.dll
FREETYPE_DLL=libfreetype-6.dll
INTL_DLL=libintl-8.dll
HARFBUZZ_DLL=libharfbuzz-0.dll
JASPER_DLL=libjasper-1.dll
JPEG_DLL=libjpeg-8.dll
LZMA_DLL=liblzma-5.dll
PIXMAN_DLL=libpixman-1-0.dll
PNG_DLL=libpng15-15.dll
SJLJ_DLL=libgcc_s_sjlj-1.dll
TIFF_DLL=libtiff-5.dll
XML_DLL=libxml2-2.dll

# This macro is used by the setup target.
!IF "$(GTK_NAME)" == "gtk2"
GDK_DLL=libgdk-win32-2.0-0.dll
GTK_DLL=libgtk-win32-2.0-0.dll
#GTK_PKG=2.24.10-2.7
GTK_PKG=2.24.23-1.1
PKG_SUFIX=ws
!ELSE
GDK_DLL=libgdk-3-0.dll
GTK_DLL=libgtk-3-0.dll
PKG_SUFIX=ws
GTK_PKG=3.4.4-2.1
#GTK_PKG=3.6.1-1.1
!ENDIF

#
# Mandatory: Version numbers of GTK and pango.
#
# (MAJOR + MINOR Version number but without MICRO version number)
# These macros are used by the nsis installer script and by the setup target.
#
!IF "$(GTK_NAME)" == "gtk2"
GTK_INST_VERSION=2.24
!ELSE
GTK_INST_VERSION=3.4
#GTK_INST_VERSION=3.6
!ENDIF

#
# Recommended: Qt
#
# This must point to a top-level Qt directory. QMake should be in
# $(QT5_BASE_DIR)\bin
#
# Qt's various paths are hardcoded but with care you can relocate your
# installation directory:
# http://stackoverflow.com/questions/913642/qmake-and-qt-install-prefix-how-can-i-select-a-new-location-for-qt-library
#
# NOTE> the qmake command given below returns a path with forward slashes,
#	which will need to be changed to backslashes for things to work properly
#QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
!IF !DEFINED(QT5_BASE_DIR)
# Wireshark custom
!IF EXIST(C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws)
QT5_BASE_DIR=C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws
# Digia official
!ELSE IF EXIST(C:\Qt\Qt5.1.1\5.1.1\msvc2010)
QT5_BASE_DIR=C:\Qt\Qt5.1.1\5.1.1\msvc2010
# Qt 5.2.1 web installer default paths
!ELSE IF EXIST(C:\Qt\5.2.1\msvc2010)
QT5_BASE_DIR=C:\Qt\5.2.1\msvc2010
!ELSE IF EXIST(C:\Qt\5.2.1\msvc2012)
QT5_BASE_DIR=C:\Qt\5.2.1\msvc2012
!ELSE IF EXIST(C:\Qt\5.2.1\msvc2012_64)
QT5_BASE_DIR=C:\Qt\5.2.1\msvc2012_64
!ELSE IF EXIST(C:\Qt\Qt5.3.0\5.3\msvc2013)
QT5_BASE_DIR=C:\Qt\Qt5.3.0\5.3\msvc2013
!ELSE IF EXIST(C:\Qt\5.3\msvc2013)
QT5_BASE_DIR=C:\Qt\5.3\msvc2013
# Digia official, installed in $(WIRESHARK_LIB_DIR)
!ELSE IF EXIST($(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010)
QT5_BASE_DIR=$(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010
!ENDIF
!ENDIF

#
# Recommended: WinPcap developer's pack to capture network traffic.
#
# If you have the WinPcap developer's pack (at least version 3.0),
# set this to the directory in which the WinPcap developer's pack resides.
#
# If you don't have the WPdpack, comment this line out, so that
# PCAP_DIR isn't defined.
#
PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
# This macro is used by the NSIS installer script, PortableApps, and by the
# setup target.
WINPCAP_VERSION=4_1_3
WPD_VERSION=4_1_2

#
# Optional: WinPcap remote capture support and new API
# (pcap_open(), pcap_findalldevs_ex(), etc.)
#
PCAP_REMOTE=1

#
# Optional: The ZLib enables unzipping of gzip compressed capture files
# "on the fly".
#
# If you have Zlib, set this to directory in which the Zlib headers
# and .lib file are stored.
#
# If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
# defined.
ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib-1.2.8

#
# Optional: the ADNS library enables asynchronous (nonblocking) DNS
# name resolvings.
#
# If you have GNU ADNS, set this to the directory in which the GNU ADNS
# .lib file is stored.
#
# If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
# isn't defined.
#
# If C_ARES_DIR is defined below, it will override this setting.
#
#ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws

#
# Optional: the c-ares library enables asynchronous (nonblocking) DNS
# name resolvings.
#
# If you have c-ares, set this to the directory in which the c-ares
# .lib file is stored. Setting this will override ADNS_DIR above. You
# can't have both.
#
# If you're using Visual C++ 6.0, you'll have to use a platform SDK that
# defines socklen_t, such as Windows Server 2003 PSDK.
#
# If you don't have c-ares, comment this line out, so that C_ARES_DIR
# isn't defined.
#
C_ARES_PKG=1.9.1-1

#
# Optional: the GnuTLS library enables ssl decryption.
#
# If you have the GnuTLS library, set this to the package version.
#
# If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
# isn't defined.
#
# Platform SDK conflicts with openssl.h header
GNUTLS_PKG=3.2.15-2.7
GPGERROR_DLL=libgpg-error-0.dll
GCC_DLL=libgcc_s_sjlj-1.dll

#
# Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
#
# If you have the kerberos for windows (mit) library, set this to the
# directory where the kfw package is stored.
#
# If you don't have KFW, comment this line out, so that KFW_DIR
# isn't defined.
#
KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3-2-2-i386-ws-vc6
COMERR_DLL=comerr32.dll
KRB5_DLL=krb5_32.dll
K5SPRT_DLL=k5sprt32.dll

# Optional: the LUA library enables scripting support.
#
# If you have the LUA library, set this to the directory in which
# the LUA package is stored.
#
# If you don't have LUA, comment this line out, so that LUA_DIR
# isn't defined.
#
!IF "$(MSVC_VARIANT)" == "MSVC2013" ||  "$(MSVC_VARIANT)" == "MSVC2013EE"
LUA_DIST=-5.2.3_Win32_dll12
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" ||  "$(MSVC_VARIANT)" == "MSVC2012EE"
LUA_DIST=-5.2.3_Win32_dll11
!ELSE
LUA_DIST=-5.2.3_Win32_dll10
!ENDIF
LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.2.3

#
# Optional: the PORTAUDIO library enables audio output for RTP streams.
#
# If you have the PORTAUDIO library (used for rtp_player), set this to
# the directory in which the PORTAUDIO library is stored.
#
# If you don't have PORTAUDIO, comment this line out, so that
# PORTAUDIO_DIR isn't defined.
#
#PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2

#
# Version number of PortAudio
#
#PORTAUDIO_VERSION=18
PORTAUDIO_VERSION=19

#
# Optional: AirPcap developer's pack to capture wireless network traffic
# incl. 802.11 management frames.
#
# If you have the AirPcap developer's pack, set this to the directory
# in which the AirPcap developer's pack resides.
#
# If you don't have the AirPcap developer's pack, comment this line out,
# so that AIRPCAP_DIR isn't defined.
#
AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack

#
# Optional: LIBSMI, System Management Interface
#
# Used for oid-name resolution for SNMP and other protocols
#
SMI_PKG=svn-40773

#
# Optional: GeoIP, IP address database lookups
#
# Used to map IP addresses to MaxMind GeoIP database entries
#
GEOIP_PKG=1.5.1-2

#
# Optional: WinSparkle, software updates
#
# Used for automatic software updates
#
WINSPARKLE_PKG=0.3-44-g2c8d9d3-win32ws

!else
DOWNLOAD_TAG=2015-04-06
##### Win64 Libraries #####
#
# Mandatory: GLib settings
#
# Please note: Since Wireshark release 1.0.0, we no longer support GLib1.x
#
GLIB_VERSION=2.0

#
# Mandatory: GLib, GTK & related library settings
#
# Please note: Since Wireshark release 1.0.0, we no longer support GTK1.x
#
# If you want building with GTK+, set GTK_DIR to the pathname of the
# directory in which the "include" and "lib" directories reside.
#
#
# Set the name to gtk3 if you want to use gtk3 - (experimental ?)
GTK_NAME=gtk2
GTK_DIR=$(WIRESHARK_LIB_DIR)\$(GTK_NAME)

# These macros are used by the nsis installer script and by the install target.
#EXPAT_DLL=libexpat-1.dll
FFI_DLL=libffi-6.dll
FONTCONFIG_DLL=libfontconfig-1.dll
FREETYPE_DLL=libfreetype-6.dll
INTL_DLL=libintl-8.dll
HARFBUZZ_DLL=libharfbuzz-0.dll
JASPER_DLL=libjasper-1.dll
JPEG_DLL=libjpeg-8.dll
LZMA_DLL=liblzma-5.dll
PIXMAN_DLL=libpixman-1-0.dll
PNG_DLL=libpng16-16.dll
#SEH_DLL=libgcc_s_seh-1.dll
TIFF_DLL=libtiff-5.dll
XML_DLL=libxml2-2.dll

# These macros are used by the setup target.
!IF "$(GTK_NAME)" == "gtk2"
GDK_DLL=libgdk-win32-2.0-0.dll
GTK_DLL=libgtk-win32-2.0-0.dll
GTK_PKG=2.24.23-3.39
#GTK_PKG=2.24.23-1.1
PKG_SUFIX=ws
!ELSE
GDK_DLL=libgdk-3-0.dll
GTK_DLL=libgtk-3-0.dll
PKG_SUFIX=ws
GTK_PKG=3.4.4-2.1
#GTK_PKG=3.6.1-1.1
!ENDIF

#
# Mandatory: Version numbers of GTK and pango.
#
# (MAJOR + MINOR Version number but without MICRO version number)
# These macros are used by the nsis installer script and by the setup target.
#
!IF "$(GTK_NAME)" == "gtk2"
#GTK_INST_VERSION=2.16
GTK_INST_VERSION=2.24
!ELSE
#GTK_INST_VERSION=3.4
GTK_INST_VERSION=3.6
!ENDIF

#
# Recommended: Qt
#
# This must point to a top-level Qt directory. QMake should be in
# $(QT5_BASE_DIR)\bin
#
# Qt's various paths are hardcoded but with care you can relocate your
# installation directory:
# http://stackoverflow.com/questions/913642/qmake-and-qt-install-prefix-how-can-i-select-a-new-location-for-qt-library
#
#QT5_BASE_DIR=output of "qmake -query QT_INSTALL_PREFIX"
!IF !DEFINED(QT5_BASE_DIR)
# Wireshark custom
!IF EXIST(C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws)
QT5_BASE_DIR=C:\Qt\Qt-5.1.1-MSVC2010-$(WIRESHARK_TARGET_PLATFORM)-ws
# Digia official
!ELSE IF EXIST(C:\Qt\Qt5.1.1\5.1.1\msvc2010)
QT5_BASE_DIR=C:\Qt\Qt5.1.1\5.1.1\msvc2010
!ELSE IF EXIST(C:\Qt\5.3\msvc2013_64)
QT5_BASE_DIR=C:\Qt\5.3\msvc2013_64
# Digia official, installed in $(WIRESHARK_LIB_DIR)
!ELSE IF EXIST($(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010)
QT5_BASE_DIR=$(WIRESHARK_LIB_DIR)\Qt5.1.1\5.1.1\msvc2010
!ENDIF
!ENDIF

#
# Recommended: WinPcap developer's pack to capture network traffic.
#
# If you have the WinPcap developer's pack (at least version 3.0),
# set this to the directory in which the WinPcap developer's pack resides.
#
# If you don't have the WPdpack, comment this line out, so that
# PCAP_DIR isn't defined.
#
PCAP_DIR=$(WIRESHARK_LIB_DIR)\WPdpack
# This macro is used by the NSIS installer script, PortableApps, and by the
# setup target.
WINPCAP_VERSION=4_1_3
WPD_VERSION=4_1_2

#
# Optional: WinPcap remote capture support and new API
# (pcap_open(), pcap_findalldevs_ex(), etc.)
#
PCAP_REMOTE=1

#
# Optional: The ZLib enables unzipping of gzip compressed capture files
# "on the fly".
#
# If you have Zlib, set this to directory in which the Zlib headers
# and .lib file are stored.
#
# If you don't have Zlib, comment this line out, so that ZLIB_DIR isn't
# defined.
#
ZLIB_DIR=$(WIRESHARK_LIB_DIR)\zlib-1.2.8

#
# Optional: the ADNS library enables asynchronous (nonblocking) DNS
# name resolvings.
#
# If you have GNU ADNS, set this to the directory in which the GNU ADNS
# .lib file is stored.
#
# If you don't have GNU ADNS, comment this line out, so that ADNS_DIR
# isn't defined.
#
# If C_ARES_DIR is defined below, it will override this setting.
#
#ADNS_DIR=$(WIRESHARK_LIB_DIR)\adns-1.0-win32-05ws

#
# Optional: the c-ares library enables asynchronous (nonblocking) DNS
# name resolvings.
#
# If you have c-ares, set this to the directory in which the c-ares
# .lib file is stored. Setting this will override ADNS_DIR above. You
# can't have both.
#
# If you're using Visual C++ 6.0, you'll have to use a platform SDK that
# defines socklen_t, such as Windows Server 2003 PSDK.
#
# If you don't have c-ares, comment this line out, so that C_ARES_DIR
# isn't defined.
#
C_ARES_PKG=1.9.1-1

#
# Optional: the GnuTLS library enables ssl decryption.
#
# If you have the GnuTLS library, set this to the package version.
#
# If you don't have GnuTLS, comment this line out, so that GNUTLS_PKG
# isn't defined.
#
# Platform SDK conflicts with openssl.h header
GNUTLS_PKG=3.2.15-2.9
GPGERROR_DLL=libgpg-error6-0.dll
GCC_DLL=libgcc_s_seh-1.dll

#
# Optional: the KFW library enables kerberos/sasl/dcerpc decryption.
#
# If you have the kerberos for windows (mit) library, set this to the
# directory where the kfw package is stored.
#
# If you don't have KFW, comment this line out, so that KFW_DIR
# isn't defined.
#
KFW_DIR=$(WIRESHARK_LIB_DIR)\kfw-3-2-2-x64-ws
COMERR_DLL=comerr64.dll
KRB5_DLL=krb5_64.dll
K5SPRT_DLL=k5sprt64.dll

#
# Optional: the LUA library enables scripting support.
#
# If you have the LUA library, set this to the directory in which
# the LUA package is stored.
#
# If you don't have LUA, comment this line out, so that LUA_DIR
# isn't defined.
#
!IF "$(MSVC_VARIANT)" == "MSVC2013" ||  "$(MSVC_VARIANT)" == "MSVC2013EE"
LUA_DIST=-5.2.3_Win64_dll12
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" ||  "$(MSVC_VARIANT)" == "MSVC2012EE"
LUA_DIST=-5.2.3_Win64_dll11
!ELSE
LUA_DIST=-5.2.3_Win64_dll10
!ENDIF
LUA_DIR=$(WIRESHARK_LIB_DIR)\lua5.2.3

#
# Optional: the PORTAUDIO library enables audio output for RTP streams.
#
# If you have the PORTAUDIO library (used for rtp_player), set this to
# the directory in which the PORTAUDIO library is stored.
#
# If you don't have PORTAUDIO, comment this line out, so that
# PORTAUDIO_DIR isn't defined.
#
#PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v18_1
PORTAUDIO_DIR=$(WIRESHARK_LIB_DIR)\portaudio_v19_2

#
# Version number of PortAudio
#
#PORTAUDIO_VERSION=18
PORTAUDIO_VERSION=19

#
# Optional: AirPcap developer's pack to capture wireless network traffic
# incl. 802.11 management frames.
#
# If you have the AirPcap developer's pack, set this to the directory
# in which the AirPcap developer's pack resides.
#
# If you don't have the AirPcap developer's pack, comment this line out,
# so that AIRPCAP_DIR isn't defined.
#
AIRPCAP_DIR=$(WIRESHARK_LIB_DIR)\AirPcap_Devpack_4_1_0_1622\AirPcap_Devpack

#
# Optional: LIBSMI, System Management Interface
#
# Used for oid-name resolution for SNMP and other protocols
#
SMI_PKG=svn-40773

#
# Optional: GeoIP, IP address database lookups
#
# Used to map IP addresses to MaxMind GeoIP database entries
#
GEOIP_PKG=1.5.1-2

#
# Optional: WinSparkle, software updates
#
# Used for automatic software updates
#
WINSPARKLE_PKG=0.3-44-g2c8d9d3-win64ws

!endif
##### win32 / win64 #####

!IF "$(GTK_NAME)" == "gtk2"
GTK_ETC_DIR=etc\gtk-2.0
GTK_ENGINES_DIR=lib\gtk-2.0\$(GTK_LIB_DIR)\engines
GTK_MODULES_DIR=lib\gtk-2.0\modules
GTK_THEMES_DIR=share\themes\MS-Windows\gtk-2.0
!ELSE
GTK_ETC_DIR=etc\gtk-3.0
GTK_SCHEMAS_DIR=\share\glib-2.0\schemas
!ENDIF


##### Tools #####

# Set the following mandatory commands to find the tools.
# The easiest way is to use the corresponding packages from Cygwin.

# Set up the path to the Cygwin binaries
# First check whether a 32-bit Cygwin installation exists
# If not, check for a 64-bit Cygwin installation
!IF EXIST($(CYGWIN_PATH))
# Do nothing
!ELSE IF EXIST(C:\cygwin\bin)
CYGWIN_PATH=C:\cygwin\bin
!ELSE IF EXIST(C:\cygwin64\bin)
CYGWIN_PATH=C:\cygwin64\bin
!ELSE IF EXIST(C:\tools\cygwin\bin)
# Chocolatey default
CYGWIN_PATH=C:\tools\cygwin\bin
!ELSE
!ERROR Could not locate Cygwin, please set CYGWIN_PATH explicitly in config.nmake
!ENDIF

# command for a shell (cygwin's bash package recommended)
SH_PROG=bash

# bash versions after 3.1.6 need the 'igncr' shell option to be able to
#  process scripts in Windows 'native format' (dos crlf format).
# The following !IF results in the option being used only if it is available
#  since using it on bash version 3.1.6 (or earlier) is not required and
#  will cause an error message.
!if "$(SH_PROG)"=="bash" && [$(CYGWIN_PATH)\bash -c "set -o igncr" 2>nul: ] == 0
SH_FLAGS=-o igncr
!endif

SH=$(SH_PROG) $(SH_FLAGS)

# PowerShell
# Compatibility testing (...or should we always force version 2?)
#POWERSHELL=powershell -Version 2.0 -executionpolicy bypass -File
# Normal
POWERSHELL=powershell -executionpolicy bypass -File

# command for perl (cygwin's perl package recommended)
PERL=perl

# command for pod2man and pod2html
# (part of the perl package, usually leave these unchanged)
POD2MAN=$(SH) pod2man
POD2HTML=$(SH) pod2html

# command for sed (cygwin's sed recommended)
SED=sed

# Command for Flex. Cygwin's flex or Chocolatey's win_flex
# recommended.
# Absolute or relative paths must be Windows-style

#LEX=\custom\path\to\flex

# Find flex automatically
!IF !DEFINED(LEX)
!IF DEFINED(CHOCOLATEYINSTALL) && EXIST("$(CHOCOLATEYINSTALL)\bin\win_flex.exe")
LEX=$(CHOCOLATEYINSTALL)\bin\win_flex
!ELSE IF EXIST("$(CYGWIN_PATH)\flex.exe")
# We add Cygwin to PATH below.
LEX=flex
!ENDIF
!ENDIF

# Command for Bison. Cygwin's bison or Chocolatey's win_bison
# recommended.
# Absolute or relative paths must be Windows-style

#YACC=\custom\path\to\bison

# Find bison automatically
!IF !DEFINED(YACC)
!IF DEFINED(CHOCOLATEYINSTALL) && EXIST("$(CHOCOLATEYINSTALL)\bin\win_bison.exe")
YACC=$(CHOCOLATEYINSTALL)\bin\win_bison
!ELSE IF EXIST("$(CYGWIN_PATH)\bison.exe")
# We add Cygwin to PATH below.
YACC=bison
!ENDIF
!ENDIF

# Make our text files Windows-native
TEXTIFY=$(POWERSHELL) $(TOOLS_DIR)/textify.ps1

#
# Optional: Build the NSIS installer.
#
# If NSIS is installed in a standard location (under Program Files
# or Program Files (x86)) you shouldn't have to change anything.
#
# If NSIS is installed in a custom location uncomment the following
# line and adjust the path accordingly.
#

#MAKENSIS="\custom\path\to\NSIS\makensis.exe"

# Find NSIS automatically
!IF !DEFINED(MAKENSIS)
!IF EXIST("$(PROGRAM_FILES)\NSIS\makensis.exe")
MAKENSIS="$(PROGRAM_FILES)\NSIS\makensis.exe"
!ELSE IF EXIST("$(PROGRAM_FILES_W6432)\NSIS\makensis.exe")
MAKENSIS="$(PROGRAM_FILES_W6432)\NSIS\makensis.exe"
!ELSE IF EXIST("\Program Files (x86)\NSIS\makensis.exe")
MAKENSIS="\Program Files (x86)\NSIS\makensis.exe"
!ENDIF
!ENDIF

#
# Optional: Build the PortableApps package (WiresharkPortable).
#
# If you have the PortableApps.com Platform installed set this to the main
# PortableApps directory. In order to build packages you need to install
# "PortableApps.com Launcher" and "NSIS Portable (Unicode)" *within* the
# PortableApps environment.
#
# If you don't have the PortableApps.com Platform installed comment this line
# out.
#
PORTABLEAPPS_DIR="C:\PortableApps"

#
# Optional: To build the developers API documentation with doxygen and dot.
# Currently experimental, outdated and incomplete.
#
# You will have to download and install:
# Doxygen from: http://www.doxygen.org
# Graphviz from: http://www.research.att.com/sw/tools/graphviz/
#
# If you have doxygen, set this to the doxygen executable.
#
# If you don't want the developers documentation (or don't have the tools),
# comment this line out, so that DOXYGEN isn't defined.
#
#DOXYGEN="$(PROGRAM_FILES)/doxygen/bin/doxygen.exe"

#
# Recommended: Use the compressed html help format .chm as the Wireshark integrated help.
#
# The required htmlhelp.h and htmlhelp.lib should be included in versions of MSVC supported by Wireshark
#
# If you don't want the online help (or don't have the tools),
# comment this line out, so that HHC_DIR isn't defined.
#
HHC_DIR=$(PROGRAM_FILES)\HTML Help Workshop

#
# Optional: To reduce the size of dlls and exes, which is especially useful for
# USB device distributions (PortableApps)
#
# If you have the UPX package, set this to the upx.exe executable.
#
# UPX can be downloaded from:
#   http://upx.sourceforge.net/
#
# If you don't have UPX, or don't want to pack exes and dlls,
# comment this line out, so that UPX isn't defined.
#

UPX=$(WIRESHARK_LIB_DIR)\upx303w\upx.exe

##### Flags, PATHs and Miscellaneous #####

# "convert" the MSVC variant into the required MSC compiler version
!IF "$(MSVC_VARIANT)" == "MSVC2005" || "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20"
MSC_VER_REQUIRED=1400
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2008" ||  "$(MSVC_VARIANT)" == "MSVC2008EE"
MSC_VER_REQUIRED=1500
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2010" ||  "$(MSVC_VARIANT)" == "MSVC2010EE"
MSC_VER_REQUIRED=1600
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" ||  "$(MSVC_VARIANT)" == "MSVC2012EE"
MSC_VER_REQUIRED=1700
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2013" ||  "$(MSVC_VARIANT)" == "MSVC2013EE"
MSC_VER_REQUIRED=1800
!ELSE
!ERROR MSVC_VARIANT unknown
!ENDIF

## Manifest processing is not needed for VC10 (Visual Studio 2010 C)
## See: http://msdn.microsoft.com/en-us/library/dd293574.aspx
!IF ($(MSC_VER_REQUIRED) >= 1400) && ($(MSC_VER_REQUIRED) < 1600)
MANIFEST_INFO_REQUIRED=1
!ENDIF

## VS2012 (VC11) and later: configure subsystem version
## See: https://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx
## (APPVER used in win32.mak to set subsystem version)
!IF ($(MSC_VER_REQUIRED) >= 1700)
!if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
APPVER=5.01
!else
APPVER=5.02
!endif
!ENDIF

# Compiler flags:
# /W3                               Warning level 3 (0 less - 4 most, 1 default).
# /Zi                               Create .pdb file for debugging.
# /MD                               Use "multithread- and DLL-specific version" of run-time libraries.
#                                    msvc documentation states that /MD causes _MT and _DLL to be defined
#                                    See: http://msdn.microsoft.com/en-us/library/2kzt1wy3%28v=VS.90%29.aspx
# /D_CRT_SECURE_NO_DEPRECATE        Don't warn for "insecure" calls;
#                                     see MSDN "Security Enhancements in the CRT".
# /D_CRT_NONSTDC_NO_DEPRECATE       Don't warn for "Deprecated CRT Functions" as MSDN calls this.
# /D_BIND_TO_CURRENT_CRT_VERSION=1  Make sure our CRT and manifest versions match.
#                                    (http://msdn.microsoft.com/en-us/library/cc664727.aspx)
# /DWIN32_LEAN_AND_MEAN             Don't include unnecessary Windows include files (see windows.h).
# /MANIFEST:no                      Don't create a SxS manifest. Makes sure our plugins don't load
#                                     a second copy of the CRT.
# -DPSAPI_VERSION=1                 Programs that must run on earlier versions of Windows as well as Windows 7 and later
#                                   versions should always call this function as GetProcessMemoryInfo. To ensure correct
#                                   resolution of symbols, add Psapi.lib to the TARGETLIBS macro and compile the program
#                                   with -DPSAPI_VERSION=1.To use run-time dynamic linking, load Psapi.dll.
#                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms683219(v=vs.85).aspx
# -DBUILD_WINDOWS                   Starting from VS2013, GetVersionEx is deprecated and we are recommended to use
#                                   VerifyVersionInfo instead
#                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms724429(v=vs.85).aspx
#                                   http://msdn.microsoft.com/en-us/library/windows/desktop/ms725491(v=vs.85).aspx
#                                   To continue to use GetVersionEx, we can define BUILD_WINDOWS
# -D_ALLOW_KEYWORD_MACROS           For VS2012 onwards the, C++ STL does not permit macro redefinitions of keywords
#                                   (see http://msdn.microsoft.com/en-us/library/bb531344(v=vs.110).aspx)
#                                   This definition prevents the complaint about the redefinition of inline by WinPCap
#                                   in pcap-stdinc.h when compiling CPP files, e.g. the QT UI
# /O2                               http://msdn.microsoft.com/en-us/library/8f8h5cxt.aspx
#                                   Specifying the /O2 compiler option is the same as using the following options:
#                                   /Ob (Inline Function Expansion), where the option parameter is 2 (/Ob2)
#                                   /Og (Global Optimizations)
#                                   /Oi (Generate Intrinsic Functions)
#                                   /Ot (Favor Fast Code)
#                                   /Oy (Frame-Pointer Omission)
#                                   /Gs (Control Stack Checking Calls))
#                                   /GF (Eliminate Duplicate Strings)
#                                   /Gy (Enable Function-Level Linking)
# /Zo                               Output debug info allowing debuggers to display local values and trace into inline
#                                   functions.  For VS2013 Update 3.  Assume all VS2013 builds are at least Update 3.
#                                   See http://msdn.microsoft.com/en-us/library/dn785163.aspx

##Note: LOCAL_CFLAGS are flags used for *all* compilations
##      STANDARD_CFLAGS (see below) are flags used just for *Wireshark* compilations
!IF "$(MSVC_VARIANT)" == "MSVC2005"   || \
        "$(MSVC_VARIANT)" == "MSVC2005EE" || \
        "$(MSVC_VARIANT)" == "DOTNET20"   || \
        "$(MSVC_VARIANT)" == "MSVC2008"   || \
        "$(MSVC_VARIANT)" == "MSVC2008EE" || \
        "$(MSVC_VARIANT)" == "MSVC2010"   || \
        "$(MSVC_VARIANT)" == "MSVC2010EE" || \
        "$(MSVC_VARIANT)" == "MSVC2012"   || \
        "$(MSVC_VARIANT)" == "MSVC2012EE" || \
        "$(MSVC_VARIANT)" == "MSVC2013"   || \
        "$(MSVC_VARIANT)" == "MSVC2013EE"
LOCAL_CFLAGS=/Zi /W3 /MD /O2 /DWIN32_LEAN_AND_MEAN /DMSC_VER_REQUIRED=$(MSC_VER_REQUIRED) \
	     /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE -DPSAPI_VERSION=1

!IF "$(MSVC_VARIANT)" == "MSVC2012"   || \
        "$(MSVC_VARIANT)" == "MSVC2012EE" || \
        "$(MSVC_VARIANT)" == "MSVC2013"   || \
        "$(MSVC_VARIANT)" == "MSVC2013EE"
LOCAL_CFLAGS=$(LOCAL_CFLAGS) /D_ALLOW_KEYWORD_MACROS
!ENDIF

!IF "$(MSVC_VARIANT)" == "MSVC2013"   || \
        "$(MSVC_VARIANT)" == "MSVC2013EE"
LOCAL_CFLAGS=$(LOCAL_CFLAGS) /DBUILD_WINDOWS /Zo
!ENDIF

!IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
LOCAL_CFLAGS=$(LOCAL_CFLAGS) /D_BIND_TO_CURRENT_CRT_VERSION=1
!ENDIF

# Additional compiler warnings to be treated as "Level 3"
#  when compiling Wireshark sources. (Selected from "level 4" warnings).
## 4295: array is too small to include a terminating null character
## 4189: local variable is initialized but not referenced
WARNINGS_CFLAGS=/w34295 /w34189

!ELSE
!ERROR MSVC_VARIANT unknown
!ENDIF

# http://msdn.microsoft.com/en-us/library/bb385193.aspx
# /MP               Compiles multiple source files by using multiple processes
# /MP[processMax]   If you omit the processMax argument, the compiler retrieves the number of effective processors
#                   on your computer from the operating system, and creates a process for each processor.
#
# The following compiler options and language features that are incompatible with the /MP option:
#
# * #import preprocessor directive
# * /E, /EP
# * /Gm
# * /showIncludes
# * /Yc
#
!IF     "$(MSVC_VARIANT)" == "MSVC2008"   || \
        "$(MSVC_VARIANT)" == "MSVC2008EE" || \
        "$(MSVC_VARIANT)" == "MSVC2010"   || \
        "$(MSVC_VARIANT)" == "MSVC2010EE" || \
        "$(MSVC_VARIANT)" == "MSVC2012"   || \
        "$(MSVC_VARIANT)" == "MSVC2012EE" || \
        "$(MSVC_VARIANT)" == "MSVC2013"   || \
        "$(MSVC_VARIANT)" == "MSVC2013EE"
LOCAL_CFLAGS= $(LOCAL_CFLAGS) /MP
!ENDIF

# Optional: Static analysis. Only supported in the full-frontal MSVC editions.
# http://msdn.microsoft.com/en-us/library/ms182025.aspx

!IFDEF ENABLE_CODE_ANALYSIS
LOCAL_CFLAGS= $(LOCAL_CFLAGS) /analyze:WX-
!ENDIF

## Do *not* redefine LOCAL_CFLAGS below this point !!

#STANDARD_CFLAGS are flags used for *Wireshark* compiles (not stuff like lemon, etc)
STANDARD_CFLAGS=/DWINPCAP_VERSION=$(WINPCAP_VERSION) $(LOCAL_CFLAGS) $(WARNINGS_CFLAGS)

#Comment out the following if warnings are not to be treated as errors
WARNINGS_ARE_ERRORS=-WX

# Linker flags:
# /DEBUG  generate debug info
# /PROFILE generate map file(s) for profiling
# /DEFAULTLIB:xxx use xxx as the standard C library
# /NODEFAULTLIB:xxx don't use xxx as the standard C library
# /RELEASE set the checksum in the header, stops debugger complaints
#
LOCAL_LDFLAGS=/DEBUG /MACHINE:$(TARGET_MACHINE) /RELEASE
DLL_LDFLAGS =
!IFDEF MANIFEST_INFO_REQUIRED
DLL_LDFLAGS = /MANIFEST:no
!ENDIF

# Enable Safe Exception Handler.
# http://msdn.microsoft.com/en-us/magazine/cc337897.aspx
!IF $(MSC_VER_REQUIRED) >= 1300
!IF "$(WIRESHARK_TARGET_PLATFORM)" != "win64"
LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /SafeSEH
!ENDIF
!ENDIF

# Enable ASLR. Requires VS2008 or later.
# http://blogs.msdn.com/b/vcblog/archive/2009/05/21/dynamicbase-and-nxcompat.aspx
# DEP (/NXCompat) is handled in init_process_policies() via SetProcessDEPPolicy.

# ASLR http://msdn.microsoft.com/en-us/library/bb384887.aspx
!IF $(MSC_VER_REQUIRED) >= 1500
LOCAL_LDFLAGS= $(LOCAL_LDFLAGS) /DYNAMICBASE /FIXED:no
!ENDIF

PLUGIN_LDFLAGS = /NOLOGO /INCREMENTAL:no $(LOCAL_LDFLAGS) $(DLL_LDFLAGS)

#
# According to http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=403
# XCOPY under Windows NT doesn't support the "/Y" flag.  This works
# around that bug.
# XXX - This apparently doesn't work for some versions of nmake:
# http://support.microsoft.com/default.aspx?scid=kb;en-us;86814
# It looks like we'll have to call "set copycmd=/y" before we run xcopy.
COPYCMD=/y

#
# If you don't want to build libwireshark.dll, you should comment out the
# following line. (Note: for plugin support this option must stay activated)
ENABLE_LIBWIRESHARK=USE

#
# install (debug) directory for Wireshark (relative to your source dir)
INSTALL_DIR=wireshark-gtk2
INSTALL_DIR_QT=wireshark-qt-release

##### C-Runtime Redistributable #####
#
# The C-Runtime since Version 7 must be shipped together with
# the program installer, to avoid missing msvcr*.dll files on
# the target machine.
#
# The location of these files differ on the various compiler
# packages, the following will use the default paths depending
# on the package version.
#

# You can either place the redistributable in its own platform-
# and compiler-specific directory or in the top-level library
# directory.
# Microsoft maintains a list of the latest redistributables in
# KB 20197667: http://support.microsoft.com/kb/2019667
!IF EXIST("$(WIRESHARK_LIB_DIR)\vcredist_$(MSVC_VARIANT)")
VCREDIST_DIR=$(WIRESHARK_LIB_DIR)\vcredist_$(MSVC_VARIANT)
!ELSE
VCREDIST_DIR=$(WIRESHARK_LIB_DIR)
!ENDIF

!IF "$(WIRESHARK_TARGET_PLATFORM)" == "win64"
#
# For 64-bit platforms, we don't create portable packages and therefore
# don't have to worry that "Using the Visual C++ Redistributable
# Package" requires that an installer be run to install that package,
# so we use that method to make the C runtime available.
#
VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe

!ELSEIF "$(MSVC_VARIANT)" == "MSVC2005"
#
# For MSVC 2005 non-Express Edition, we "Install a particular Visual C++
# assembly as a private assembly for the application", by copying
# the contents of the Microsoft.VC80.CRT folder to the target directory.
# This is done to reduce the size of the installer; it also makes
# a portable version work, as the C runtime doesn't have to be
# installed on the target machine.
#
MSVCR_DLL=$(VCINSTALLDIR)\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC80.CRT\*.*

!ELSEIF "$(MSVC_VARIANT)" == "MSVC2005EE" || "$(MSVC_VARIANT)" == "DOTNET20" || "$(MSVC_VARIANT)" == "MSVC2008EE"
#
# For MSVC 2005 Express Edition, for the .NET Framework 2.0 SDK, and
# for MSVC 2008 Express Edition, we "Use the Visual C++ Redistributable
# Package", because they don't provide the Microsoft.VC80.CRT folder.
#
# They also don't provide the redistributable package, so you need to
# download the appropriate version of the redistributable package,
# vcredist_x86.exe, vcredist_x64.exe, or vcredist_ia64.exe, from
# Microsoft first, and copy it to the lib folder!!!
#
VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe

!ELSEIF "$(MSVC_VARIANT)" == "MSVC2008"
#
# For MSVC 2008 non-Express Edition, we "Install a particular Visual C++
# assembly as a private assembly for the application", by copying
# the contents of the Microsoft.VC90.CRT folder to the target directory.
# This is done to reduce the size of the installer; it also makes
# a portable version work, as the C runtime doesn't have to be
# installed on the target machine.
#
MSVCR_DLL=$(VCINSTALLDIR)\redist\$(PROCESSOR_ARCHITECTURE)\Microsoft.VC90.CRT\*.*

!ELSEIF "$(MSVC_VARIANT)" == "MSVC2010EE"
#
# For MSVC 2010 Express Edition, we "Use the Visual C++ Redistributable
# Package", because it doesn't provide the Microsoft.VC80.CRT folder.
#
# It also doesn't provide the redistributable package, so you need to
# download the appropriate version of the redistributable package,
# vcredist_x86.exe or vcredist_x64.exe, from Microsoft first, and copy
# it to the lib folder!!!
VCREDIST_EXE=$(VCREDIST_DIR)\vcredist_$(TARGET_MACHINE).exe

!ELSEIF "$(MSVC_VARIANT)" == "MSVC2010"
#
# For MSVC 2010 non-Express Edition, we "Install a particular Visual C++
# assembly as a private assembly for the application", by copying
# the contents of the Microsoft.VC100.CRT folder to the target directory.
# This is done to reduce the size of the installer; it also makes
# a portable version work, as the C runtime doesn't have to be
# installed on the target machine.
#
# Note: for what it's worth, Microsoft recommends "Using the Visual C++
# Redistributable Package", rather than "Installing a particular Visual
# C++ assembly as a private assembly for the application", starting
# with Visual Studio 2010.
#
MSVCR_DLL=$(VCINSTALLDIR)\redist\$(TARGET_MACHINE)\Microsoft.VC100.CRT\*.*
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2012" || "$(MSVC_VARIANT)" == "MSVC2012EE"
#
# EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
#
# For MSVC 2012, we "Install a particular Visual C++
# assembly as a private assembly for the application", by copying
# the contents of the Microsoft.VC110.CRT folder to the target directory.
# This is done to reduce the size of the installer; it also makes
# a portable version work, as the C runtime doesn't have to be
# installed on the target machine.
#
# Note: for what it's worth, Microsoft recommends "Using the Visual C++
# Redistributable Package", rather than "Installing a particular Visual
# C++ assembly as a private assembly for the application", starting
# with Visual Studio 2010.
#
MSVCR_DLL=$(VCINSTALLDIR)\redist\$(TARGET_MACHINE)\Microsoft.VC110.CRT\*.*
!ELSEIF "$(MSVC_VARIANT)" == "MSVC2013" || "$(MSVC_VARIANT)" == "MSVC2013EE"
#
# EE version added as per bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9227
#
# For MSVC 2013, we "Install a particular Visual C++
# assembly as a private assembly for the application", by copying
# the contents of the Microsoft.VC120.CRT folder to the target directory.
# This is done to reduce the size of the installer; it also makes
# a portable version work, as the C runtime doesn't have to be
# installed on the target machine.
#
# Note: for what it's worth, Microsoft recommends "Using the Visual C++
# Redistributable Package", rather than "Installing a particular Visual
# C++ assembly as a private assembly for the application", starting
# with Visual Studio 2010.
#
MSVCR_DLL=$(VCINSTALLDIR)\redist\$(TARGET_MACHINE)\Microsoft.VC120.CRT\*.*
!ELSE
!ERROR MSVC_VARIANT unknown
!ENDIF

# This is still optional yet we define it above for all users.
# So, don't check if it exists...
#!IF DEFINED(VCREDIST_EXE) && ! EXIST("$(VCREDIST_EXE)")
#!ERROR Can't find $(VCREDIST_EXE). Have you downloaded it from Microsoft? \
#See the developer's guide section "C-Runtime "Redistributable" files" for details how to get it
#!ENDIF

##### Advanced: Docbook/XML documentation generation #####
# If you want to generate the Docbook/XML based docs (User's and Developer's
# Guide, ...), you'll need some additional tools / libraries compared to the
# rest of the build process.
#
# FOR DETAILED INSTRUCTIONS TO GENERATE THE DOCS, SEE: docbook\README.txt.
#
# If you don't call the Makefile.nmake in the docbook dir to generate the
# docs, the following settings in this section will have no effect.

# formatting objects processor executable
# Comment this out if you don't have fop installed or you don't want the docs
# in PDF format.
#
# You may want to install the FOP hyphenation patterns from
# http://offo.sourceforge.net/hyphenation/
!IFNDEF FOP

!IF EXIST(docbook\fop-1.1\fop.bat)
FOP=fop-1.1\fop.bat
!ELSE IF EXIST($(WIRESHARK_LIB_DIR)\fop-1.1\fop.bat)
FOP=$(WIRESHARK_LIB_DIR)\fop-1.1\fop.bat
!ELSE IF EXIST(docbook\fop-1.0\fop.bat)
FOP=fop-1.0\fop.bat
!ELSE IF EXIST($(WIRESHARK_LIB_DIR)\fop-1.0\fop.bat)
FOP=$(WIRESHARK_LIB_DIR)\fop-1.0\fop.bat
!ENDIF

!ENDIF FOP

# Additional options to fop.
FOP_OPTS=-Xmx256m

# the XSL processor (part of cygwin's libxslt package)
XSLTPROC="xsltproc"

# the XML validator (part of cygwin's libxml2 package)
XMLLINT="xmllint"

# Asciidoc converter (part of cygwin's asciidoc package). In order to build
# the release notes you must have the Cygwin asciidoc and lynx packages
# installed.
A2X=a2x
LYNX=lynx

##############################################################################
#
# You should not have to change anything below this comment.
# If you do, it's a deficiency in the Makefile.nmake files;
# either tell wireshark-dev@wireshark.org about it, including
# details of why you had to change it, or fix config.nmake
# and any Makefile.nmake files that need to be changed, and
# send us the patches, along with details of why the change
# was necessary.
#
##############################################################################

#
# The RC_VERSION should be comma-separated, not dot-separated,
# as per Graham Bloice's message in
#
#	http://www.wireshark.org/lists/ethereal-dev/200303/msg00283.html
#
# "The RC_VERSION variable in config.nmake should be comma separated.
# This allows the resources to be built correctly and the version
# number to be correctly displayed in the explorer properties dialog
# for the executables, and XP's tooltip, rather than 0.0.0.0."
#

VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO)$(VERSION_EXTRA)
RC_VERSION=$(VERSION_MAJOR),$(VERSION_MINOR),$(VERSION_MICRO),$(VERSION_BUILD)
PRODUCT_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO).$(VERSION_BUILD)

WTAP_VERSION=$(WTAP_VERSION_MAJOR).$(WTAP_VERSION_MINOR).$(WTAP_VERSION_MICRO)
RC_WTAP_VERSION=$(WTAP_VERSION_MAJOR),$(WTAP_VERSION_MINOR),$(WTAP_VERSION_MICRO)
FTAP_VERSION=$(FTAP_VERSION_MAJOR).$(FTAP_VERSION_MINOR).$(FTAP_VERSION_MICRO)
RC_FTAP_VERSION=$(FTAP_VERSION_MAJOR),$(FTAP_VERSION_MINOR),$(FTAP_VERSION_MICRO)

# GLib
GLIB_CFLAGS=/I$(GTK_DIR)\include\glib-$(GLIB_VERSION) \
	/I$(GTK_DIR)\lib\glib-$(GLIB_VERSION)\include \
	-DG_DISABLE_DEPRECATED \
	-DG_DISABLE_SINGLE_INCLUDES
GLIB_LIBS=$(GTK_DIR)\lib\glib-$(GLIB_VERSION).lib \
	$(GTK_DIR)\lib\gmodule-$(GLIB_VERSION).lib \
	$(GTK_DIR)\lib\gobject-$(GLIB_VERSION).lib

PROGRAM_NAME_GTK=$(PROGRAM_NAME)-gtk

# 2.18 was no good(Theming problem)
!IF "$(GTK_INST_VERSION)" == "2.24" || "$(GTK_INST_VERSION)" == "2.22" || "$(GTK_INST_VERSION)" == "2.16" || "$(GTK_INST_VERSION)" == "2.14"

# GTK+
GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-2.0 \
	/I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
	/I$(GTK_DIR)\lib\gtk-2.0\include \
	/I$(GTK_DIR)\include\atk-1.0 \
	/I$(GTK_DIR)\include\cairo \
	/I$(GTK_DIR)\include\pango-1.0 \
	-DGDK_DISABLE_DEPRECATED \
	-DGDK_PIXBUF_DISABLE_DEPRECATED \
	-DGTK_DISABLE_DEPRECATED \
	-DGTK_DISABLE_SINGLE_INCLUDES \
	-DGSEAL_ENABLE
GTK_LIBS=$(GTK_DIR)\lib\gtk-win32-2.0.lib \
	$(GTK_DIR)\lib\gdk-win32-2.0.lib \
	$(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
	$(GTK_DIR)\lib\cairo.lib \
	$(GTK_DIR)\lib\pango-1.0.lib \
	$(GTK_DIR)\lib\pangocairo-1.0.lib \
	$(GLIB_LIBS)

GTK_LIB_DIR=2.10.0

!IFDEF HARFBUZZ_DLL
NEED_HARFBUZZ_DLL=USE
!ENDIF
!IFDEF JPEG_DLL
NEED_JPEG_DLL=USE
!ENDIF
!IFDEF PNG_DLL
NEED_PNG_DLL=USE
!ENDIF
!IFDEF SEH_DLL
NEED_SEH_DLL=USE
!ENDIF
!IFDEF SJLJ_DLL
NEED_SJLJ_DLL=USE
!ENDIF
!IFDEF TIFF_DLL
NEED_TIFF_DLL=USE
!ENDIF
NEED_CAIRO_DLL=USE
# Pango >=1.24.5 Needs these:
#NEED_EXPAT_DLL=USE
NEED_FFI_DLL=USE
NEED_FONTCONFIG_DLL=USE
NEED_FREETYPE_DLL=USE
NEED_JASPER_DLL=USE
NEED_JPEG_DLL=USE
NEED_LZMA_DLL=USE
NEED_PIXMAN_DLL=USE
NEED_XML_DLL=USE

!ELSEIF "$(GTK_INST_VERSION)" == "3.4" || "$(GTK_INST_VERSION)" == "3.6"

# GTK+
## Note: If Wireshark is ever to be built with Gtk >= 3.10
##        then -DGTK_DISABLE_DEPRECATED must be removed
##        and -DGDK_DISABLE_DEPRECATION_WARNINGS must
##        be added below.
##       Wireshark changes to handle Gtk 3.10 deprecated features
##        will not be done since Wireshark is moving to Qt.
GTK_CFLAGS=$(GLIB_CFLAGS) /I$(GTK_DIR)\include\gtk-3.0 \
	/I$(GTK_DIR)\include\gdk-pixbuf-2.0 \
	/I$(GTK_DIR)\lib\gtk-3.0\include \
	/I$(GTK_DIR)\include\atk-1.0 \
	/I$(GTK_DIR)\include\cairo \
	/I$(GTK_DIR)\include\pango-1.0 \
	-DGDK_DISABLE_DEPRECATED \
	-DGDK_PIXBUF_DISABLE_DEPRECATED \
	-DGTK_DISABLE_DEPRECATED \
	-DGTK_DISABLE_SINGLE_INCLUDES \
	-DGSEAL_ENABLE
GTK_LIBS=$(GTK_DIR)\lib\gtk-3.lib \
	$(GTK_DIR)\lib\gdk-3.lib \
	$(GTK_DIR)\lib\gdk_pixbuf-2.0.lib \
	$(GTK_DIR)\lib\cairo.lib \
	$(GTK_DIR)\lib\pango-1.0.lib \
	$(GTK_DIR)\lib\pangocairo-1.0.lib \
	$(GLIB_LIBS)

GTK_LIB_DIR=3.4

!IFDEF _DLL
!ENDIF

NEED_CAIRO_GOBJECT_DLL=USE
NEED_CAIRO_DLL=USE

!IFDEF EXPAT_DLL
NEED_EXPAT_DLL=USE
!ENDIF
!IFDEF FFI_DLL
NEED_FFI_DLL=USE
!ENDIF
!IFDEF FONTCONFIG_DLL
NEED_FONTCONFIG_DLL=USE
!ENDIF
!IFDEF FREETYPE_DLL
NEED_FREETYPE_DLL=USE
!ENDIF
!IFDEF HARFBUZZ_DLL
NEED_HARFBUZZ_DLL=USE
!ENDIF
!IFDEF JASPER_DLL
NEED_JASPER_DLL=USE
!ENDIF
!IFDEF JPEG_DLL
NEED_JPEG_DLL=USE
!ENDIF
!IFDEF LZMA_DLL
NEED_LZMA_DLL=USE
!ENDIF
!IFDEF PIXMAN_DLL
NEED_PIXMAN_DLL=USE
!ENDIF
!IFDEF PNG_DLL
NEED_PNG_DLL=USE
!ENDIF
!IFDEF SEH_DLL
NEED_SEH_DLL=USE
!ENDIF
!IFDEF SJLJ_DLL
NEED_SJLJ_DLL=USE
!ENDIF
!IFDEF TIFF_DLL
NEED_TIFF_DLL=USE
!ENDIF
!IFDEF XML_DLL
NEED_XML_DLL=USE
!ENDIF
!ELSE
!ERROR ? Unknown or invalid GTK_INST_VERSION "$(GTK_INST_VERSION)"
!ENDIF


!IFDEF AIRPCAP_DIR
AIRPCAP_CONFIG=^#define HAVE_AIRPCAP 1
#AIRPCAP_CFLAGS=/I$(AIRPCAP_DIR)\include
!ELSE
AIRPCAP_CONFIG=
WIRELESS_TOOLBAR_CONFIG=
!ENDIF

!IFDEF PCAP_DIR
# Nmake uses carets to escape special characters
WINPCAP_CONFIG=^#define HAVE_LIBPCAP 1
#
# This requires that, if you're *building* Wireshark, you have
# the most recent WinPcap's development package.  If, at *run*
# time, an older version of WinPcap, missing some routines,
# is found, we work around that.
#
PCAP_FINDALLDEVS_CONFIG=^#define HAVE_PCAP_FINDALLDEVS 1
PCAP_DATALINK_NAME_TO_VAL_CONFIG=^#define HAVE_PCAP_DATALINK_NAME_TO_VAL 1
PCAP_DATALINK_VAL_TO_NAME_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_NAME 1
PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=^#define HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION 1
# PCAP_BREAKLOOP won't have any benefit on Win32, but breaks compatibility with 3.0
PCAP_BREAKLOOP_CONFIG=
PCAP_LIST_DATALINKS_CONFIG=^#define HAVE_PCAP_LIST_DATALINKS 1
PCAP_FREE_DATALINKS_CONFIG=^#define HAVE_PCAP_FREE_DATALINKS 1
PCAP_SET_DATALINK_CONFIG=^#define HAVE_PCAP_SET_DATALINK 1
PCAP_OPEN_DEAD_CONFIG=^#define HAVE_PCAP_OPEN_DEAD 1
BPF_IMAGE_CONFIG=^#define HAVE_BPF_IMAGE 1
!ELSE
# no WpdPack installed
WINPCAP_CONFIG=
PCAP_FINDALLDEVS_CONFIG=
PCAP_DATALINK_NAME_TO_VAL_CONFIG=
PCAP_DATALINK_VAL_TO_NAME_CONFIG=
PCAP_DATALINK_VAL_TO_DESCRIPTION_CONFIG=
PCAP_BREAKLOOP_CONFIG=
PCAP_LIST_DATALINKS_CONFIG=
PCAP_FREE_DATALINKS_CONFIG=
PCAP_SET_DATALINK_CONFIG=
PCAP_OPEN_DEAD_CONFIG=
BPF_IMAGE_CONFIG=
!ENDIF

!IF DEFINED(PCAP_DIR) && DEFINED(PCAP_REMOTE)
PCAP_HAVE_REMOTE_CONFIG=^#define HAVE_REMOTE 1
PCAP_REMOTE_CONFIG=^#define HAVE_PCAP_REMOTE 1
PCAP_OPEN_CONFIG=^#define HAVE_PCAP_OPEN 1
PCAP_SETSAMPLING_CONFIG=^#define HAVE_PCAP_SETSAMPLING 1
!ELSE
PCAP_HAVE_REMOTE_CONFIG=
PCAP_REMOTE_CONFIG=
PCAP_OPEN_CONFIG=
PCAP_SETSAMPLING_CONFIG=
!ENDIF

!IFDEF ZLIB_DIR
ZLIB_PATH=$(ZLIB_DIR)
ZLIB_CFLAGS=/I$(ZLIB_DIR)
ZLIB_LIBS=$(ZLIB_DIR)\lib\zdll.lib
ZLIB_DLL=$(ZLIB_DIR)\zlib1.dll
# Nmake uses carets to escape special characters
ZLIB_CONFIG=^#define HAVE_LIBZ 1
!else
ZLIB_CFLAGS=
ZLIB_LIBS=
ZLIB_DLL=
ZLIB_CONFIG=
!ENDIF

!IFDEF C_ARES_PKG
!UNDEF ADNS_DIR
C_ARES_DIR=$(WIRESHARK_LIB_DIR)\c-ares-$(C_ARES_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
C_ARES_CFLAGS=/I$(C_ARES_DIR)/include
C_ARES_LIBS=$(C_ARES_DIR)\lib\libcares-2.lib
C_ARES_DLL=$(C_ARES_DIR)\bin\libcares-2.dll
# Nmake uses carets to escape special characters
C_ARES_CONFIG=^#define HAVE_C_ARES 1
!else
C_ARES_CFLAGS=
C_ARES_LIBS=
C_ARES_CONFIG=
!IFDEF ADNS_DIR
ADNS_PATH=$(ADNS_DIR)\adns_win32\lib
ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32
ADNS_LIBS=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.lib
ADNS_DLL=$(WIRESHARK_LIB_DIR)\$(MSVC_VARIANT)\adns\adns_dll.dll
# Nmake uses carets to escape special characters
ADNS_CONFIG=^#define HAVE_GNU_ADNS 1
!else
ADNS_CFLAGS=
ADNS_LIBS=
ADNS_CONFIG=
!ENDIF # ADNS
!ENDIF # C_ARES

!IFDEF KFW_DIR
KFW_PATH=$(KFW_DIR)\bin
KFW_CFLAGS=/I$(KFW_DIR)\include
!IF "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
KFW_LIBS=$(KFW_DIR)\lib\krb5_32.lib
!ELSE
KFW_LIBS=$(KFW_DIR)\lib\krb5_64.lib
!ENDIF
# Nmake uses carets to escape special characters
KFW_CONFIG=^#define HAVE_MIT_KERBEROS 1
!else
KFW_CFLAGS=
KFW_LIBS=
KFW_CONFIG=
!ENDIF

!IFDEF GNUTLS_PKG
GNUTLS_DIR=$(WIRESHARK_LIB_DIR)\gnutls-$(GNUTLS_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
GNUTLS_PATH=$(GNUTLS_DIR)
# /DNOCRYPT avoids inclusion of Wincrypt.h, avoiding a X509_NAME define clash
GNUTLS_CFLAGS=/I$(GNUTLS_DIR)\include /DNOCRYPT /DIMPORT_LIGNUTLSDLL
GCRYPT_LIBS = $(GNUTLS_DIR)\bin\libgcrypt-20.lib
GNUTLS_LIBS=\
	$(GNUTLS_DIR)\bin\libtasn1-6.lib	\
!IF "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
	$(GNUTLS_DIR)\bin\libgpg-error-0.lib	\
!ELSE
	$(GNUTLS_DIR)\bin\libgpg-error6-0.lib	\
!ENDIF
	$(GCRYPT_LIBS) \
	$(GNUTLS_DIR)\bin\libgnutls-28.lib
# Nmake uses carets to escape special characters
GNUTLS_CONFIG=^#define HAVE_LIBGNUTLS 1
LIBGCRYPT_CONFIG=^#define HAVE_LIBGCRYPT 1
!else
GNUTLS_CFLAGS=
GNUTLS_LIBS=
GNUTLS_CONFIG=
LIBGCRYPT_CONFIG=
!ENDIF

!IFDEF LUA_DIR
LUA_CFLAGS=/I$(LUA_DIR)\include
LUA_LIBS=$(LUA_DIR)\lua52.lib
# Nmake uses carets to escape special characters
LUA_CONFIG=^#define HAVE_LUA 1
LUA_VERSION=^#define HAVE_LUA 1
!else
LUA_CFLAGS=
LUA_LIBS=
LUA_CONFIG=
!ENDIF

!IFDEF PORTAUDIO_DIR
# Nmake uses carets to escape special characters
PORTAUDIO_CONFIG=^#define HAVE_LIBPORTAUDIO 1
!IF "$(PORTAUDIO_VERSION)" == "18"
# V18 uses API version 1 and v19 API version 2
PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\pa_common
PORTAUDIO_API_CONFIG=^#define PORTAUDIO_API_1 1
!ELSE
PORTAUDIO_CFLAGS=/I$(PORTAUDIO_DIR)\include /I$(PORTAUDIO_DIR)\src\common /I$(PORTAUDIO_DIR)\src\os\win /DPA_NO_DS /DPA_NO_ASIO
!ENDIF
!ELSE
PORTAUDIO_CFLAGS=
PORTAUDIO_CONFIG=
!ENDIF

!IFDEF HHC_DIR
PATH=$(PATH);$(HHC_DIR)
HHC_EXE=hhc.exe
HHC_CFLAGS=-DHHC_DIR
HHC_LIBS=htmlhelp.lib
!ELSE
HHC_CFLAGS=
HHC_LIBS=
!ENDIF

!IFDEF SMI_PKG
SMI_DIR=$(WIRESHARK_LIB_DIR)\libsmi-$(SMI_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
SMI_CONFIG=^#define HAVE_LIBSMI 1
SMI_CFLAGS=/I$(SMI_DIR)\include
SMI_LIBS=$(SMI_DIR)\lib\libsmi-2.lib
!ENDIF

!IFDEF GEOIP_PKG
GEOIP_DIR=$(WIRESHARK_LIB_DIR)\GeoIP-$(GEOIP_PKG)-$(WIRESHARK_TARGET_PLATFORM)ws
GEOIP_CONFIG=^#define HAVE_GEOIP 1
GEOIP_V6_CONFIG=^#define HAVE_GEOIP_V6 1
GEOIP_CFLAGS=/I$(GEOIP_DIR)/include
GEOIP_LIBS=$(GEOIP_DIR)\lib\libGeoIP-1.lib
!ENDIF

!IFDEF WINSPARKLE_PKG
WINSPARKLE_DIR=$(WIRESHARK_LIB_DIR)\WinSparkle-$(WINSPARKLE_PKG)
WINSPARKLE_CONFIG=^#define HAVE_SOFTWARE_UPDATE 1
WINSPARKLE_CFLAGS=/I$(WINSPARKLE_DIR)
WINSPARKLE_LIBS=$(WINSPARKLE_DIR)\WinSparkle.lib
!ENDIF

!IFDEF ENABLE_LIBWIRESHARK
# Link plugins with the import library of libwireshark.dll
LINK_PLUGINS_WITH_LIBWIRESHARK=USE
!ELSE
LIBWIRESHARK_CONFIG=
!ENDIF

# Construct the path
PATH=$(PATH);$(CYGWIN_PATH);$(GTK_DIR)\bin;$(GETTEXT_DIR)\bin;$(ZLIB_PATH);$(ADNS_PATH)

INET6_CONFIG=^#define INET6 1

NTDDNDIS_CONFIG=^#define HAVE_NTDDNDIS_H 1