comparison configure.ac @ 413:4f415a887ff8

build: drop build-time dependency on NumPy * Makefile.am (AM_CPPFLAGS): Remove -I$(NUMPY_INCLUDEDIR). * bitbucket-pipelines.yml: Don't install python-numpy or python3-numpy. * configure.ac: Remove call to AX_PYTHON_NUMPY. * m4/ax_python_numpy.m4: Delete.
author Mike Miller <mtmiller@octave.org>
date Wed, 03 May 2017 16:58:00 -0700
parents 09a1acb81d8b
children aeed116cf9f9
comparison
equal deleted inserted replaced
412:db29823a8919 413:4f415a887ff8
43 CPPFLAGS=$pytave_save_CPPFLAGS 43 CPPFLAGS=$pytave_save_CPPFLAGS
44 44
45 # Pick a Python library to use 45 # Pick a Python library to use
46 AX_PYTHON_DEVEL 46 AX_PYTHON_DEVEL
47 47
48 # Look for numpy headers
49 AX_PYTHON_NUMPY([], [AC_MSG_FAILURE([unable to find NumPy development files])])
50
51 # Look for boost::python 48 # Look for boost::python
52 AX_BOOST_PYTHON 49 AX_BOOST_PYTHON
53 if test -z "$BOOST_PYTHON_LIB"; then 50 if test -z "$BOOST_PYTHON_LIB"; then
54 AC_MSG_FAILURE([unable to find Boost::Python development files]) 51 AC_MSG_FAILURE([unable to find Boost::Python development files])
55 fi 52 fi