summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>1999-09-30 16:31:39 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>1999-09-30 16:31:39 +0000
commita14ebfc9c3da7ac28460b0b6dbcb7d3d2667e248 (patch)
treef2df3cf26bcab34b1b5c834cb817ee1c75bfb67f
parent0d12891b58b0d99d0910adee1f5a818377e057f7 (diff)
downloadirssi-a14ebfc9c3da7ac28460b0b6dbcb7d3d2667e248.zip
GtkIText: imlib isn't required anymore, underlined text works
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@29 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r--configure.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 4e660c1e..b572d447 100644
--- a/configure.in
+++ b/configure.in
@@ -223,6 +223,7 @@ AM_CONDITIONAL(HAVE_GNOME, test "x$want_gnome" = "xyes")
if test "x$want_gnome" = "xyes"; then
AC_DEFINE(HAVE_GTK)
AC_DEFINE(HAVE_GNOME)
+ AC_DEFINE(HAVE_IMLIB)
GNOME_SUPPORT_CHECKS
GUI_CFLAGS="$GNOME_INCLUDEDIR"
@@ -232,14 +233,14 @@ if test "x$want_gnome" = "xyes"; then
if test "x$want_gnome_panel" = "xyes"; then
AC_CHECK_LIB(panel_applet, applet_widget_init, [
- GUI_LIBS="$GNOME_LIBDIR $GNOMEGNORBA_LIBS $ZVT_LIBS -lpanel_applet"
+ GUI_LIBS="$GNOME_LIBDIR $GNOMEGNORBA_LIBS -lpanel_applet"
AC_DEFINE(HAVE_GNOME_PANEL)
], [
- GUI_LIBS="$GNOME_LIBDIR $GNOMEUI_LIBS $ZVT_LIBS"
+ GUI_LIBS="$GNOME_LIBDIR $GNOMEUI_LIBS"
want_gnome_panel="no"
], $GNOME_LIBDIR $GNOMEGNORBA_LIBS -lpanel_applet)
else
- GUI_LIBS="$GNOME_LIBDIR $GNOMEUI_LIBS $ZVT_LIBS"
+ GUI_LIBS="$GNOME_LIBDIR $GNOMEUI_LIBS"
fi
else