From: handa Date: Mon, 13 Sep 2010 03:37:23 +0000 (+0000) Subject: If libotf-config is not available, try pkg-config. X-Git-Tag: REL-1-6-2~21 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=4cba367273b8503eeed200cf9a9e1f59ed2d4c0d;p=m17n%2Fm17n-lib.git If libotf-config is not available, try pkg-config. --- diff --git a/configure.ac b/configure.ac index 3ffe413..eaa7196 100644 --- a/configure.ac +++ b/configure.ac @@ -168,12 +168,16 @@ if test "x$with_libotf" != "xno"; then save_CPPFLAGS="$CPPFLAGS" save_LIBS="$LIBS" AC_CHECK_PROG(HAVE_OTFLIB_CONFIG, libotf-config, yes) + OTF_LD_FLAGS=-lotf if test "x$HAVE_OTFLIB_CONFIG" = "xyes"; then CPPFLAGS="$CPPFLAGS `libotf-config --cflags`" OTF_LD_FLAGS="`libotf-config --libs`" LIBS="$LIBS $OTF_LD_FLAGS" - else - OTF_LD_FLAGS=-lotf + elif test "x$HAVE_PKG_CONFIG" = "xyes" ; then + if pkg-config libotf ; then + CPPFLAGS="$CPPFLAGS `pkg-config --cflags libotf`" + OTF_LD_FLAGS="`pkg-config --libs libotf`" + fi fi ## We check the availability of OTF_check_features ## because we need libotf-0.9.4 or the later.