]> git.deb.at Git - pkg/abook.git/blobdiff - configure.in
use strcoll instead of strcmp for sorting entries
[pkg/abook.git] / configure.in
index 0a49f8ca4c3b110dfad844d0bf5c986a60484ba6..0591642939b1222a6856272b84812a40560ce6e9 100644 (file)
@@ -1,7 +1,7 @@
 dnl abook configure.in
 
 AC_INIT(abook.c)
-AM_INIT_AUTOMAKE(abook, 0.4.12pre1)
+AM_INIT_AUTOMAKE(abook, 0.4.16-cvs)
 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) ;;