diff options
author | Havoc Pennington <hp@redhat.com> | 2000-12-20 19:20:05 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-12-20 19:20:05 +0000 |
commit | c1ed9d98350040f057abfb87412517d650738e52 (patch) | |
tree | 3908efb52984fe080b9765a08b549484b4b72d5d /configure.in | |
parent | 6ffa65f461d8a78d9190c0d9903a9ecd7273774a (diff) | |
download | pango-c1ed9d98350040f057abfb87412517d650738e52.tar.gz |
fix freetype check a bit
2000-12-20 Havoc Pennington <hp@redhat.com>
* configure.in: fix freetype check a bit
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index c4ac9fc8..e81c5c47 100644 --- a/configure.in +++ b/configure.in @@ -53,9 +53,9 @@ FREETYPE_LIBS= FREETYPE_CFLAGS= have_freetype=false AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no) -if test "x$FREE_CONFIG" != "xno" ; then - FREETYPE_CFLAGS=`freetype-config --cflags` - FREETYPE_LIBS=`freetype-config --libs` +if test "x$FREETYPE_CONFIG" != "xno" ; then + FREETYPE_CFLAGS=`$FREETYPE_CONFIG --cflags` + FREETYPE_LIBS=`$FREETYPE_CONFIG --libs` AC_CHECK_LIB(freetype, FT_New_Face, have_freetype=true ,:,$FREETYPE_LIBS) |