From: handa Date: Wed, 19 Jul 2006 02:25:22 +0000 (+0000) Subject: Include @FREETYPE_INC@ and @FREETYPE_LD_FLAGS@ X-Git-Tag: REL-0-9-5~8 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=9f6aaa50b05b74e344d9c2533a3739f0de565d94;p=m17n%2Flibotf.git Include @FREETYPE_INC@ and @FREETYPE_LD_FLAGS@ in output. --- diff --git a/libotf-config.in b/libotf-config.in index a82f92c..a5dd6f5 100644 --- a/libotf-config.in +++ b/libotf-config.in @@ -24,14 +24,16 @@ case $1 in --libs) if test "@libdir@" != "/usr/lib"; then - echo "-L@libdir@ -lotf" + echo "@FREETYPE_LD_FLAGS@ -L@libdir@ -lotf" else - echo "-lotf" + echo "@FREETYPE_LD_FLAGS@ -lotf" fi;; --cflags) if test "@includedir@" != "/usr/include"; then - echo "-I@includedir@" + echo "@FREETYPE_INC@ -I@includedir@" + else + echo "@FREETYPE_INC@" fi;; *)