mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-20 19:42:30 -08:00
If we failed to configure the GMP library and we are not using a system-wide one, abort.
This commit is contained in:
parent
530a3cefb4
commit
15a0668cd0
2 changed files with 8 additions and 0 deletions
5
src/configure
vendored
5
src/configure
vendored
|
|
@ -5529,6 +5529,11 @@ $as_echo "$as_me: Configuring included GMP library:" >&6;}
|
|||
--libdir=${destdir} --build=${gmp_build} --host=${host_alias} \
|
||||
CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" CC="${CC} ${PICFLAG}" \
|
||||
"$GMP_ABI" $with_gmp)
|
||||
if test ! -f gmp/config.status; then
|
||||
{ { $as_echo "$as_me:$LINENO: error: Failed to configure the GMP library." >&5
|
||||
$as_echo "$as_me: error: Failed to configure the GMP library." >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
fi
|
||||
fi
|
||||
else
|
||||
if test "x$ECL_GMP_HEADER" = "x"; then
|
||||
|
|
|
|||
|
|
@ -395,6 +395,9 @@ else
|
|||
--libdir=${destdir} --build=${gmp_build} --host=${host_alias} \
|
||||
CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" CPPFLAGS="$CPPFLAGS" CC="${CC} ${PICFLAG}" \
|
||||
"$GMP_ABI" $with_gmp)
|
||||
if test ! -f gmp/config.status; then
|
||||
AC_MSG_ERROR([Failed to configure the GMP library.])
|
||||
fi
|
||||
fi
|
||||
else
|
||||
if test "x$ECL_GMP_HEADER" = "x"; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue