aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2004-10-15 15:36:12 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2004-10-15 15:36:12 +0000
commit422a09166e47f86728dbb41b9e01d8a4213ee039 (patch)
tree4ced36de9d55e19a04c9d5ce3fb41d01a0fb6b77 /config.nmake
parent792fbef5fb5f5ffcaf0b6eef4402bf976aef8458 (diff)
Add support for decoding DES3/CBC/MD5 keys. Make it disabled by default.
Whitespace cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12304 f5534014-38df-0310-8fa8-9805f1628bb7
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