diff --git a/ChangeLog b/ChangeLog index b82799255..4c3cab8e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2016-03-05 J Raynor + + 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 Kostya Serebryany diff --git a/builds/unix/configure.raw b/builds/unix/configure.raw index 1be10a3ca..ee814749a 100644 --- a/builds/unix/configure.raw +++ b/builds/unix/configure.raw @@ -235,6 +235,9 @@ if test "x$GCC" = xyes; then *-*-mingw*) XX_ANSIFLAGS="-pedantic" ;; + *-*-aix*) + XX_ANSIFLAGS="-pedantic" + ;; *) GCC_VERSION=`$CC -dumpversion` GCC_MAJOR=`echo "$GCC_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`