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/libpgtcl | |
parent | afd57dbb3a01e386bea3a302ae393206bde81547 (diff) |
Include -lcrypt when needed to link libpgtcl.so and plpgsql.so
Diffstat (limited to 'src/interfaces/libpgtcl')
-rw-r--r-- | src/interfaces/libpgtcl/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/interfaces/libpgtcl/Makefile.in b/src/interfaces/libpgtcl/Makefile.in index a70245f9880..e58b4719ae5 100644 --- a/src/interfaces/libpgtcl/Makefile.in +++ b/src/interfaces/libpgtcl/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.33 1998/10/19 00:00:41 tgl Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.34 1999/02/07 22:10:45 tgl Exp $ # #------------------------------------------------------------------------- @@ -27,7 +27,12 @@ endif OBJS= pgtcl.o pgtclCmds.o pgtclId.o -SHLIB_LINK= -L../libpq -lpq +SHLIB_LINK+= -L../libpq -lpq + +# If crypt is a separate library, rather than part of libc, it may need +# to be referenced separately to keep (broken) linkers happy. (This is +# braindead; users of libpq should not need to know what it depends on.) +SHLIB_LINK+= $(findstring -lcrypt,$(LIBS)) # Shared library stuff, also default 'all' target include $(SRCDIR)/Makefile.shlib |