2014-02-12 12:55:42 +01:00
|
|
|
# This hook enables ld(1) --as-needed in gnu-configure packages.
|
|
|
|
|
|
|
|
hook() {
|
|
|
|
: ${configure_script:=./configure}
|
|
|
|
|
2014-02-15 05:12:32 +01:00
|
|
|
if [ ! -f ${configure_script} ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
2014-02-12 12:55:42 +01:00
|
|
|
# http://lists.gnu.org/archive/html/libtool-patches/2004-06/msg00002.html
|
|
|
|
if [ -z "$broken_as_needed" -a "$build_style" = "gnu-configure" ]; then
|
|
|
|
sed -i "s/^\([ \t]*tmp_sharedflag\)='-shared'/\1='-shared -Wl,--as-needed'/" ${configure_script}
|
|
|
|
fi
|
|
|
|
}
|