diff options
author | Tomas Carnecky <tom@dbservice.com> | 2010-04-30 20:52:40 +0200 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-06-03 18:16:11 -0700 |
commit | 80d5d162be5f52fd7ad08eab99dac6ff4a5ef28a (patch) | |
tree | c276f1858c6c3081c1aed309467f9575c61d1251 /configure | |
parent | 0ffea4297fa76abb94372acd5b57a12014780ae4 (diff) |
configure: Respect LDFLAGS from the environment.
The configure usage string documents that it respects LDFLAGS, but
currently it doesn't do anything with the configure-time LDFLAGS
value.
Signed-off-by: Tomas Carnecky <tom@dbservice.com>
[Tomas and Nelson sent almost identical patches which I've merged
together here.]
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -6,6 +6,7 @@ CC=${CC:-gcc} CXX=${CXX:-g++} CFLAGS=${CFLAGS:--O2} CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)} +LDFLAGS=${LDFLAGS:-} XAPIAN_CONFIG=${XAPIAN_CONFIG:-xapian-config-1.1 xapian-config} # We don't allow the EMACS or GZIP Makefile variables inherit values @@ -389,6 +390,9 @@ CFLAGS = ${CFLAGS} # Default FLAGS for C++ compiler (can be overridden by user such as "make CXXFLAGS=-g") CXXFLAGS = ${CXXFLAGS} +# Default FLAGS for the linker (can be overridden by user such as "make LDFLAGS=-znow") +LDFLAGS = ${LDFLAGS} + # Flags to enable warnings when using the C++ compiler WARN_CXXFLAGS=-Wall -Wextra -Wwrite-strings -Wswitch-enum |