X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=configure.in;h=0ad64bc510ea9ba3e84660488ee22e3d2e0d6c8c;hb=3cea3c8809447c5d6658671b78b9af7137fd9b0d;hp=f9d7b1a13744e1fa53a71d1663c274398e934982;hpb=8c3f50479d2b84db00ed9b8305ca92a5b56ba32e;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index f9d7b1a..0ad64bc 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, 2002-xx-xx) AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST @@ -17,6 +17,7 @@ AC_PROG_INSTALL AC_HEADER_STDC AC_CHECK_HEADERS(unistd.h locale.h termios.h linux/termios.h sys/ioctl.h) AC_CHECK_HEADER(stdarg.h,AC_DEFINE(HAVE_STDARG_H),AC_MSG_ERROR([*** stdarg.h is missing on your system ***])) +AC_FUNC_STRCOLL AC_CHECK_FUNCS(setlocale) dnl ------------------- @@ -24,7 +25,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 +51,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) ;;