Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5c2649b

Browse files
committed
From: Darren King <aixssd!darrenk@abs.net>
Subject: [PORTS] Makefile.aix patch. Have to add libc.a to the link when making a shared lib.
1 parent 90d0cf0 commit 5c2649b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/makefiles/Makefile.aix

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ $(POSTGRES_IMP):
1919

2020
%.so: %.o %$(EXPSUFF)
2121
@echo Making share library $@ from $*.o, $*$(EXPSUFF), and installed postgres.imp
22-
$(LD) -H512 -e _nostart -bM:SRE -bI:$(LIBDIR)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS)
23-
#41 $(LD) -H512 -bnoentry -bM:SRE -bI:$(LIBDIR)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS)
24-
#325 $(LD) -H512 -e _nostart -bM:SRE -bI:$(LIBDIR)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS)
22+
$(LD) -H512 -e _nostart -bM:SRE -bI:$(LIBDIR)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) -lc
23+
#41+ $(LD) -H512 -bnoentry -bM:SRE -bI:$(LIBDIR)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) -lc
24+
#325 $(LD) -H512 -e _nostart -bM:SRE -bI:$(LIBDIR)/$(POSTGRES_IMP) -bE:$*$(EXPSUFF) -o $@ $*.o $(LDFLAGS) -lc

0 commit comments

Comments
 (0)