X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=libotf-config.in;h=a5dd6f575d1049252b39527cd824a326f6f09fe3;hb=226ee4793276fa931026883052b29ccc8e5d0e4b;hp=a82f92cf7e2f0a783a25541d513870a347419a4d;hpb=67a27c717a44891d264f5f64bc118d0a19a65c9c;p=m17n%2Flibotf.git 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;; *)