aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/asn1/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-08-26 22:46:32 +0000
committerGuy Harris <guy@alum.mit.edu>2004-08-26 22:46:32 +0000
commite6bc3872b08c40d555d073b4636fbeeda67e9328 (patch)
tree44184ca30a3cf02b83b370b684b218bbb814acef /plugins/asn1/Makefile.nmake
parent463ea07ddee5a7e9bd87e999a702f28ff2c89d53 (diff)
From Lars Roland: don't link with GTK+, as it's not necessary to do so,
and as plugin dissectors shouldn't be linked with GTK+ (so that they don't depend on Ethereal being built with a particular version of GTK+ - Ethereal is packaged for Windows in both GTK+ 1.3[.x] and 2.x versions - and so that they can work with Tethereal, which doesn't use GTK+). svn path=/trunk/; revision=11840
Diffstat (limited to 'plugins/asn1/Makefile.nmake')
-rw-r--r--plugins/asn1/Makefile.nmake14
1 files changed, 2 insertions, 12 deletions
diff --git a/plugins/asn1/Makefile.nmake b/plugins/asn1/Makefile.nmake
index 00d685db97..02bc5b4b26 100644
--- a/plugins/asn1/Makefile.nmake
+++ b/plugins/asn1/Makefile.nmake
@@ -6,24 +6,14 @@ include ..\..\config.nmake
############### no need to modify below this line #########
-# XXX: that's odd here, no GTK stuff should be in the plugins dir,
-# so move all GTK specific stuff into gtk dir.
-# As GTK1_CFLAGS isn't correct here, we don't have GTK_CFLAGS
-# any longer, so no better choice here. If the move of GTK code
-# finished, replace this with GLIB_CFLAGS.
-# The same applies to GTK1_LIBS -> GLIB_LIBS.
-CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GTK1_CFLAGS) \
+CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
OBJECTS=packet-asn1.obj
asn1.dll asn1.exp asn1.lib : $(OBJECTS) ..\plugin_api.obj
link -dll /out:asn1.dll $(OBJECTS) ..\plugin_api.obj \
-!IFDEF GTK1_DIR
- $(GTK1_LIBS)
-!ELSE
- $(GTK2_LIBS)
-!ENDIF
+ $(GLIB_LIBS)
clean:
rm -f $(OBJECTS) asn1.dll asn1.exp asn1.lib $(PDB_FILE)