summaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/ac_pkg_cython.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ac_pkg_cython.m4 b/m4/ac_pkg_cython.m4
index 123f2dc..e0af96a 100644
--- a/m4/ac_pkg_cython.m4
+++ b/m4/ac_pkg_cython.m4
@@ -1,8 +1,8 @@
1 1
2AC_DEFUN([AC_PROG_CYTHON],[ 2AC_DEFUN([AC_PROG_CYTHON],[
3 AC_PATH_PROG([CYTHON],[cython]) 3 AC_PATH_PROGS([CYTHON],[cython cython3])
4 if test -z "$CYTHON" ; then 4 if test -z "$CYTHON" ; then
5 AC_MSG_WARN([Unable to find 'cython' program. You should look at http://www.cython.org] or install your distribution specific cython package.) 5 AC_MSG_WARN([Unable to find 'cython' or 'cython3' program. You should look at https://cython.org or install your distribution specific cython package.])
6 CYTHON=false 6 CYTHON=false
7 elif test -n "$1" ; then 7 elif test -n "$1" ; then
8 AC_MSG_CHECKING([for Cython version]) 8 AC_MSG_CHECKING([for Cython version])