diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-12-30 07:31:18 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-12-30 07:31:18 +0000 |
commit | 8acc256afe1746e821d6dca2836250cff77f9187 (patch) | |
tree | e5c9b6909b96ccdc3468e6cd0115b735be59cae7 | |
parent | a031c4aec306a6db9e524730801c9eb359c6b198 (diff) | |
download | wireshark-8acc256afe1746e821d6dca2836250cff77f9187.tar.gz wireshark-8acc256afe1746e821d6dca2836250cff77f9187.tar.bz2 wireshark-8acc256afe1746e821d6dca2836250cff77f9187.zip |
We don't have any links to activate if we don't have pcap.
svn path=/trunk/; revision=40343
-rw-r--r-- | gtk/main_welcome.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/main_welcome.c b/gtk/main_welcome.c index 2d184c37cb..e632ef261d 100644 --- a/gtk/main_welcome.c +++ b/gtk/main_welcome.c @@ -1090,6 +1090,7 @@ static void capture_if_start(GtkWidget *w _U_, gpointer data _U_) } #endif +#ifdef HAVE_LIBPCAP #if GTK_CHECK_VERSION(2,18,0) static gboolean activate_link_cb(GtkLabel *label _U_, gchar *uri, gpointer user_data _U_) @@ -1097,6 +1098,7 @@ activate_link_cb(GtkLabel *label _U_, gchar *uri, gpointer user_data _U_) return browser_open_url(uri); } #endif +#endif /* create the welcome page */ GtkWidget * |