From 19922f22a1f6c4dd27b11f449c4ff86183842303 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 7 Dec 2006 00:27:10 +0100 Subject: Imported from util-linux-2.13-pre5 tarball. --- configure.ac | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 269e6310c..ac0f6c931 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(util-linux, 2.13-pre4, bunk@stusta.de) +AC_INIT(util-linux, 2.13-pre5, bunk@stusta.de) AC_PREREQ(2.59) @@ -67,7 +67,7 @@ AC_CHECK_HEADERS(ncurses.h) AC_CHECK_HEADERS(ncurses/ncurses.h) -if test x$ac_cv_header_ncurses_h = xyes || x$ac_cv_header_ncurses_ncurses_h = xyes; then +if test x$ac_cv_header_ncurses_h = xyes || test x$ac_cv_header_ncurses_ncurses_h = xyes; then have_ncurses=yes AC_MSG_NOTICE([you have ncurses]) else @@ -85,7 +85,7 @@ AC_ARG_WITH([slang], if test x$with_slang = xyes; then AC_CHECK_HEADERS(slcurses.h) AC_CHECK_HEADERS(slang/slcurses.h) - if test x$ac_cv_header_slcurses_h = xyes || x$ac_cv_header_slang_slcurses_h = xyes; then + if test x$ac_cv_header_slcurses_h = xyes || test x$ac_cv_header_slang_slcurses_h = xyes; then use_slang=yes else AC_MSG_ERROR([slang selected but slcurses.h not found]) @@ -379,11 +379,10 @@ if test x$enable_use_tty_group = xyes; then AC_DEFINE(USE_TTY_GROUP, 1, [Should wall and write be installed setgid tty?]) fi +CPPFLAGS="-fsigned-char -fomit-frame-pointer $CPPFLAGS" LIBS="" -CPPFLAGS="-fsigned-char -Wall -Wmissing-prototypes -Wstrict-prototypes -Wundef -Werror-implicit-function-declaration -fomit-frame-pointer $CPPFLAGS" - AC_CONFIG_HEADERS(config.h) -- cgit v1.2.3-55-g7522