Skip to content

Commit

Permalink
config-ml.in: Remove 64bit configure tests.
Browse files Browse the repository at this point in the history
2007-12-02  Matthias Klose  <doko@ubuntu.com>

        * config-ml.in: Remove 64bit configure tests.

From-SVN: r130568
  • Loading branch information
doko42 authored and Matthias Klose committed Dec 2, 2007
1 parent d48b46e commit aba7501
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 46 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2007-12-02 Matthias Klose <doko@ubuntu.com>

* config-ml.in: Remove 64bit configure tests.

2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>

* config-ml.in: Robustify against white space in absolute file
Expand Down
46 changes: 0 additions & 46 deletions config-ml.in
Original file line number Diff line number Diff line change
Expand Up @@ -382,28 +382,6 @@ mips*-*-*)
esac
done
fi
case " $multidirs " in
*" mabi=64 "*)
# We will not be able to create libraries with -mabi=64 if
# we cannot even link a trivial program. It usually
# indicates the 64bit libraries are missing.
if echo 'main() {}' > conftest.c &&
${CC-gcc} -mabi=64 conftest.c -o conftest; then
:
else
echo Could not link program with -mabi=64, disabling it.
old_multidirs="${multidirs}"
multidirs=""
for x in ${old_multidirs}; do
case "$x" in
*mabi=64* ) : ;;
*) multidirs="${multidirs} ${x}" ;;
esac
done
fi
rm -f conftest.c conftest
;;
esac
;;
powerpc*-*-* | rs6000*-*-*)
if [ x$enable_aix64 = xno ]
Expand Down Expand Up @@ -495,30 +473,6 @@ powerpc*-*-* | rs6000*-*-*)
done
fi
;;
sparc*-*-*)
case " $multidirs " in
*" m64 "*)
# We will not be able to create libraries with -m64 if
# we cannot even link a trivial program. It usually
# indicates the 64bit libraries are missing.
if echo 'main() {}' > conftest.c &&
${CC-gcc} -m64 conftest.c -o conftest; then
:
else
echo Could not link program with -m64, disabling it.
old_multidirs="${multidirs}"
multidirs=""
for x in ${old_multidirs}; do
case "$x" in
*m64* ) : ;;
*) multidirs="${multidirs} ${x}" ;;
esac
done
fi
rm -f conftest.c conftest
;;
esac
;;
esac

# Remove extraneous blanks from multidirs.
Expand Down

0 comments on commit aba7501

Please sign in to comment.