[SCM] an open source computer algebra system branch, cleanedupstream, updated. 6125e540ca6d66c307958938a9d53b245507c323
Bernhard R. Link
brlink at debian.org
Tue Apr 24 15:55:39 UTC 2012
The following commit has been merged in the cleanedupstream branch:
commit ca3f2564e3b0d1f873155b88c6f4634ead1c73fb
Author: Hans Schoenemann <hannes at mathematik.uni-kl.de>
Date: Mon Apr 16 14:43:42 2012 +0200
fix: do not abort configre, if ar is not found
This allows to define a different ar program
(see http://trac.sagemath.org/sage_trac/ticket/7832
http://www.singular.uni-kl.de:8002/trac/ticket/418)
but if none is found, you are on your own.
Will be changed with the new version anyway.
diff --git a/omalloc/configure b/omalloc/configure
index 0b4bd65..268ddfb 100755
--- a/omalloc/configure
+++ b/omalloc/configure
@@ -1293,9 +1293,6 @@ else
echo "$ac_t""no" 1>&6
fi
-if test "$ac_cv_prog_AR" != ar; then
- { echo "configure: error: *** ar program not found" 1>&2; exit 1; }
-fi
for ac_prog in perl
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
diff --git a/omalloc/configure.in b/omalloc/configure.in
index 1748da6..279b1ec 100644
--- a/omalloc/configure.in
+++ b/omalloc/configure.in
@@ -103,9 +103,6 @@ dnl lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll
dnl check for programs
dnl
AC_CHECK_PROG(AR, ar, ar, :)
-if test "$ac_cv_prog_AR" != ar; then
- AC_MSG_ERROR(*** ar program not found)
-fi
AC_CHECK_PROGS(PERL, perl, "no")
if test "$ac_cv_prog_PERL" = no; then
AC_MSG_ERROR(*** perl program not found)
--
an open source computer algebra system
More information about the debian-science-commits
mailing list