Newer
Older
Import / applications / Photoframe / Research / SMB / jags-0.22.1 / configure.in
@John Ryland John Ryland on 22 Dec 2020 673 bytes import of apps from backup copy of dell-pc
dnl Process this file with autoconf to produce a configure script.

AC_INIT(configure.in)
AM_INIT_AUTOMAKE(jags, 0.22)
AM_CONFIG_HEADER(config.h)

AC_PROG_CC
AC_PROG_CXX

AM_PATH_GTK(1.2.0, ,
            AC_MSG_ERROR(Cannot find GTK: Is gtk-config in path?))

myapp_save_prefix="${prefix}"
test "x${prefix}" = "xNONE" && prefix="${ac_default_prefix}"
AC_DEFINE_UNQUOTED([JAGS_PREFIX],["${prefix}"],[package prefix])
prefix="${myapp_save_prefix}"

AC_OUTPUT([
Makefile
src/Makefile
plugins/Makefile
])
echo ""
echo "Now type make to compile jags."
echo ""
echo "If you're upgrading from a previous version of Jags, "
echo "please run ./upgrade after 'make install'"
echo ""