xaos: lib:libgsl is not available on x86_gcc2.

This commit is contained in:
fbrosson
2018-06-17 12:07:38 +00:00
parent f7613f3c66
commit d87f55cf7c

View File

@@ -42,18 +42,17 @@ REQUIRES="
lib:libiconv$secondaryArchSuffix
lib:libintl$secondaryArchSuffix
"
if [ $effectiveTargetArchitecture == x86_64 ]; then
if [ "$effectiveTargetArchitecture" != x86_gcc2 ]; then
REQUIRES+="
lib:libgsl$secondaryArchSuffix
"
fi
BUILD_REQUIRES="
devel:libgsl$secondaryArchSuffix
devel:libiconv$secondaryArchSuffix
devel:libintl$secondaryArchSuffix
"
if [ $effectiveTargetArchitecture == x86_64 ]; then
if [ "$effectiveTargetArchitecture != x86_gcc2 ]; then
BUILD_REQUIRES+="
devel:libgsl$secondaryArchSuffix
"
@@ -71,7 +70,7 @@ BUILD()
libtoolize --force --copy --install
ldflags="-lintl -liconv"
configureFlags=
if [ $effectiveTargetArchitecture == x86_64 ]; then
if [ "$effectiveTargetArchitecture" != x86_gcc2 ]; then
ldflags="$ldflags -lstdc++"
configureFlags=--disable-cffe
fi