diff options
author | Peter Eisentraut | 2000-10-07 18:43:23 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-10-07 18:43:23 +0000 |
commit | a3578c13e60aa11bfea8508822655bb7f5caf7c8 (patch) | |
tree | 52f53e76cdd2fa991f03a9d66121d8ff92127b20 /src/makefiles/Makefile.hpux | |
parent | 450b62138df7b465055921dd4a592e165217c9eb (diff) |
Separate -Wl,-E or equivalent into separate make variable, since it's only
necessary for the postgres/postmaster link, not every link.
Diffstat (limited to 'src/makefiles/Makefile.hpux')
-rw-r--r-- | src/makefiles/Makefile.hpux | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux index de2b87d6138..d93501e5d5f 100644 --- a/src/makefiles/Makefile.hpux +++ b/src/makefiles/Makefile.hpux @@ -23,7 +23,8 @@ endif # so that the executables don't need SHLIB_PATH to be set, specify -z # to catch null pointer dereferences, and specify -E to make all symbols # visible to dynamically linked shared libraries. -LDFLAGS+= -Wl,+b -Wl,$(libdir) -Wl,-z -Wl,-E +LDFLAGS+= -Wl,+b -Wl,$(libdir) -Wl,-z +export_dynamic = -Wl,-E # Rule for building shared libs (currently used only for regression test # shlib ... should go away, since this is not really enough knowledge) |