diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-07 22:10:47 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-07 22:10:47 +0000 |
commit | 45ff93c4604437bed5a615d69b57dd31517f743d (patch) | |
tree | 50091a91acbec996b6a1db537aafc33de53aced6 /src/interfaces/libpq | |
parent | afd57dbb3a01e386bea3a302ae393206bde81547 (diff) | |
download | postgresql-45ff93c4604437bed5a615d69b57dd31517f743d.tar.gz postgresql-45ff93c4604437bed5a615d69b57dd31517f743d.zip |
Include -lcrypt when needed to link libpgtcl.so and plpgsql.so
Diffstat (limited to 'src/interfaces/libpq')
-rw-r--r-- | src/interfaces/libpq/Makefile.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/interfaces/libpq/Makefile.in b/src/interfaces/libpq/Makefile.in index b5ad798affc..76437d5f598 100644 --- a/src/interfaces/libpq/Makefile.in +++ b/src/interfaces/libpq/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.43 1999/02/02 18:51:29 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.44 1999/02/07 22:10:46 tgl Exp $ # #------------------------------------------------------------------------- @@ -36,11 +36,7 @@ endif # If crypt is a separate library, rather than part of libc, # make sure it gets included in shared libpq. -ifeq ($(PORTNAME), win) SHLIB_LINK+= $(findstring -lcrypt,$(LIBS)) -else -SHLIB_LINK= $(findstring -lcrypt,$(LIBS)) -endif # Shared library stuff, also default 'all' target include $(SRCDIR)/Makefile.shlib |