Commit 64da792b authored by Bernie Purcell's avatar Bernie Purcell

Fix cross-compilation issue of freetype where native compiler not getting

picked up in configure due to bracket in wrong place.
parent f325f88e
...@@ -477,6 +477,7 @@ freetype-$(FREETYPE2_VERSION).tar.gz: ...@@ -477,6 +477,7 @@ freetype-$(FREETYPE2_VERSION).tar.gz:
freetype2: freetype-$(FREETYPE2_VERSION).tar.gz freetype2: freetype-$(FREETYPE2_VERSION).tar.gz
$(EXTRACT_GZ) $(EXTRACT_GZ)
patch -p0 < Patches/freetype-cross.patch
.freetype: freetype2 .freetype: freetype2
ifdef HAVE_CYGWIN ifdef HAVE_CYGWIN
......
--- freetype2/builds/unix/configure Tue Jul 3 07:41:45 2007
+++ freetype2/builds/unix/configure.new Mon Sep 24 10:42:30 2007
***************
*** 3269,3277 ****
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
- ac_cv_prog_CC_BUILD="${build-gcc}"
echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
--- 3269,3277 ----
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ ac_cv_prog_CC_BUILD="${build}-gcc"
echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment