From Lars Roland: don't link with GTK+, as it's not necessary to do so,
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 26 Aug 2004 22:46:32 +0000 (22:46 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 26 Aug 2004 22:46:32 +0000 (22:46 +0000)
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+).

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11840 f5534014-38df-0310-8fa8-9805f1628bb7

plugins/asn1/Makefile.nmake

index 00d685db97cd19ba6017887792fa5ec7ef0d3e13..02bc5b4b26415ae32c73ccd1f0ae2d4cf694ca1a 100644 (file)
@@ -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)