diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2005-09-20 23:12:06 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2005-09-20 23:12:06 +0000 |
commit | b8fe8994b60903956161be74fd4e333ebc6c44e3 (patch) | |
tree | 47f8b34f3e144218578748a0e8c442d0e6234f36 | |
parent | da51f9008c48faba0f64d8913139491646ba8757 (diff) | |
download | mdk-b8fe8994b60903956161be74fd4e333ebc6c44e3.tar.gz mdk-b8fe8994b60903956161be74fd4e333ebc6c44e3.tar.bz2 |
Provide more info when failing to detect gui libs
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 4e38888..7a21dc8 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. # -# $Id: configure.in,v 1.38 2005/09/20 20:18:58 jao Exp $ +# $Id: configure.in,v 1.39 2005/09/20 23:12:06 jao Exp $ # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without @@ -113,7 +113,7 @@ dnl Check for gtk+ if test x$gui = xtrue; then PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4.0 libglade-2.0 >= 2.0.0 pango >= 1.4, [LIBS="$LIBS $GTK_LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS"], - [AC_MSG_WARN(Cannot find GTK+: the GUI shall not be built) + [AC_MSG_WARN(Cannot find GTK+/Glade/Pango: the GUI shall not be built) gui=false]) fi |