Skip to content

fixes in spkg-configure.m4's #40568

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build/pkgs/flint/spkg-configure.m4
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ SAGE_SPKG_CONFIGURE([flint], [
AC_CHECK_HEADERS([flint/flint.h flint/padic.h], [dnl
dnl gr_get_fexpr appears in Flint 3.0
AC_SEARCH_LIBS([gr_get_fexpr], [flint], [dnl
dnl Assume Flint 3.3 is too new
AC_MSG_CHECKING([whether FLINT version is >= 3.3.0])
dnl Assume Flint 3.4 is too new
AC_MSG_CHECKING([whether FLINT version is >= 3.4.0])
AC_COMPILE_IFELSE([dnl
AC_LANG_PROGRAM([[#include <flint/flint.h>
#if __FLINT_RELEASE >= 30300
# error "FLINT 3.3 is too new"
#if __FLINT_RELEASE > 30399
# error "FLINT 3.4 is too new"
#endif
]])
], [dnl
Expand Down
4 changes: 2 additions & 2 deletions build/pkgs/roman_numerals_py/spkg-configure.m4
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SAGE_SPKG_CONFIGURE([roman-numericals-py], [
SAGE_PYTHON_PACKAGE_CHECK([roman-numericals-py])
SAGE_SPKG_CONFIGURE([roman_numerals_py], [
SAGE_PYTHON_PACKAGE_CHECK([roman_numerals])
])
Loading