summaryrefslogtreecommitdiff
path: root/builds
diff options
context:
space:
mode:
authorJ Raynor <jxraynor@gmail.com>2016-03-05 16:38:35 +0100
committerWerner Lemberg <wl@gnu.org>2016-03-05 16:38:35 +0100
commit1fd2bc8c37a053b5de531ba1380c18b014a94d9b (patch)
treed6680fe57707669358d302e2b37b713189ee02b5 /builds
parenta8b956227b62eec6f729064724c8c4775a96bbae (diff)
downloadfreetype2-1fd2bc8c37a053b5de531ba1380c18b014a94d9b.tar.gz
Make FreeType compile on AIX out of the box.
* builds/unix/configure.raw (XX_ANSIFLAGS): Don't use `-ansi' on AIX.
Diffstat (limited to 'builds')
-rw-r--r--builds/unix/configure.raw3
1 files changed, 3 insertions, 0 deletions
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/'`