X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=configure.ac;h=eaa7196492ce0aa17d06c7fcb349863452a97eb2;hb=9b862a296364db1976fad00cd3a18550ee077f57;hp=3ffe413b758160be4874b55f1a4adc20d51118dd;hpb=5173aa5892795261e14750507f7dc35f626c9332;p=m17n%2Fm17n-lib.git 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.