diff options
author | Tom Lane | 2003-10-28 21:55:58 +0000 |
---|---|---|
committer | Tom Lane | 2003-10-28 21:55:58 +0000 |
commit | 979b5375227dac6c42c1e5b9557d9d698997e7d1 (patch) | |
tree | 8da608935b42295575e760a6cc6ba2c3fb597381 /src/interfaces/libpgtcl/Makefile | |
parent | e554e2b090d8f9360ec7814ebec0eaa2e351b693 (diff) |
Include -lkrb5 when needed for shlibs depending on libpq. Per report
from Johan Henselmans.
Diffstat (limited to 'src/interfaces/libpgtcl/Makefile')
-rw-r--r-- | src/interfaces/libpgtcl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpgtcl/Makefile b/src/interfaces/libpgtcl/Makefile index 215da00754a..c6da2b9bd00 100644 --- a/src/interfaces/libpgtcl/Makefile +++ b/src/interfaces/libpgtcl/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.32 2003/09/27 20:38:19 tgl Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.33 2003/10/28 21:55:58 tgl Exp $ # #------------------------------------------------------------------------- @@ -21,7 +21,7 @@ override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) $(TCL_INCLUDE_SPEC) OBJS= pgtcl.o pgtclCmds.o pgtclId.o SHLIB_LINK = $(libpq) $(TCL_LIB_SPEC) $(TCL_LIBS) \ - $(filter -lssl -lcrypto -lcrypt, $(LIBS)) $(THREAD_LIBS) + $(filter -lssl -lcrypto -lkrb5 -lcrypt, $(LIBS)) $(THREAD_LIBS) all: submake-libpq all-lib |