diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-12-10 05:00:36 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-12-10 05:00:36 +0000 |
commit | cae01cd83641427097b3c6893b4010e28e3bcd27 (patch) | |
tree | c941f64d2203534e101ae6a59b8795eb592e02f1 | |
parent | 77a47299366e0246e3ec7419a9f8472281394b1e (diff) | |
download | postgresql-cae01cd83641427097b3c6893b4010e28e3bcd27.tar.gz postgresql-cae01cd83641427097b3c6893b4010e28e3bcd27.zip |
Fix LDREL.
-rw-r--r-- | src/Makefile.global.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 0d976c54c57..e05334df989 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.60 1999/11/02 00:05:29 momjian Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.61 1999/12/10 05:00:36 momjian Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -210,6 +210,7 @@ CFLAGS= -I$(SRCDIR)/include -I$(SRCDIR)/backend @CPPFLAGS@ @CFLAGS@ CFLAGS_SL= @SHARED_LIB@ LIBS= @LIBS@ LDFLAGS= @LDFLAGS@ $(LIBS) +LDREL= -r DLSUFFIX= @DLSUFFIX@ LN_S= @LN_S@ TAR= @tar@ |