X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=configure.in;h=427b09b2f0f399d63ecb1289daea64d51b281597;hb=465ab361f66ef10dd6540da7efa4432928333ec3;hp=d4556b9352bab3567e7c322ea8a28826b5162c7d;hpb=1a2b8c7380b47ce85f10c035bedcc04b1766ce3e;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index d4556b9..427b09b 100644 --- a/configure.in +++ b/configure.in @@ -1,9 +1,14 @@ dnl abook configure.in AC_INIT(abook.c) -AM_INIT_AUTOMAKE(abook, 2002-xx-xx) +AM_INIT_AUTOMAKE(abook, 0.5.1rc1) 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 @@ -46,13 +51,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_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 +95,5 @@ if test x$GCC = xyes; then CFLAGS="-Wall $CFLAGS" fi -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile abook.spec)