diff options
author | Bruce Momjian | 1997-01-14 16:06:03 +0000 |
---|---|---|
committer | Bruce Momjian | 1997-01-14 16:06:03 +0000 |
commit | 755b1f656132dc3b0c47ddb4a5faedd0491d9643 (patch) | |
tree | ff093ce356b16a9013cf7fa9d82ddc1593ab82ac | |
parent | 182052767ad60e77e2ddbae8b18782b5f26ee269 (diff) |
Re-add -lipc to bsdi port after erroneous removal.
-rw-r--r-- | src/Makefile.global | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.global b/src/Makefile.global index f63e76d78ee..501accd51e1 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.91 1997/01/14 08:19:41 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.92 1997/01/14 16:06:03 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 + LDADD_BE= -ltermcap -ldl -lipc 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 + LDADD_BE= -ldld -lcompat -lipc endif DLSUFFIX= .o |