projects
/
m17n
/
libotf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09eeb29
)
Include @FREETYPE_INC@ and @FREETYPE_LD_FLAGS@
author
handa
<handa>
Wed, 19 Jul 2006 02:25:22 +0000
(
02:25
+0000)
committer
handa
<handa>
Wed, 19 Jul 2006 02:25:22 +0000
(
02:25
+0000)
in output.
libotf-config.in
patch
|
blob
|
history
diff --git
a/libotf-config.in
b/libotf-config.in
index
a82f92c
..
a5dd6f5
100644
(file)
--- 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;;
*)