X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=configure.in;h=772c81c4faffe2ed93056ac8077d1905efa89148;hb=c3ff1f082b1f67fe5bcb535b43825356fc8800aa;hp=d783cbe15cc97c3f6a0add14df4f1143092b41f7;hpb=548845673bdbe52a3cb2d7c6c2818d3202fffcba;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index d783cbe..772c81c 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl abook configure.in AC_INIT(abook.c) -AM_INIT_AUTOMAKE(abook, 2002-xx-xx) +AM_INIT_AUTOMAKE(abook, 2002xxxx) AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST @@ -46,13 +46,29 @@ 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_lib_readline = xno -o x$ac_cv_lib_readline_history = xno; then +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 -LDFLAGS="$ac_cv_lib_readline $LDFLAGS" +dnl ------------------------- +dnl end of readline detection +dnl ------------------------- AC_CHECK_FUNCS(resizeterm) @@ -74,5 +90,5 @@ if test x$GCC = xyes; then CFLAGS="-Wall $CFLAGS" fi -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile abook.spec)