diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-09-01 21:11:13 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-09-01 21:11:13 +0000 |
commit | 8d38abc8f0f64cea5c537376fc9c3660ea13895d (patch) | |
tree | a51631adcaf86fda3c91e444d66f8aeaf7ddd248 /net-www/gnash | |
parent | bump to 0.8.1, fix various crashing bugs. (diff) | |
download | gentoo-2-8d38abc8f0f64cea5c537376fc9c3660ea13895d.tar.gz gentoo-2-8d38abc8f0f64cea5c537376fc9c3660ea13895d.tar.bz2 gentoo-2-8d38abc8f0f64cea5c537376fc9c3660ea13895d.zip |
Update dynamic link patch to always link dynamic, bug 230287
(Portage version: 2.2_rc8/cvs/Linux 2.6.25.8 i686)
Diffstat (limited to 'net-www/gnash')
-rw-r--r-- | net-www/gnash/ChangeLog | 6 | ||||
-rw-r--r-- | net-www/gnash/files/gnash-0.8.3-boost-dynamic-link.patch | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/net-www/gnash/ChangeLog b/net-www/gnash/ChangeLog index 348455961345..af05e59e84aa 100644 --- a/net-www/gnash/ChangeLog +++ b/net-www/gnash/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-www/gnash # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/ChangeLog,v 1.60 2008/08/23 03:14:04 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/gnash/ChangeLog,v 1.61 2008/09/01 21:11:13 loki_val Exp $ + + 01 Sep 2008; Peter Alfredsen <loki_val@gentoo.org> + files/gnash-0.8.3-boost-dynamic-link.patch: + Update dynamic link patch to always link dynamic, bug 230287 23 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml: add GLEP 56 USE flag desc from use.local.desc diff --git a/net-www/gnash/files/gnash-0.8.3-boost-dynamic-link.patch b/net-www/gnash/files/gnash-0.8.3-boost-dynamic-link.patch index 2612328b8a14..ec1564a34d30 100644 --- a/net-www/gnash/files/gnash-0.8.3-boost-dynamic-link.patch +++ b/net-www/gnash/files/gnash-0.8.3-boost-dynamic-link.patch @@ -10,10 +10,10 @@ diff -u -r1.74 boost.m4 fi for j in ${boost_libs}; do - dirs="`ls -dr $i/libboost_${j}*.${shlibext} $i/libboost_${j}*.a 2>/dev/null`" -+ dirs="`ls -dr $i/libboost_${j}*.${shlibext} 2>/dev/null`" ++ dirs="`ls -dr $i/libboost_${j}*.so 2>/dev/null`" if test -n "${dirs}"; then - libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e "s:\.${shlibext}::" -e "s:\.a::"`" -+ libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e "s:\.${shlibext}::"`" ++ libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e "s:\.so::"`" if test x$dirname = x; then dirname="`echo ${dirs} | sed -e 's:/libboost.*$::'`" if test x"${dirname}" != "x/usr/lib"; then @@ -22,10 +22,10 @@ diff -u -r1.74 boost.m4 done for j in ${extra_boost_libs}; do - dirs="`ls -dr ${dirname}/libboost_${j}*.${shlibext} ${dirname}/libboost_${j}*.a 2>/dev/null`" -+ dirs="`ls -dr ${dirname}/libboost_${j}*.${shlibext} 2>/dev/null`" ++ dirs="`ls -dr ${dirname}/libboost_${j}*.so 2>/dev/null`" if test -n "${dirs}"; then - libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e "s:\.${shlibext}::" -e "s:\.a::"`" -+ libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e "s:\.${shlibext}::"`" ++ libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e "s:\.so::"`" ac_cv_path_boost_extra_lib="${ac_cv_path_boost_extra_lib} -l${libname}" else extra_missing_libs="${extra_missing_libs} $j" |