pike.git/
src/
modules/
_Image_TTF/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1998-11-08
1998-11-08 18:52:27 by Mirar (Pontus Hagland) <pike@sort.mirar.org>
8714493ab797441da25d7de61b074924d50f77d3 (
10
lines) (+
8
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
better test for freetype include stuff
Rev: src/modules/_Image_TTF/configure.in:1.3
1:
#
-
# $Id: configure.in,v 1.
2
1998/11/
01
05
:
20
:
42
per
Exp $
+
# $Id: configure.in,v 1.
3
1998/11/
08
18
:
52
:
27
mirar
Exp $
# AC_INIT(image_ttf.c) AC_CONFIG_HEADER(config.h)
9:
if test x$with_ttflib = xyes ; then AC_CHECK_HEADERS(freetype.h)
-
if test $ac_cv_header_freetype_h = yes ; then
+
AC_CHECK_HEADERS(ftxkern.h)
+
if test $ac_cv_header_freetype_h = yes
-a \
+
$ac_cv_header_ftxkern_h = yes
; then
AC_CHECK_LIB(ttf, Load_TrueType_Names, [ AC_DEFINE(HAVE_LIBTTF) LIBS="${LIBS-} -lttf" ])
-
+
elif test $ac_cv_header_freetype_h = yes -a \
+
$ac_cv_header_ftxkern_h = no ; then
+
AC_MSG_WARN(Detected freetype library (libttf), but too old version)
fi fi AC_OUTPUT(Makefile,echo FOO >stamp-h )