Download this file
37 lines (28 with data), 966 Bytes
AC_INIT(natcJavaBridge.c)
AM_INIT_AUTOMAKE(java_bridge, "`cat ../VERSION`")
AM_CONFIG_HEADER(config.h)
AC_CONFIG_AUX_DIR(.)
AC_PROG_CC
AC_PROG_CPP
AM_PROG_LIBTOOL
AC_STDC_HEADERS
AC_ARG_WITH(java, [--with-java[=JAVA_HOME] Include java support], PHP_JAVA="$withval", PHP_JAVA="yes")
AC_ARG_WITH(extdir, [--with-extdir[=DIR] Diretory which contains the shared java extension], EXT_DIR="$withval", EXT_DIR="`php-config --extension-dir`")
JAVA_FUNCTION_CHECKS
PTHREADS_CHECK
PTHREADS_ASSIGN_VARS
PTHREADS_FLAGS
JAVA_CHECK_BROKEN_STDIO_BUFFERING
# find includes eg. -I/opt/jdk1.4/include -I/opt/jdk1.4/include/linux
if test "$PHP_JAVA" != "yes"; then
PHP_EVAL_INCLINE(`for i in \`find $PHP_JAVA/include -type d -print\`; do echo -n "-I$i "; done`)
else
AM_PROG_GCJ
# LIBTOOL="${LIBTOOL} --tag=CC"
fi
INCLUDES="$INCLUDES -I.. -I."
AC_SUBST(INCLUDES)
AC_SUBST(EXT_DIR)
AC_SUBST(PHP_JAVA)
AM_CONDITIONAL([COND_GCJ], [test "$PHP_JAVA" = "yes"])
AC_OUTPUT(Makefile)
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.