X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=configure.in;h=70f81d44d8c40ef20f17b30e5194f0090c85db7f;hb=064920c49cdf2a8f8cea68a1fa4e277b9cfe0a93;hp=41a132dcdd5c7739ad70e9c6acb25a49cad94499;hpb=3212da92838c056bcc1cafa57beaf26086e2ac96;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index 41a132d..70f81d4 100644 --- a/configure.in +++ b/configure.in @@ -1,9 +1,14 @@ dnl abook configure.in AC_INIT(abook.c) -AM_INIT_AUTOMAKE(abook, 0.4.13-dev) +AM_INIT_AUTOMAKE(abook, 0.5.1) AM_CONFIG_HEADER(config.h) +AC_DEFINE(HAVE_SNPRINTF, 0, [Define if snprintf is available.]) +AC_DEFINE(HAVE_VSNPRINTF, 0, [Define if vsnprintf is available.]) +AC_DEFINE(HAVE_STDARG_H, 0, [Define if you have the header file.]) +AC_DEFINE(HAVE_NCURSES, 0, [Define if you have the header file.]) + AC_CANONICAL_HOST AC_PROG_CC @@ -17,6 +22,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 +30,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 @@ -45,12 +51,36 @@ dnl -------------------------- dnl end of (n)curses detection dnl -------------------------- +dnl ------------------ +dnl readline detection +dnl ------------------ + +abook_cv_readline=/usr +AC_ARG_WITH(readline, [ --with-readline=DIR Where readline is installed ], + [if test $withval != yes; then + abook_cv_readline=$withval + fi + if test x$abook_cv_readline != x/usr; then + LDFLAGS="-L${abook_cv_readline}/lib $LDFLAGS" + CPPFLAGS="$CPPFLAGS -I${abook_cv_readline}/include" + fi]) + +AC_LIB_READLINE + +if test x$ac_cv_lib_readline = xno -o x$ac_cv_lib_readline_history = xno; then + AC_MSG_ERROR([*** readline library not found or it doesn't support history ***]) +fi + +dnl ------------------------- +dnl end of readline detection +dnl ------------------------- + 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,23 +91,9 @@ 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$debug = xtrue; then - CPPFLAGS="-DDEBUG $CPPFLAGS" - CFLAGS="-g $CFLAGS" -fi if test x$GCC = xyes; then CFLAGS="-Wall $CFLAGS" fi -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile abook.spec)