diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-08-19 02:16:26 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-08-19 02:16:26 +0000 |
commit | 6f4508de8c7600da422bb1ab47eed35113259536 (patch) | |
tree | 7b1304dec03bb6f3edfe2f7abf4945d64b1f0b81 /plugins/Makefile.nmake | |
parent | b24a5b39af483e4e36234ed293d018370d30cbd7 (diff) | |
download | wireshark-6f4508de8c7600da422bb1ab47eed35113259536.tar.gz wireshark-6f4508de8c7600da422bb1ab47eed35113259536.tar.bz2 wireshark-6f4508de8c7600da422bb1ab47eed35113259536.zip |
Define GCC_GLIB_CFLAGS as a GCC equivalent of GLIB_CFLAGS, and use it
instead of -I$(GLIB_DIR) when running GCC to generate the xyzzy file, so
that the right -I flags are used.
svn path=/trunk/; revision=8190
Diffstat (limited to 'plugins/Makefile.nmake')
-rw-r--r-- | plugins/Makefile.nmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake index 48ee950813..722a338c66 100644 --- a/plugins/Makefile.nmake +++ b/plugins/Makefile.nmake @@ -1,5 +1,5 @@ # -# $Id: Makefile.nmake,v 1.23 2003/08/18 20:17:55 guy Exp $ +# $Id: Makefile.nmake,v 1.24 2003/08/19 02:16:26 guy Exp $ # include ..\config.nmake @@ -21,7 +21,7 @@ Xplugin_api.c: plugin_gen.py plugin_api_list.c plugin_api.obj: plugin_api.c Xplugin_api.c xyzzy: plugin_gen.py plugin_api_list.c - gcc -aux-info xyzzy -DHAVE_CONFIG_H -I$(GLIB_DIR) -I.. -c plugin_api_list.c + gcc -aux-info xyzzy -DHAVE_CONFIG_H $(GCC_GLIB_CFLAGS) -I.. -c plugin_api_list.c $(PYTHON) plugin_gen.py xyzzy artnet:: |