? patch Index: Makefile.aix =================================================================== RCS file: /home/projects/pgsql/cvsroot/pgsql/src/makefiles/Makefile.aix,v retrieving revision 1.16 diff -c -r1.16 Makefile.aix *** Makefile.aix 2000/11/30 20:36:13 1.16 --- Makefile.aix 2001/04/04 20:11:53 *************** *** 11,17 **** ifeq ($(host_os), aix3.2.5) LDFLAGS_SL = -e _nostart endif ! ifeq ($(host_os), aix4.1) LDFLAGS_SL = -bnoentry endif endif --- 11,17 ---- ifeq ($(host_os), aix3.2.5) LDFLAGS_SL = -e _nostart endif ! ifneq (,$(findstring aix4.1, $(host_os))) LDFLAGS_SL = -bnoentry endif endif *************** *** 29,35 **** ifeq ($(host_os), aix3.2.5) $(MKLDEXPORT) postgres $(bindir) > $@ else ! ifeq ($(host_os), aix4.1) $(MKLDEXPORT) postgres $(bindir) > $@ else $(MKLDEXPORT) postgres . > $@ --- 29,35 ---- ifeq ($(host_os), aix3.2.5) $(MKLDEXPORT) postgres $(bindir) > $@ else ! ifneq (,$(findstring aix4.1, $(host_os))) $(MKLDEXPORT) postgres $(bindir) > $@ else $(MKLDEXPORT) postgres . > $@