diff options
author | Peter Eisentraut | 2003-11-01 20:45:30 +0000 |
---|---|---|
committer | Peter Eisentraut | 2003-11-01 20:45:30 +0000 |
commit | 3255f2592de0a555ab7dc7d0798d077905c85758 (patch) | |
tree | efa32841ca4776dc13fa1a0ff6f674a9f1ab458a | |
parent | f8ab56d3088c798889ec66352881e392a89a93fc (diff) |
Fix CFLAGS logic.
-rw-r--r-- | src/template/aix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/template/aix b/src/template/aix index 1e3d226195..48f1110f3e 100644 --- a/src/template/aix +++ b/src/template/aix @@ -1,7 +1,10 @@ if test "$GCC" != yes ; then case $host_os in - aix3.2.5 | aix4.1*) ;; - *) CFLAGS="-O2 -qlonglong";; + aix3.2.5 | aix4.1*) + CFLAGS="-O -qmaxmem=16384 -qsrcmsg" + ;; + *) + CFLAGS="-O2 -qmaxmem=16384 -qsrcmsg -qlonglong" + ;; esac - CFLAGS="-O -qmaxmem=16384 -qsrcmsg" fi |