diff options
author | Peter Eisentraut | 2003-11-01 20:45:30 +0000 |
---|---|---|
committer | Peter Eisentraut | 2003-11-01 20:45:30 +0000 |
commit | 0543af2f12ce921074815e16f6b3a4168f41533b (patch) | |
tree | 9e74155a914bbc2563b517e905d6a44a436aa13b | |
parent | f7e5e9d4935997a784045783fa140cebe25de8de (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 1e3d2261957..48f1110f3e8 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 |