X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=configure.in;h=fd01f99403567aeebd37b772fb48e39de236693e;hb=98f2bc1e0859323f381aa818a8c00d7ee85399d8;hp=b09f46baf07e00cd6a429338d4a1814da63aa2c3;hpb=d7a04a4e113b3d08aa0fde66ee658b7abe02e714;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index b09f46b..fd01f99 100644 --- a/configure.in +++ b/configure.in @@ -1,9 +1,14 @@ dnl abook configure.in AC_INIT(abook.c) -AM_INIT_AUTOMAKE(abook, 2002-03-11) +AM_INIT_AUTOMAKE(abook, 0.5.0) 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,12 +51,30 @@ 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)],) @@ -72,5 +95,5 @@ if test x$GCC = xyes; then CFLAGS="-Wall $CFLAGS" fi -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile abook.spec)