shithub: freetype+ttf2subf

Download patch

ref: 1fd2bc8c37a053b5de531ba1380c18b014a94d9b
parent: a8b956227b62eec6f729064724c8c4775a96bbae
author: J Raynor <[email protected]>
date: Sat Mar 5 11:38:35 EST 2016

Make FreeType compile on AIX out of the box.

* builds/unix/configure.raw (XX_ANSIFLAGS): Don't use `-ansi' on
AIX.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-03-05  J Raynor <[email protected]>
+
+	Make FreeType compile on AIX out of the box.
+
+	* builds/unix/configure.raw (XX_ANSIFLAGS): Don't use `-ansi' on
+	AIX.
+
 2016-03-01  Werner Lemberg  <[email protected]>
 	    Kostya Serebryany  <[email protected]>
 
--- a/builds/unix/configure.raw
+++ b/builds/unix/configure.raw
@@ -235,6 +235,9 @@
   *-*-mingw*)
     XX_ANSIFLAGS="-pedantic"
     ;;
+  *-*-aix*)
+    XX_ANSIFLAGS="-pedantic"
+    ;;
   *)
     GCC_VERSION=`$CC -dumpversion`
     GCC_MAJOR=`echo "$GCC_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`