view jamendo/sparql-archived/SeRQL/configure.in @ 27:d95e683fbd35 tip

Enable CORS on urispace redirects as well
author Chris Cannam
date Tue, 20 Feb 2018 14:52:02 +0000
parents df9685986338
children
line wrap: on
line source
dnl Process this file with autoconf to produce a configure script.

AC_INIT(install-sh)

AC_SUBST(PL)
AC_SUBST(PLBASE)
AC_SUBST(PLARCH)

# Do not cache this, it changes too often in many configurations
unset ac_cv_prog_PL

if test -z "$PLINCL"; then
plcandidates="swi-prolog swipl pl"
AC_CHECK_PROGS(PL, $plcandidates, "none")
if test $PL = "none"; then
   AC_ERROR("Cannot find SWI-Prolog. SWI-Prolog must be installed first")
else
   AC_CHECKING("Running $PL -dump-runtime-variables")
   eval `$PL -dump-runtime-variables`
fi
AC_MSG_RESULT("		PLBASE=$PLBASE")
AC_MSG_RESULT("		PLARCH=$PLARCH")
fi

AC_CHECK_PROGS(MAKE, gmake make, "make")
AC_PROG_INSTALL

AC_OUTPUT(Makefile)