X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=configure.in;h=5f2325d04bd34c2f753d9d673fbed88735a177ab;hb=7c88cafcd333277b6bfd55370a5ec1c5b76c2b0d;hp=b2e409a0cb5c365bb326cc5d7844fe9b397e82cc;hpb=a4028acb18fd04cbf03ddbd976115aeb04ddd867;p=pkg%2Fabook.git diff --git a/configure.in b/configure.in index b2e409a..5f2325d 100644 --- a/configure.in +++ b/configure.in @@ -1,10 +1,45 @@ dnl abook configure.in AC_INIT(abook.c) -AM_INIT_AUTOMAKE(abook, 0.5.4rc3) +AM_INIT_AUTOMAKE(abook, 0.6.0pre2) AM_CONFIG_HEADER(config.h) -AC_CANONICAL_HOST +dnl --------------- +dnl gettext support +dnl --------------- + +AC_USE_SYSTEM_EXTENSIONS +AM_GNU_GETTEXT +AM_GNU_GETTEXT_VERSION([0.18.1]) + +AC_DEFUN([ABOOK_EXPAND_PREFIX], [ + $1=$2 + dnl expanding twice, since from autoconf 2.60 on, $datadir refers to + dnl $datarootdir which in turn refers to $prefix + $1=`( test "x$prefix" = xNONE && prefix="$ac_default_prefix" + eval tmp_abook_prefix=\""[$]$1"\" + eval echo $tmp_abook_prefix + )` +]) + +ABOOK_EXPAND_PREFIX(abook_localedir, "$datadir/locale") +localedir="\$(datadir)/locale" + +AC_ARG_WITH(localedir, + [ --with-localedir=PATH Where the locale files are installed ]) +if test "x$with_localedir" != "x"; then + abook_localedir="$with_localedir" + localedir="$with_localedir" +fi + +AC_DEFINE_UNQUOTED(LOCALEDIR, "$abook_localedir", [locale directory]) +AC_SUBST(localedir) + +AM_CONDITIONAL(USE_INCLUDED_INTL_H, test x$USE_INCLUDED_LIBINTL = xyes) + +dnl ---------------------- +dnl end of gettext support +dnl ---------------------- AC_PROG_CC AC_ISC_POSIX @@ -15,7 +50,7 @@ fi AC_C_INLINE AC_PROG_INSTALL AC_HEADER_STDC -AC_CHECK_HEADERS(unistd.h locale.h termios.h linux/termios.h sys/ioctl.h) +AC_CHECK_HEADERS(unistd.h locale.h sys/ioctl.h iconv.h) AC_CHECK_HEADER(stdarg.h,AC_DEFINE(HAVE_STDARG_H, 1, [Define if you have the header file.]),AC_MSG_ERROR([*** stdarg.h is missing on your system ***])) AC_FUNC_STRCOLL AC_CHECK_FUNCS(setlocale) @@ -93,6 +128,33 @@ dnl ------------------------- dnl end of readline detection dnl ------------------------- +dnl ------------------ +dnl vformat detection +dnl ------------------ + +AC_ARG_ENABLE(vformat, [ --enable-vformat Use libvformat is available ], [case "${enableval}" in + yes) vformat=true ;; + no) vformat=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-vformat) ;; + esac], [vformat=false]) +VFORMAT="no" +if test x$vformat = xtrue; then + AC_CHECK_HEADER([vf_iface.h], [ + AC_CHECK_LIB([vformat], [vf_read_file], [ + MODULES="$MODULES m_vcf" + VFORMAT="yes" + LDFLAGS="-lvformat $LDFLAGS" + CFLAGS="-DVFORMAT=1 $CFLAGS" + ]) +]) +fi +AC_SUBST(VFORMAT) + +dnl ------------------------- +dnl end of vformat detection +dnl ------------------------- + + if test x$ac_widec_possible = xyes; then AC_DEFINE(HANDLE_MULTIBYTE, 1, [Handle multibyte characters]) fi @@ -101,6 +163,8 @@ AC_CHECK_FUNCS(resizeterm) AC_CHECK_FUNCS(snprintf vsnprintf) +AC_CHECK_FUNCS(strcasestr, AC_DEFINE(HAVE_STRCASESTR)) + AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging support ], [case "${enableval}" in yes) debug=true ;; no) debug=false ;; @@ -116,5 +180,4 @@ if test x$GCC = xyes; then CFLAGS="-Wall $CFLAGS" fi -AC_OUTPUT(Makefile abook.spec) - +AC_OUTPUT(Makefile abook.spec intl/Makefile po/Makefile.in)