[Ffmpeg-cvslog] r7921 - trunk/configure
mru
subversion
Sun Feb 11 12:53:58 CET 2007
Author: mru
Date: Sun Feb 11 12:53:58 2007
New Revision: 7921
Modified:
trunk/configure
Log:
don't skip freetype2 check on beos
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Sun Feb 11 12:53:58 2007
@@ -1653,13 +1653,11 @@
# FreeType check
freetype2=no
-if test "x$targetos" != "xBeOS"; then
- if freetype-config --version >/dev/null 2>&1; then
- temp_cflags `freetype-config --cflags`
- temp_extralibs `freetype-config --libs`
- check_lib ft2build.h FT_Init_FreeType && enable freetype2
- restore_flags
- fi
+if freetype-config --version >/dev/null 2>&1; then
+ temp_cflags `freetype-config --cflags`
+ temp_extralibs `freetype-config --libs`
+ check_lib ft2build.h FT_Init_FreeType && enable freetype2
+ restore_flags
fi
##########################################
More information about the ffmpeg-cvslog
mailing list