aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2004-10-15 15:36:12 +0000
committerGerald Combs <gerald@wireshark.org>2004-10-15 15:36:12 +0000
commitfee16ab37752a5516a4e7b27772dff47524f27c7 (patch)
tree4ced36de9d55e19a04c9d5ce3fb41d01a0fb6b77 /config.nmake
parent8142f2c99365f497739096284f1bca46a70e7c50 (diff)
Add support for decoding DES3/CBC/MD5 keys. Make it disabled by default.
Whitespace cleanup. svn path=/trunk/; revision=12304
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/config.nmake b/config.nmake
index 228c484277..0be84fd336 100644
--- a/config.nmake
+++ b/config.nmake
@@ -123,6 +123,15 @@ ADNS_DIR=$(ETHEREAL_LIBS)\adns-1.0-win32-03
PCRE_DIR=$(ETHEREAL_LIBS)\pcre-4.4
#
+# If you have the Nettle encryption library, set this to the pathname
+# of the directory in which the nettle package has been extracted.
+#
+# If you don't have Nettle, comment this line out, so that NETTLE_DIR
+# isn't defined.
+#
+# NETTLE_DIR=$(ETHEREAL_LIBS)\nettle-1.10
+
+#
# Set ICONV_DIR to the pathname of the directory in which the
# ICONV include files and library resides.
#
@@ -319,6 +328,17 @@ PCRE_LIBS=
PCRE_CONFIG=
!ENDIF
+!IFDEF NETTLE_DIR
+NETTLE_CFLAGS=/I$(NETTLE_DIR)
+NETTLE_LIBS=$(NETTLE_DIR)\libnettle.lib
+# Nmake uses carets to escape special characters
+NETTLE_CONFIG=^#define HAVE_LIBNETTLE 1
+!else
+NETTLE_CFLAGS=
+NETTLE_LIBS=
+NETTLE_CONFIG=
+!ENDIF
+
!IFDEF ENABLE_LIBETHEREAL
LIBETHEREAL_CONFIG=^#define HAVE_LIBETHEREALDLL 1
!ELSE