Skip to content

Commit

Permalink
build/pkgs/meson/spkg-configure.m4: Require meson >= 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Aug 22, 2023
1 parent f37ce10 commit 69d462d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/pkgs/meson/spkg-configure.m4
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
SAGE_SPKG_CONFIGURE(
[meson], [
AC_CACHE_CHECK([for meson >= 0.64], [ac_cv_path_MESON], [
dnl scipy 1.11.2 needs meson >= 1.1.0
AC_CACHE_CHECK([for meson >= 1.1.0], [ac_cv_path_MESON], [
AC_PATH_PROGS_FEATURE_CHECK([MESON], [meson], [
meson_version=`$ac_path_MESON --version 2>&1`
AS_IF([test -n "$meson_version"], [
AX_COMPARE_VERSION([$meson_version], [ge], [0.64], [
AX_COMPARE_VERSION([$meson_version], [ge], [1.1.0], [
ac_cv_path_MESON="$ac_path_MESON"
ac_path_MESON_found=:
])
Expand Down

0 comments on commit 69d462d

Please sign in to comment.