Files
genders/source/config/ac_python_extensions.m4
T
2024-03-06 15:21:38 +01:00

25 lines
737 B
Plaintext
Executable File

##*****************************************************************************
## $Id: ac_python_extensions.m4,v 1.1 2009-02-19 00:50:17 chu11 Exp $
##*****************************************************************************
AC_DEFUN([AC_PYTHON_EXTENSIONS],
[
AC_MSG_CHECKING(for --with-python-extensions)
AC_ARG_WITH(python-extensions,
AC_HELP_STRING([--with-python-extensions=],
[enable or disable python extensions build]),
[ case "$withval" in
yes)
ac_with_python_extensions=yes
;;
no)
ac_with_python_extensions=no
;;
*)
ac_with_python_extensions=yes
;;
esac ]
)
AC_MSG_RESULT(${ac_with_python_extensions=yes})
])