aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-09 08:36:23 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-09 08:36:23 +0000
commit563f423d761596314248d3d4df5e7e975359f00c (patch)
tree763be6fe9d24c86e00daf21cb9b79b619b5c1595 /gtk/Makefile.nmake
parentf5f60f1ba325584fccf21a162826595a360ca6dc (diff)
Turn the GTK+ 1.2.10 clist code into our own widget; that lets us modify it
to add functionality or improve performance, although, until we make it work on GTK+ 1.3[.x] and 2.x, we shouldn't count on the performance improvements, or make its API different from that of the GtkClist API (other than names). Move all the code that knows about the packet list into gtk/packet_list.c, so that the GtkClist vs. EthClist stuff is encapsulated inside it. svn path=/trunk/; revision=9608
Diffstat (limited to 'gtk/Makefile.nmake')
-rw-r--r--gtk/Makefile.nmake14
1 files changed, 5 insertions, 9 deletions
diff --git a/gtk/Makefile.nmake b/gtk/Makefile.nmake
index 4f1de51264..b37e378173 100644
--- a/gtk/Makefile.nmake
+++ b/gtk/Makefile.nmake
@@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
-# $Id: Makefile.nmake,v 1.68 2003/12/29 22:43:33 guy Exp $
+# $Id: Makefile.nmake,v 1.69 2004/01/09 08:36:22 guy Exp $
include ..\config.nmake
@@ -49,14 +49,10 @@ ETHEREAL_TAP_SRC = \
ETHEREAL_TAP_OBJECTS = $(ETHEREAL_TAP_SRC:.c=.obj)
-# gtkclist.obj is not in here because it is gtk+-1.2 code,
-# while the DLL for GTK+ on windows is gtk+-1.3, and there's
-# some functions that have disappeared in gtk+-1.3 - and
-# the only purpose our gtkclist.c serves is to be faster
-# than versions of the CList code in some older GTK+ 1.2[.x]
-# releases, but as of 1.2.8 the standard GTK+ should have
-# the performance fix that's in our gtkclist.c, so there's no
-# reason to use our gtkclist.c.
+#
+# ethclist.obj is not in here because it is currently gtk+-1.2-only
+# code, while the DLL for GTK+ on Windows is gtk+-1.3.
+#
OBJECTS = \
capture_combo_utils.obj \
capture_dlg.obj \