aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/rtnet
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-14 20:45:29 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-06-14 20:45:29 +0000
commit50497a35c15dc37d8867bf5d523af6e08d041e40 (patch)
treecd4e2a516fff203443003c671b6f33d32568151e /plugins/rtnet
parent632c0320a946eb80f60e2e6480bcc5fa87907b97 (diff)
Define GLIB_LIBS and GTK_LIBS variables in config.nmake (based on
variables the user configures - the user isn't expected to change GLIB_LIBS or GTK_LIBS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate libraries 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@7885 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/rtnet')
-rw-r--r--plugins/rtnet/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rtnet/Makefile.nmake b/plugins/rtnet/Makefile.nmake
index 345aa0ac36..4f3975e1f0 100644
--- a/plugins/rtnet/Makefile.nmake
+++ b/plugins/rtnet/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.3 2003/06/14 20:36:04 guy Exp $
+# $Id: Makefile.nmake,v 1.4 2003/06/14 20:45:29 guy Exp $
#
include ..\..\config.nmake
@@ -13,7 +13,7 @@ OBJECTS=packet-rtnet.obj
rtnet.dll rtnet.exp rtnet.lib : packet-rtnet.obj ..\plugin_api.obj
link -dll /out:rtnet.dll packet-rtnet.obj ..\plugin_api.obj \
- $(GLIB_DIR)\glib-$(GLIB_VERSION).lib
+ $(GLIB_LIBS)
clean:
rm -f $(OBJECTS) rtnet.dll rtnet.exp rtnet.lib $(PDB_FILE)