summaryrefslogtreecommitdiff
path: root/src/template/aix
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-10-21 22:36:14 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-10-21 22:36:14 +0000
commitf8ff1ee5aab125fc1e5e130e6055a0e6586ce440 (patch)
treeb8ccedfa296d6a8acbb7277e7c0347dbdfac6b66 /src/template/aix
parent0968601b1baaceb8e9d6b437e8e740b4c9ff34c5 (diff)
downloadpostgresql-f8ff1ee5aab125fc1e5e130e6055a0e6586ce440.tar.gz
Move DLSUFFIX, AROPT, and CFLAGS_SL settings from template to
Makefile.port, since they are of no use to configure and much of the library magic happens in Makefile.port anyway. Use __alpha, not __alpha__, since the former is universally available. Remove -DNOFIXADE from the compile command line and put it in the port include file.
Diffstat (limited to 'src/template/aix')
-rw-r--r--src/template/aix7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/template/aix b/src/template/aix
index 8b81c6e154..75cd678a28 100644
--- a/src/template/aix
+++ b/src/template/aix
@@ -1,23 +1,16 @@
-AROPT=crs
-DLSUFFIX=.so
-
if test "$GCC" = yes ; then
CFLAGS=-pipe
CXXFLAGS=-pipe
- SHARED_LIB=-lc
else # not GCC
case $host_os in
aix3.2.5)
CFLAGS='-qchars=signed -qmaxmem=8192 -qhalt=w -qsrcmsg'
- SHARED_LIB='-e _nostart -lc'
;;
aix4.1)
CFLAGS='-qchars=signed -qmaxmem=8192 -qhalt=w -qsrcmsg -qcheck=divzero'
- SHARED_LIB='-bnoentry -lc'
;;
aix4.2 | aix4.3)
CFLAGS='-qmaxmem=16384 -qhalt=w -qsrcmsg -qlanglvl=extended -qlonglong'
- SHARED_LIB='-lc'
;;
esac
fi # not GCC