summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorNoah Levitt <nlevitt@columbia.edu>2003-11-17 20:57:40 +0000
committerNoah Levitt <nlevitt@src.gnome.org>2003-11-17 20:57:40 +0000
commit2a9551f54e1751ca85ad981bc4dc514ec4196b2e (patch)
tree41a2e9f03770845573004c699045c0315589eaf7 /configure.in
parent835d755b9c456a8dab5fd2c831c4b439f7f042e2 (diff)
downloadgdk-pixbuf-2a9551f54e1751ca85ad981bc4dc514ec4196b2e.tar.gz
Check for freetype headers the way freetype wants us to.
2003-11-17 Noah Levitt <nlevitt@columbia.edu> * configure.in: Check for freetype headers the way freetype wants us to.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 67aadaeb8..da44bef23 100644
--- a/configure.in
+++ b/configure.in
@@ -984,7 +984,8 @@ if test "x$gdktarget" = "xlinux-fb" || test "x$gdktarget" = "xx11" ; then
AC_MSG_CHECKING([For sufficiently new FreeType (at least 2.0.1)])
AC_TRY_COMPILE([
-#include <freetype/freetype.h>
+#include <ft2build.h>
+#include FT_FREETYPE_H
#include FT_ERRORS_H
],
[(void)1;],:,have_freetype=false)