summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKarel Zak2006-12-07 00:27:10 +0100
committerKarel Zak2006-12-07 00:27:10 +0100
commit19922f22a1f6c4dd27b11f449c4ff86183842303 (patch)
tree44d3c22adbbfc63f17574734158284abdcdbadf2 /configure.ac
parentImported from util-linux-2.13-pre4 tarball. (diff)
downloadkernel-qcow2-util-linux-19922f22a1f6c4dd27b11f449c4ff86183842303.tar.gz
kernel-qcow2-util-linux-19922f22a1f6c4dd27b11f449c4ff86183842303.tar.xz
kernel-qcow2-util-linux-19922f22a1f6c4dd27b11f449c4ff86183842303.zip
Imported from util-linux-2.13-pre5 tarball.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 4 insertions, 5 deletions
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)