diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-01-13 17:04:04 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-01-13 17:04:04 +0000 |
commit | a53f72e38b30913cc2d43f52d012c50ae050ec68 (patch) | |
tree | b7f485049e04d8b9606171d7163a212150b6267b /src | |
parent | ed3db60321e974332616c580b822cffa63b8e42f (diff) | |
download | postgresql-a53f72e38b30913cc2d43f52d012c50ae050ec68.tar.gz postgresql-a53f72e38b30913cc2d43f52d012c50ae050ec68.zip |
Change -lIPC to -lipc.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index 23d83bae59f..580addfa42f 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.87 1997/01/13 03:52:00 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.88 1997/01/13 17:04:04 momjian Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -409,7 +409,7 @@ ifeq ($(PRE_BSDI_2_1), false) # cc is gcc v1.42 # gcc is gcc v2.7.2 LEX= lex - LDADD_BE= -ltermcap -ldl -lipc + LDADD_BE= -ltermcap -ldl else # cc is gcc v1.42 # gcc is gcc v2.6.3 @@ -417,7 +417,7 @@ else # use the regex library USE_REGEX= 1 CFLAGS_BE= -DPRE_BSDI_2_1 - LDADD_BE= -ldld -lcompat -lipc + LDADD_BE= -ldld -lcompat endif DLSUFFIX= .o @@ -702,7 +702,7 @@ endif ifneq ($(PORTNAME), nextstep) -LDADD_BE+= -lIPC +LDADD_BE+= -lipc AROPT= rc DLSUFFIX= .o endif |