From: Raphaƫl Droz Date: Wed, 7 Nov 2012 18:42:56 +0000 (+0100) Subject: vformat: libvformat configure option added to configure.in X-Git-Tag: upstream/0.6.1~2^2~43 X-Git-Url: https://git.deb.at/w?p=pkg%2Fabook.git;a=commitdiff_plain;h=5f600a045603ac743f0b327a3f2990b830e6033e vformat: libvformat configure option added to configure.in --- diff --git a/configure.in b/configure.in index 432e479..5f2325d 100644 --- a/configure.in +++ b/configure.in @@ -128,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