26
AC_CACHE_CHECK([if swig supports Python3],
27
[ac_cv_swig_has_python3_],
29
AS_IF([swig -python3 2>&1 | grep "Unable to find" > /dev/null],
30
[ac_cv_swig_has_python3_=no],
31
[ac_cv_swig_has_python3_=yes])
28
AC_DEFUN([PANDORA_SWIG_PYTHON3],[
29
AC_REQUIRE([PANDORA_SWIG])
30
AS_IF([test "x$SWIG" != "x"],[
31
AC_CACHE_CHECK([if swig supports Python3],
32
[ac_cv_swig_has_python3_],
34
AS_IF([$SWIG -python -help 2>&1 | grep py3 > /dev/null],
35
[ac_cv_swig_has_python3_=yes],
36
[ac_cv_swig_has_python3_=no])