From 9f6aaa50b05b74e344d9c2533a3739f0de565d94 Mon Sep 17 00:00:00 2001 From: handa Date: Wed, 19 Jul 2006 02:25:22 +0000 Subject: [PATCH] Include @FREETYPE_INC@ and @FREETYPE_LD_FLAGS@ in output. --- libotf-config.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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;; *) -- 1.7.10.4