[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Gnash] Gnash cvs fails to build on Gentoo amd64.
From: |
Harley Peters |
Subject: |
Re: [Gnash] Gnash cvs fails to build on Gentoo amd64. |
Date: |
Wed, 16 Jan 2008 20:21:53 -0600 |
User-agent: |
Thunderbird 2.0.0.9 (X11/20071117) |
Harley Peters wrote:
Rob Savoye wrote:
Harley Peters wrote:
I have been compiling cvs Gnash for sometime now with this same version
of Boost and it has never had a problem before.
A change made on Jan 7th seems to have caused this problem, and I
checked in a fix last night. Can you please try with cvs HEAD as of
today ? It's bug http://savannah.gnu.org/bugs/?21977
- rob -
I just got done trying again and i still get the same error.
Harley
_______________________________________________
Gnash mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/gnash
Well it looks like cvs is still on the first patch.
This is what i have from cvs for boost.m4
Seems to match patch 1.
for j in ${boost_libs}; do
dirs="`ls -dr $i/libboost_${j}*.${shlibext} $i/libboost_${j}*.a
2>/dev/null`"
if test -n "${dirs}"; then
libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e
"s:\.${shlibext}::" -e "s:\.a::"`"
if test x$dirname = x; then
dirname="`echo ${dirs} | sed -e 's:/libboost.*$::'`"
if test x"${dirname}" != "x/usr/lib"; then
ac_cv_path_boost_lib="-L${dirname}"
fi
fi
ac_cv_path_boost_lib="${ac_cv_path_boost_lib} -l${libname}"
else
missing_libs="${missing_libs} $j"
fi
done
done
for j in ${extra_boost_libs}; do
dirs="`ls -dr ${dirname}/libboost_${j}*.${shlibext}
${dirname}/libboost_${j}*.a 2>/dev/null`"
if test -n "${dirs}"; then
libname="`echo ${dirs} | sed -e 's:^.*/lib::' -e
"s:\.${shlibext}::" -e "s:\.a::"`"
ac_cv_path_boost_extra_lib="${ac_cv_path_boost_extra_lib}
-l${libname}"
else
extra_missing_libs="${extra_missing_libs} $j"
fi