comparison configure.ac @ 416:aeed116cf9f9

build: drop build-time dependency on Boost * Makefile.am (OCT_LIBS): Remove -l$(BOOST_PYTHON_LIB). * bitbucket-pipelines.yml: Don't install libboost-python-dev. * configure.ac: Remove call to AX_BOOST_PYTHON. * m4/ax_boost_base.m4, m4/ax_boost_python.m4: Delete.
author Mike Miller <mtmiller@octave.org>
date Wed, 03 May 2017 21:50:37 -0700
parents 4f415a887ff8
children 4e427ec1650a
comparison
equal deleted inserted replaced
415:9bf8ba050122 416:aeed116cf9f9
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 boost::python
49 AX_BOOST_PYTHON
50 if test -z "$BOOST_PYTHON_LIB"; then
51 AC_MSG_FAILURE([unable to find Boost::Python development files])
52 fi
53
54 AM_INIT_AUTOMAKE([foreign -Wno-portability]) 48 AM_INIT_AUTOMAKE([foreign -Wno-portability])
55 LT_INIT 49 LT_INIT
56 50
57 # Checks for typedefs, structures, and compiler characteristics. 51 # Checks for typedefs, structures, and compiler characteristics.
58 AC_HEADER_STDBOOL 52 AC_HEADER_STDBOOL
77 Dependencies 71 Dependencies
78 Octave ............. $OCTAVE_INCLUDEDIR 72 Octave ............. $OCTAVE_INCLUDEDIR
79 Python ............. $PYTHON_CPPFLAGS 73 Python ............. $PYTHON_CPPFLAGS
80 library .......... $PYTHON_LIBS 74 library .......... $PYTHON_LIBS
81 executable ....... $PYTHON 75 executable ....... $PYTHON
82 Boost::Python ...... $BOOST_PYTHON_LIB
83 76
84 ========================================================================]) 77 ========================================================================])