summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2002-03-20 01:28:32 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2002-03-20 01:28:32 +0000
commitea15f81d133178baaeb22ed98b3b04c5e970bfc4 (patch)
tree631d8569c055674673a49af3a7f93032a82d6137
parent98c602f96a427a0c7b9911dda1ab5f07e67935ad (diff)
downloadmdk-ea15f81d133178baaeb22ed98b3b04c5e970bfc4.tar.gz
mdk-ea15f81d133178baaeb22ed98b3b04c5e970bfc4.tar.bz2
correctly grouping commands inside []
-rw-r--r--configure.in16
1 files changed, 11 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 704662e..f45c764 100644
--- a/configure.in
+++ b/configure.in
@@ -41,17 +41,20 @@ esac], [readl=true])
if test x$readl = xtrue; then
AC_CHECK_LIB(ncurses, initscr, ,
- [AC_MSG_WARN(Cannot find ncurses lib) readl=false])
+ [AC_MSG_WARN(Cannot find ncurses lib)
+ readl=false])
fi
if test x$readl = xtrue; then
AC_CHECK_LIB(readline, readline, ,
- [AC_MSG_WARN(Cannot find GNU readline lib) readl=false])
+ [AC_MSG_WARN(Cannot find GNU readline lib)
+ readl=false])
fi
if test x$readl = xtrue; then
AC_CHECK_LIB(history, add_history, ,
- [AC_MSG_WARN(Cannot find GNU history lib) readl=false])
+ [AC_MSG_WARN(Cannot find GNU history lib)
+ readl=false])
dnl old versions of readline use completion_matches instead
dnl of rl_completion_matches
AC_CHECK_FUNCS(rl_completion_matches,,)
@@ -87,7 +90,9 @@ AM_CONDITIONAL(MAKE_GUILE, test x$wguile = xtrue)
dnl Check for glib
AM_PATH_GLIB(1.2.0,
- [LIBS="$LIBS $GLIB_LIBS" CFLAGS="$CFLAGS $GLIB_CFLAGS"],
+ [LIBS="$LIBS $GLIB_LIBS"
+ CFLAGS="$CFLAGS
+ $GLIB_CFLAGS"],
AC_MSG_ERROR(Cannot find GLIB), "gmodule" )
dnl Check if the gtk gui is required
@@ -103,7 +108,8 @@ dnl Check for gtk+
if test x$gui = xtrue; then
AM_PATH_GTK(1.2.0,
[LIBS="$LIBS $GTK_LIBS" CFLAGS="$CFLAGS $GTK_CFLAGS"],
-[AC_MSG_WARN(Cannot find GTK+: the GUI shall not be built) gui=false],
+[AC_MSG_WARN(Cannot find GTK+: the GUI shall not be built)
+ gui=false],
"gmodule" )
fi