aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-14 20:36:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-14 20:36:04 +0000
commit632c0320a946eb80f60e2e6480bcc5fa87907b97 (patch)
tree080e2f9d9377e63f0e3556c8173fc194803b2751 /config.nmake
parent6f731c620fcf3b92307f3c0552fe49998246624e (diff)
Define GLIB_CFLAGS and GTK_CFLAGS variables in config.nmake (based on
variables the user configures - the user isn't expected to change GLIB_CFLAGS or GTK_CFLAGS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate "/I" flags for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7884 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake14
1 files changed, 13 insertions, 1 deletions
diff --git a/config.nmake b/config.nmake
index 724342f7cd..d60abb3507 100644
--- a/config.nmake
+++ b/config.nmake
@@ -1,4 +1,4 @@
-# $Id: config.nmake,v 1.43 2003/06/14 03:23:21 guy Exp $
+# $Id: config.nmake,v 1.44 2003/06/14 20:35:55 guy Exp $
VERSION=0.9.13
#
@@ -57,3 +57,15 @@ YACC=bison
# To build the installer
MAKENSIS="C:/program files/nsis/makensis.exe"
+
+#
+# You should not have to change anything below this comment.
+# If you do, it's a deficiency in the Makefile.nmake files;
+# either tell ethereal-dev@ethereal.com 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.
+#
+GLIB_CFLAGS=/I$(GLIB_DIR) /I$(GLIB_DIR)\gmodule
+GTK_CFLAGS=/I$(GTK_DIR) /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 $(GLIB_CFLAGS)