diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-06-15 18:55:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-06-15 18:55:34 +0000 |
commit | f7f177d372750e4f766ccefdf20e1b30d66cba0a (patch) | |
tree | d4e2a148640ba36d9a1e8cbf8557faa606ce5ba1 /src | |
parent | 82c4733116813ff862dade1984b6fb74149f4124 (diff) | |
download | postgresql-f7f177d372750e4f766ccefdf20e1b30d66cba0a.tar.gz postgresql-f7f177d372750e4f766ccefdf20e1b30d66cba0a.zip |
/contrib patch from Karel.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 4626d666c1c..399f30e4e87 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.77 2000/06/11 11:39:47 petere Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.78 2000/06/15 18:55:34 momjian Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -54,10 +54,12 @@ BSD_SHLIB= true ELF_SYSTEM= @ELF_SYS@ LIBPQDIR= $(SRCDIR)/interfaces/libpq +LIBPGEASYDIR= $(SRCDIR)/interfaces/libpgeasy LIBPGTCLDIR= $(SRCDIR)/interfaces/libpgtcl LIBPQ= -L$(LIBPQDIR) -lpq LIBPGTCL= -L$(LIBPGTCLDIR) -lpgtcl +LIBPGEASY= -L$(LIBPGEASYDIR) -lpgeasy # For convenience, POSTGRESDIR is where BINDIR, and LIBDIR # and other target destinations are rooted. Of course, each of these is |