diff options
author | Gerald Combs <gerald@wireshark.org> | 2003-06-24 18:51:21 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2003-06-24 18:51:21 +0000 |
commit | ad59ab2353b9443c37ff5f35e91027c2bb877854 (patch) | |
tree | a44cd69bb9309e4e48b51f7b9e784136004a6977 /config.nmake | |
parent | 728d0bab444a69ba031fc5984cb601a564691507 (diff) | |
download | wireshark-ad59ab2353b9443c37ff5f35e91027c2bb877854.tar.gz wireshark-ad59ab2353b9443c37ff5f35e91027c2bb877854.tar.bz2 wireshark-ad59ab2353b9443c37ff5f35e91027c2bb877854.zip |
Properly escape the '#' character in the HAVE_GNU_ADNS definition.
svn path=/trunk/; revision=7924
Diffstat (limited to 'config.nmake')
-rw-r--r-- | config.nmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config.nmake b/config.nmake index 96c5e938da..b2f1c19830 100644 --- a/config.nmake +++ b/config.nmake @@ -1,4 +1,4 @@ -# $Id: config.nmake,v 1.50 2003/06/17 05:38:24 guy Exp $ +# $Id: config.nmake,v 1.51 2003/06/24 18:51:21 gerald Exp $ VERSION=0.9.13 # @@ -111,7 +111,8 @@ GTK_LIBS=$(GTK_DIR)\lib\gtk-win32-$(GTK_VERSION).lib \ !IFDEF ADNS_DIR ADNS_CFLAGS=/I$(ADNS_DIR)\src /I$(ADNS_DIR)\adns_win32 ADNS_LIBS=$(ADNS_DIR)\adns_win32\lib\adns_dll.lib -ADNS_CONFIG="#define HAVE_GNU_ADNS 1" +# Nmake uses carets to escape special characters +ADNS_CONFIG=^#define HAVE_GNU_ADNS 1 !else ADNS_CFLAGS= ADNS_LIBS= |