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