Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit e698ffc

Browse files
committed
corrected rebase
1 parent 013dfbe commit e698ffc

File tree

2 files changed

+2
-19
lines changed

2 files changed

+2
-19
lines changed

build/pkgs/flint/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dnl Just part the options here
1313
*)
1414
AC_MSG_ERROR([allowed values for --with-flint are system and install]);;
1515
esac
16-
16+
1717
case "$with_flint" in
1818
system)
1919
AC_CHECK_HEADER(flint/flint.h, [

src/bin/sage-env-config.in

+1-18
Original file line numberDiff line numberDiff line change
@@ -77,29 +77,12 @@ if [ -n "$SAGE_NTL_PREFIX" ]; then
7777
# SAGE_LOCAL it is useful to pass it.
7878
export SAGE_CONFIGURE_NTL="--with-ntl=$SAGE_NTL_PREFIX"
7979
fi
80-
# The MPFR case is very close to the GMP case above
81-
# This is usually blank if the system MPFR is used, or $SAGE_LOCAL otherwise
82-
export SAGE_MPFR_PREFIX="@SAGE_MPFR_PREFIX@"
83-
if [ -n "$SAGE_MPFR_PREFIX" ]; then
84-
# Some packages that depend on MPFR accept a --with-mpfr=<prefix> flag to
85-
# their ./configure scripts. Thus we deal with this just as with GMP above.
86-
export SAGE_CONFIGURE_MPFR="--with-gmp=$SAGE_MPFR_PREFIX"
87-
fi
88-
89-
# The MPC case is very close to the MPFR case above
90-
# This is usually blank if the system MPC is used, or $SAGE_LOCAL otherwise
91-
export SAGE_MPC_PREFIX="@SAGE_MPC_PREFIX@"
92-
if [ -n "$SAGE_MPC_PREFIX" ]; then
93-
# Some packages that depend on MPC accept a --with-mpc=<prefix> flag to
94-
# their ./configure scripts. Thus we deal with this just as with GMP above.
95-
export SAGE_CONFIGURE_MPC="--with-mpc=$SAGE_MPC_PREFIX"
96-
fi
9780

9881
# The FLINT case is very close to the MPFR case above
9982
# This is usually blank if the system FLINT is used, or $SAGE_LOCAL otherwise
10083
export SAGE_FLINT_PREFIX="@SAGE_FLINT_PREFIX@"
10184
if [ -n "$SAGE_FLINT_PREFIX" ]; then
10285
# Some packages that depend on FLINT accept a --with-flint=<prefix> flag to
103-
# their ./configure scripts. Thus we deal with this just as with GMP above.
86+
# their ./configure scripts. Thus we deal with this just as with GMP above.
10487
export SAGE_CONFIGURE_FLINT="--with-flint=$SAGE_FLINT_PREFIX"
10588
fi

0 commit comments

Comments
 (0)