diff options
author | Bruce Momjian | 1998-05-12 15:42:09 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-05-12 15:42:09 +0000 |
commit | c312583767d9f343de76a4414e3950e6de61fbf1 (patch) | |
tree | c19df709b7abaef2e299e1e76518fda564720d1a /src/bin/pgtclsh | |
parent | 02a9d7e273028d77a9e3de4b52a1c51993ea5ea7 (diff) |
Add sys/time.h to fe-misc.c, prevent pgtclsh from using old libaries,
and allow CUSTOM_COPT to appear in compile AND LINK commands.
Diffstat (limited to 'src/bin/pgtclsh')
-rw-r--r-- | src/bin/pgtclsh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pgtclsh/Makefile b/src/bin/pgtclsh/Makefile index 1efe8930918..b0e474508e9 100644 --- a/src/bin/pgtclsh/Makefile +++ b/src/bin/pgtclsh/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.17 1998/04/06 16:51:35 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.18 1998/05/12 15:42:08 momjian Exp $ # #------------------------------------------------------------------------- @@ -22,8 +22,8 @@ CFLAGS+= $(KRBFLAGS) endif # try to find libpgtcl.a in either directory -LIBPGTCL= -L$(SRCDIR)/interfaces/libpgtcl -L$(LIBDIR) -lpgtcl -LIBPQ= -L$(LIBPQDIR) -L$(LIBDIR) -lpq +LIBPGTCL= -L$(SRCDIR)/interfaces/libpgtcl -lpgtcl +LIBPQ= -L$(LIBPQDIR) -lpq all: pgtclsh pgtksh |