1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.71])
AC_INIT([gyoto-python],[0.0.0],[gyoto@sympa.obspm.fr])
AC_CONFIG_SRCDIR([include/GyotoPython.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
LT_INIT
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_INSTALL
PKG_PROG_PKG_CONFIG([])
AS_IF([test "x$PKG_CONFIG" == "x"],
[AC_MSG_ERROR([Please install pkg-config])])
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
# Checks for library functions.
AC_CHECK_FUNCS([pow sqrt])
# Guess *LD_LIBRARY_PATH variable for make check
AC_SUBST([target_os])
SYS=other
DYLIB_VAR=LD_LIBRARY_PATH
case "x$target_os" in
xdarwin*|xmacos)
DYLIB_VAR=DYLD_LIBRARY_PATH
SYS=Darwin
;;
*) ;;
esac
plugin_sfx=so
AC_SUBST([DYLIB_VAR])
# Used in yorick/stdplug/Makefile
AC_SUBST([SYS])
AC_SUBST([plugin_sfx])
AS_IF([test "x$PKG_CONFIG_PATH" != "x"],
[PKG_CONFIG_PATH=:$PKG_CONFIG_PATH])
PKG_CONFIG_PATH=../../lib$PKG_CONFIG_PATH
export PKG_CONFIG_PATH
echo $PKG_CONFIG_PATH
# Read Gyoto's pkg-config file
PKG_CHECK_MODULES([Gyoto],
[gyoto],
[
AC_SUBST([soverdir], [`$PKG_CONFIG --variable=GYOTO_PLUGDIR gyoto`])
AC_SUBST([GYOTO], [`$PKG_CONFIG --variable=GYOTO gyoto`])
AC_SUBST([GYOTO_PREFIX], [`$PKG_CONFIG --variable=prefix gyoto`])
AC_SUBST([GYOTO_EPREFIX], [`$PKG_CONFIG --variable=exec_prefix gyoto`])
AC_SUBST([GYOTO_PLUGIN_SFX], [`$PKG_CONFIG --variable=GYOTO_PLUGIN_SFX gyoto`])
AC_SUBST([Y_INST_HOME], [`$PKG_CONFIG --variable=Y_INST_HOME gyoto`])
AC_SUBST([Y_INST_SITE], [`$PKG_CONFIG --variable=Y_INST_SITE gyoto`])
gyoto_MPICXX=`$PKG_CONFIG --variable=MPICXX gyoto`
],
[AC_MSG_ERROR([gyoto.pc not found or not functional!
Check PKG_CONFIG_PATH or call the guru])]
)
AS_IF([test "x$gyoto_MPICXX" != "x"], [CXX="$gyoto_MPICXX"])
AC_ARG_WITH([python],
[AS_HELP_STRING([--with-python@<:@=interpreter@:>@],[force (or disable) python support, possibly specifying interpreter])],
[
case $with_python in
yes | no) ;;
*)
PYTHON=`which $with_python` || AC_MSG_ERROR([$with_python: command not found])
with_python=yes
esac
],
[])
PC_PROG_PYTHON([python3], [3.0], [4.0])
PC_PYTHON_PROG_PYTHON_CONFIG([],[yes])
PC_PYTHON_CHECK_INCLUDES
PC_PYTHON_CHECK_HEADERS
PC_PYTHON_CHECK_CFLAGS
PC_PYTHON_CHECK_LDFLAGS
PC_PYTHON_CHECK_LIBS
# Make sure plug-in name matches real name of interpreter.
# If different from provided name, make a symlink.
pluginname=`basename $PYTHON`
linkname=`basename $PYTHON`
real=`which $PYTHON`
curdir=`pwd`
while test x$real != x ; do
cd `dirname $real`
pluginname=`basename $real`
real=`readlink $pluginname || true`
done
cd $curdir
AC_SUBST([pluginname])
AC_SUBST([linkname])
AM_CONDITIONAL([DEFAULT], [test x$pluginname != x$linkname])
# Find out where NumPy headers are located
AC_MSG_CHECKING([for NumPy include files])
numpy_includes=`$PYTHON -c "import numpy ; print(numpy.get_include())"`
AC_MSG_RESULT($numpy_includes)
AS_IF([ test "x$numpy_includes" != "x"],
[NUMPY_CFLAGS=-I$numpy_includes],
[NUMPY_CFLAGS=""])
AC_SUBST([NUMPY_CFLAGS])
mySUBDIRS="lib"
AC_CONFIG_FILES([Makefile lib/Makefile bin/gyoto],
[test -e bin/gyoto && chmod a+x bin/gyoto])
AC_SUBST([mySUBDIRS])
AC_OUTPUT
|