comparison configure.ac @ 389:d4061763a56b

Delete and no longer build Python extension module * Makefile.am (_pytave.la): Delete all declarations. * configure.ac (PYTAVE_MODULE_INSTALL_PATH): Delete hack. * pytave.cc: Delete.
author Mike Miller <mtmiller@octave.org>
date Mon, 03 Apr 2017 12:11:25 -0700
parents 43e92dd60dd0
children 4ba06dcadecd
comparison
equal deleted inserted replaced
388:ce61206a61f8 389:d4061763a56b
29 AC_PROG_CPP 29 AC_PROG_CPP
30 AC_PROG_CC 30 AC_PROG_CC
31 31
32 # Load our custom m4 scripts (from the m4 directory) 32 # Load our custom m4 scripts (from the m4 directory)
33 AC_CONFIG_MACRO_DIR(m4) 33 AC_CONFIG_MACRO_DIR(m4)
34 AC_CONFIG_SRCDIR([pytave.cc]) 34 AC_CONFIG_SRCDIR([oct-py-eval.cc])
35 AC_CONFIG_HEADER([config.h]) 35 AC_CONFIG_HEADER([config.h])
36 AC_CONFIG_FILES([Makefile]) 36 AC_CONFIG_FILES([Makefile])
37 37
38 # Find Octave 38 # Find Octave
39 AX_OCTAVE([OCTAVE_CONFIG], [], 39 AX_OCTAVE([OCTAVE_CONFIG], [],
77 77
78 # Checks for library functions. 78 # Checks for library functions.
79 AC_CHECK_FUNCS([uselocale], [pytave_have_uselocale=yes], 79 AC_CHECK_FUNCS([uselocale], [pytave_have_uselocale=yes],
80 [pytave_have_uselocale=no]) 80 [pytave_have_uselocale=no])
81 81
82 # This needs a more usable, less unusual solution.
83 AS_IF([test "x${prefix}" == "xNONE"],
84 [PYTAVE_MODULE_INSTALL_PATH=/../invalidpath],
85 [PYTAVE_MODULE_INSTALL_PATH=${prefix}])
86 AC_SUBST(PYTAVE_MODULE_INSTALL_PATH)
87
88 AC_OUTPUT 82 AC_OUTPUT
89 83
90 AC_MSG_NOTICE([ 84 AC_MSG_NOTICE([
91 ======================================================================== 85 ========================================================================
92 Pytave is configured with the following setup 86 Pytave is configured with the following setup