aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-08-14 17:54:35 +0000
committerGerald Combs <gerald@wireshark.org>2008-08-14 17:54:35 +0000
commit837f0d9d53c58900b679be0b65c1f2432d2fb23c (patch)
tree8cb6dba3ca4aa961571bd0be9325834641f72366 /config.nmake
parentf7e0b6490a6f2b56012aa98adc4c6ace5a126bb3 (diff)
SecFileExtensions was removed in 2005. Don't reference it. Fixes bug 2793.
Replicate the old SecFileExtensions behavior by disabling and unchecking the file extensions option when Wireshark is unselected. While we're at it, add a "PLATFORM" variable to config.nmake, and use it to set the library directory and installer filename and title. Add a couple of minor fixes. svn path=/trunk/; revision=26019
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/config.nmake b/config.nmake
index 10ced07268..815e1e8e1b 100644
--- a/config.nmake
+++ b/config.nmake
@@ -3,7 +3,9 @@
# Some more informations about the settings in this file, can be found
# in the file README.win32 and the Developer's Guide (available online).
-
+##### Platform #####
+# Only "win32" is valid (for now).
+PLATFORM=win32
##### Versions #####
@@ -30,7 +32,7 @@ WTAP_VERSION_MICRO=1
# Base directory, where your libraries reside, which are needed to
# compile the sources. This setting is used only inside this file.
#
-WIRESHARK_LIBS=C:\wireshark-win32-libs
+WIRESHARK_LIBS=C:\wireshark-$(PLATFORM)-libs
#
# Base directory, where your programs reside.