summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.aix
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-09-29 22:00:49 +0000
committerBruce Momjian <bruce@momjian.us>2000-09-29 22:00:49 +0000
commit469ebeefd644e829facdb9fab2dc8b8a47352795 (patch)
tree8c59f1a259d4f186468348988d8fe168e7f48166 /src/makefiles/Makefile.aix
parent72ad5fe15c93fefa8debb0fc8ef5c85b560ffac7 (diff)
downloadpostgresql-469ebeefd644e829facdb9fab2dc8b8a47352795.tar.gz
Please apply the following patch to fix problems with the AIX port
and the fmgr redesign. It makes the homebrewn dl*() functions for more recent Versions of AIX obsolete by using the system dl*() functions instead. It also fixes the expected file for the horology regression test. Please regenerate configure from configure.in, I don't have the environment/time. Andreas
Diffstat (limited to 'src/makefiles/Makefile.aix')
-rw-r--r--src/makefiles/Makefile.aix2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.aix b/src/makefiles/Makefile.aix
index 0066135179..c40ff6d374 100644
--- a/src/makefiles/Makefile.aix
+++ b/src/makefiles/Makefile.aix
@@ -22,4 +22,4 @@ $(POSTGRES_IMP):
%$(DLSUFFIX): %.o %$(EXPSUFF)
@echo Making share library $@ from $*.o, $*$(EXPSUFF), and installed postgres.imp
- $(LD) -H512 -bM:SRE -bI:$(libdir)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) $(CFLAGS_SL)
+ $(CC) -Wl,-H512 -Wl,-bM:SRE -Wl,-bI:$(libdir)/$(POSTGRES_IMP) -Wl,-bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) $(CFLAGS_SL)