X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=configure.in;h=f1bb8d635e9f2b79ed85bb87d381d9fb96a4415f;hb=d4cd6aada86c2d1c3e046b91a271184e659716fa;hp=9a9a2521db1e55a023e316bc8561a2e2ac85c2ff;hpb=3a500c48898f7a279a98bfc259955a2e47bbfc48;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index 9a9a252..f1bb8d6 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl abook configure.in AC_INIT(abook.c) -AM_INIT_AUTOMAKE(abook, 0.4.13pre2-cvs) +AM_INIT_AUTOMAKE(abook, 0.4.15pre2) AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST @@ -24,7 +24,7 @@ dnl (n)curses detection dnl ------------------- abook_cv_curses=/usr -AC_ARG_WITH(curses, [ --with-curses=DIR Where ncurses is installed ], +AC_ARG_WITH(curses, [ --with-curses=DIR Where ncurses is installed ], [if test $withval != yes; then abook_cv_curses=$withval fi @@ -50,7 +50,7 @@ AC_CHECK_FUNCS(resizeterm) AC_CHECK_FUNC(snprintf, [AC_DEFINE(HAVE_SNPRINTF)],) AC_CHECK_FUNC(vsnprintf, [AC_DEFINE(HAVE_VSNPRINTF)],) -AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging support ], [case "${enableval}" in +AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging support ], [case "${enableval}" in yes) debug=true ;; no) debug=false ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;; @@ -61,16 +61,6 @@ if test x$debug = xtrue; then CFLAGS="-g $CFLAGS" fi -AC_ARG_ENABLE(nonascii, [ --disable-nonascii Disable usage of non-ascii characters ], [case "${enableval}" in - yes) nonascii=true ;; - no) nonascii=false ;; - *) AC_MSG_ERROR(bad value ${enableval} for --disable-nonascii) ;; - esac], [nonascii=true]) - -if test x$nonascii = xfalse; then - AC_DEFINE(USE_ASCII_ONLY) -fi - if test x$GCC = xyes; then CFLAGS="-Wall $CFLAGS" fi