From a9ffacc1b3e6f3a7ae8a525bed3879f19bc142d3 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 24 Jun 2008 04:04:47 +0000 Subject: [PATCH] Only include gtk/capture_globals.h if we're building with capture support. svn path=/trunk/; revision=25575 --- gtk/drag_and_drop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/drag_and_drop.c b/gtk/drag_and_drop.c index 9232a71c98..acbb0862ab 100644 --- a/gtk/drag_and_drop.c +++ b/gtk/drag_and_drop.c @@ -49,7 +49,9 @@ #include "gtk/drag_and_drop.h" #include "gtk/main.h" #include "gtk/main_menu.h" +#ifdef HAVE_LIBPCAP #include "gtk/capture_globals.h" +#endif enum { DND_TARGET_STRING, DND_TARGET_ROOTWIN, DND_TARGET_URL };