]> git.deb.at Git - pkg/abook.git/blobdiff - configure.in
vformat: added abook's specific libvformat wrapper: vcard.[ch]
[pkg/abook.git] / configure.in
index 93ccef968e0bc591b6b69d7672689acca0e155ec..5f2325d04bd34c2f753d9d673fbed88735a177ab 100644 (file)
@@ -1,15 +1,16 @@
 dnl abook configure.in
 
 AC_INIT(abook.c)
-AM_INIT_AUTOMAKE(abook, 0.6.0pre1)
+AM_INIT_AUTOMAKE(abook, 0.6.0pre2)
 AM_CONFIG_HEADER(config.h)
 
 dnl ---------------
 dnl gettext support
 dnl ---------------
 
+AC_USE_SYSTEM_EXTENSIONS
 AM_GNU_GETTEXT
-AM_GNU_GETTEXT_VERSION(0.14.1)
+AM_GNU_GETTEXT_VERSION([0.18.1])
 
 AC_DEFUN([ABOOK_EXPAND_PREFIX], [
        $1=$2
@@ -127,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
@@ -135,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 ;;
@@ -151,4 +181,3 @@ if test x$GCC = xyes; then
 fi
 
 AC_OUTPUT(Makefile abook.spec intl/Makefile po/Makefile.in)
-