diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-06-14 20:36:04 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-06-14 20:36:04 +0000 |
commit | 71424053cd5e62f8f94bdb81af98e7ee2830fc46 (patch) | |
tree | 080e2f9d9377e63f0e3556c8173fc194803b2751 /plugins/Makefile.nmake | |
parent | 25bd670668c348c80fc8e4cb61cf66f58909cd8d (diff) | |
download | wireshark-71424053cd5e62f8f94bdb81af98e7ee2830fc46.tar.gz wireshark-71424053cd5e62f8f94bdb81af98e7ee2830fc46.tar.bz2 wireshark-71424053cd5e62f8f94bdb81af98e7ee2830fc46.zip |
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.
svn path=/trunk/; revision=7884
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r-- | plugins/Makefile.nmake | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake index 3a14c83a9a..257920c327 100644 --- a/plugins/Makefile.nmake +++ b/plugins/Makefile.nmake @@ -1,14 +1,12 @@ # -# $Id: Makefile.nmake,v 1.18 2003/06/11 09:17:02 guy Exp $ +# $Id: Makefile.nmake,v 1.19 2003/06/14 20:35:58 guy Exp $ # include ..\config.nmake ############### no need to modify below this line ######### -CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. \ - /I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \ - /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \ +CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap /I. $(GLIB_CFLAGS) \ /I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS) OBJECTS=plugin_api.obj |