AC_INIT(link-grammar/link-parser.c) dnl Set release number dnl This is derived from "Versioning" chapter of info libtool documentation. PACKAGE=link-grammar dnl 4a) Increment when removing or changing interfaces. LINK_MAJOR_VERSION=4 dnl 4a) 5) Increment when adding interfaces. dnl 6) Set to zero when removing or changing interfaces. LINK_MINOR_VERSION=5 dnl 3) Increment when interfaces not changed at all, dnl only bug fixes or internal changes made. dnl 4b) Set to zero when adding, removing or changing interfaces. LINK_MICRO_VERSION=6 dnl dnl Set this too MAJOR_VERSION_PLUS_MINOR_VERSION=`expr $LINK_MAJOR_VERSION + $LINK_MINOR_VERSION` dnl VERSION=$LINK_MAJOR_VERSION.$LINK_MINOR_VERSION.$LINK_MICRO_VERSION dnl Version info for libraries = CURRENT:REVISION:AGE VERSION_INFO=$MAJOR_VERSION_PLUS_MINOR_VERSION:$LINK_MICRO_VERSION:$LINK_MINOR_VERSION AC_SUBST(VERSION_INFO) AC_SUBST(LINK_MAJOR_VERSION) AC_SUBST(LINK_MINOR_VERSION) AC_SUBST(LINK_MICRO_VERSION) AM_INIT_AUTOMAKE($PACKAGE, $VERSION) AM_MAINTAINER_MODE AC_CONFIG_MACRO_DIR([m4]) dnl Checks for programs. AC_ISC_POSIX AC_PROG_CC AC_PROG_CXX AC_PROG_CPP AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET AC_STDC_HEADERS AC_LIBTOOL_WIN32_DLL AM_PROG_LIBTOOL AM_BINRELOC PKG_PROG_PKG_CONFIG AC_C_CONST AC_CHECK_FUNCS(towupper) dnl ==================================================================== AC_MSG_CHECKING([for native Win32]) case "$host" in *-*-mingw*) native_win32=yes ;; *) native_win32=no ;; esac AC_MSG_RESULT([$native_win32]) AM_CONDITIONAL(OS_WIN32, test "x$native_win32" = "xyes") dnl ==================================================================== AM_CONDITIONAL(WITH_BINRELOC, test "x$br_cv_binreloc" = "xyes") dnl ==================================================================== AC_ARG_ENABLE( debug, [ --enable-debug compile with debugging flags set], CFLAGS="${CFLAGS} -g" LDFLAGS="${LDFLAGS} -g" AC_DEFINE(DEBUG_MEMORY,1), AC_DEFINE(DEBUG_MEMORY,0) ) AC_ARG_ENABLE( profile, [ --enable-profile compile with profiling set], CFLAGS="${CFLAGS} -pg" LDFLAGS="${LDFLAGS} -pg") do_pth=no AC_ARG_ENABLE( pthreads, [ --enable-pthreads compile with pthread support], CPPFLAGS="${CPPFLAGS} -DUSE_PTHREADS=1" do_pth=yes) AM_CONDITIONAL(WITH_PTHREADS, test x${do_pth} = xyes) do_java=yes AC_ARG_ENABLE( java-bindings, [ --disable-java-bindings disable build of java bindings], do_java="no") buildSAT=no AC_ARG_ENABLE( sat-solver, [ --enable-sat-solver use the boolean SAT solver], CPPFLAGS="${CPPFLAGS} -DUSE_SAT_SOLVER=1" buildSAT=yes) AM_CONDITIONAL(WITH_SAT_SOLVER, test x${buildSAT} = xyes) buildcorpus=no AC_ARG_ENABLE( corpus-stats, [ --enable-corpus-stats use corpus statistics], CPPFLAGS="${CPPFLAGS} -DUSE_CORPUS=1" buildcorpus=yes) AM_CONDITIONAL(WITH_CORPUS, test x${buildcorpus} = xyes) dnl ==================================================================== # If not asking for the statistics backend, then don't even # check for SQLite. if test x${buildcorpus} = xyes; then AC_CHECK_HEADER([sqlite3.h], [CPPFLAGS="${CPPFLAGS} -DHAVE_SQLITE=1" SQLiteFound=yes], SQLiteFound=no) AM_CONDITIONAL(HAVE_SQLITE, test x${SQLiteFound} = xyes) # If there are sqlite3 and pkgconfig on MacOS, then # recommend that user install MacPorts http://www.macports.org/ if test "x${SQLiteFound}" = "xyes"; then PKG_CHECK_MODULES(SQLITE3, sqlite3 >= 3.0.0) AC_SUBST(SQLITE3_LIBS) AC_SUBST(SQLITE3_CFLAGS) fi else AM_CONDITIONAL(HAVE_SQLITE, false) fi dnl ==================================================================== AC_CHECK_HEADER([hunspell/hunspell.h], [CPPFLAGS="${CPPFLAGS} -DHAVE_HUNSPELL=1" HunSpellFound=yes], HunSpellFound=no) AM_CONDITIONAL(HAVE_HUNSPELL, test x${HunSpellFound} = xyes) if test "x${HunSpellFound}" = "xyes"; then PKG_CHECK_MODULES([HUNSPELL], [hunspell]) AC_SUBST(HUNSPELL_LIBS) AC_SUBST(HUNSPELL_CFLAGS) fi dnl ==================================================================== AC_DEFUN([GLIB_LC_MESSAGES], [AC_CHECK_HEADERS([locale.h]) if test $ac_cv_header_locale_h = yes; then AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi fi]) GLIB_LC_MESSAGES dnl ==================================================================== AC_CHECK_HEADER([editline/readline.h], [CPPFLAGS="${CPPFLAGS} -DHAVE_EDITLINE=1" edlin=yes], edlin=no) AM_CONDITIONAL(HAVE_EDITLINE, test x${edlin} = xyes) dnl ==================================================================== AC_CHECK_HEADER([regex.h],,[AC_MSG_ERROR([No regex.h header found])]) AC_CHECK_FUNCS(regexec,,[AC_CHECK_LIB(regex,regexec, [REGEX_LIBS=-lregex], [AC_MSG_ERROR([No regex library found])])]) AC_SUBST(REGEX_LIBS) dnl ==================================================================== dnl check compiler flags AC_DEFUN([LINK_CC_TRY_FLAG], [ AC_MSG_CHECKING([whether $CC supports $1]) link_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $1" AC_COMPILE_IFELSE([ ], [link_cc_flag=yes], [link_cc_flag=no]) CFLAGS="$link_save_CFLAGS" if test "x$link_cc_flag" = "xyes"; then ifelse([$2], , :, [$2]) else ifelse([$3], , :, [$3]) fi AC_MSG_RESULT([$link_cc_flag]) ]) dnl Use lots of warning flags with with gcc and compatible compilers dnl Note: if you change the following variable, the cache is automatically dnl skipped and all flags rechecked. So there's no need to do anything dnl else. If for any reason you need to force a recheck, just change dnl MAYBE_WARN in an ignorable way (like adding whitespace) MAYBE_WARN="-Wall -Wextra \ -Wsign-compare -Werror-implicit-function-declaration \ -Wpointer-arith -Wwrite-strings -Wstrict-prototypes \ -Wmissing-prototypes -Wmissing-declarations -Wnested-externs \ -Wpacked -Wswitch-enum -Wmissing-format-attribute \ -Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations \ -Wdeclaration-after-statement -Wold-style-definition \ -Wno-missing-field-initializers -Wno-unused-parameter \ -Wno-attributes -Wno-long-long -Winline" # invalidate cached value if MAYBE_WARN has changed if test "x$link_cv_warn_maybe" != "x$MAYBE_WARN"; then unset link_cv_warn_cflags fi AC_CACHE_CHECK([for supported warning flags], link_cv_warn_cflags, [ echo WARN_CFLAGS="" # Some warning options are not supported by all versions of # gcc, so test all desired options against the current # compiler. # # Note that there are some order dependencies # here. Specifically, an option that disables a warning will # have no net effect if a later option then enables that # warnings, (perhaps implicitly). So we put some grouped # options (-Wall and -Wextra) up front and the -Wno options # last. for W in $MAYBE_WARN; do LINK_CC_TRY_FLAG([$W], [WARN_CFLAGS="$WARN_CFLAGS $W"]) done link_cv_warn_cflags=$WARN_CFLAGS link_cv_warn_maybe=$MAYBE_WARN AC_MSG_CHECKING([which warning flags were supported])]) WARN_CFLAGS="$link_cv_warn_cflags" LINK_CFLAGS="$LINK_CFLAGS $WARN_CFLAGS" dnl Per email, -fnested-functions is needed on Macintosh OS/X LINK_CC_TRY_FLAG([-fnested-functions], [LINK_CFLAGS="$LINK_CFLAGS -fnested-functions"]) LINK_CC_TRY_FLAG([-fno-strict-aliasing], [LINK_CFLAGS="$LINK_CFLAGS -fno-strict-aliasing"]) AC_SUBST(LINK_CFLAGS) dnl ===================================================================== dnl Try to guess location of the jni.h file. dnl Might be useful to look at env variables $JDK_HOME and $JAVA_HOME for these. dnl JNIfound=no if test "x$do_java" == "xyes"; then JNI_GUESS=" \ -I $JAVA_HOME/include \ -I $JAVA_HOME/include/linux \ -I $JAVA_HOME/Headers \ -I $JDK_HOME/include \ -I $JDK_HOME/include/linux \ -I $JDK_HOME/Headers \ -I/usr/include/classpath/ \ -I/opt/jdk1.5/include/ \ -I/opt/jdk1.5/include/linux \ -I/usr/lib/jvm/java-1.5.0-sun-1.5.0.15/include \ -I/usr/lib/jvm/java-1.5.0-sun-1.5.0.15/include/linux \ -I/usr/lib/jvm/java-6-sun/include/ \ -I/usr/lib/jvm/java-6-sun/include/linux \ -I/c/java/jdk1.6.0/include/ \ -I/c/java/jdk1.6.0/include/win32/ \ -I/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/JavaVM.framework/Headers/ \ -I/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/JavaVM.framework/Headers/ " AC_MSG_CHECKING(for jni.h) AC_TRY_CPP( [#include ], [AC_MSG_RESULT([yes, will build java libs]) JNIfound=yes], [ SAVE_CPPFLAGS=${CPPFLAGS} CPPFLAGS="${CPPFLAGS} ${JNI_GUESS}" AC_MSG_WARN([Can't find jni.h header in standard locations, trying again with ${CPPFLAGS}]) AC_TRY_CPP( [#include ], [AC_MSG_RESULT([yes, will build java libs]) JNIfound=yes], [ AC_MSG_WARN([cannot find jni.h header, needed for Java bindings support.]) CPPFLAGS=${SAVE_CPPFLAGS} JNIfound=no]) ]) AC_SUBST(CPPFLAGS) # Hmm .. there seems to be a missing pkgconfig for ordinary java ... # There's libgcj-4.2.pc and libgcj8.pc but nothing for ordinary java?? # PKG_CHECK_MODULES(LIBJDK, libjdk-1.5 >= $LIBJDK_REQUIRED) # AC_SUBST(LIBJDK_CFLAGS) # AC_SUBST(LIBJDK_LIBS) # For now, we assume that if the jni files are there, then the javac # ant, and jar compilers/builders are install as well. This is used # to build the jar file and install it. AM_CONDITIONAL(HAVE_JAVA, test x${JNIfound} = xyes) else AM_CONDITIONAL(HAVE_JAVA, false) fi dnl =================================================================== AC_OUTPUT([ Makefile build.xml link-grammar.pc link-grammar.spec link-grammar/Makefile link-grammar/corpus/Makefile link-grammar/minisat/Makefile link-grammar/sat-solver/Makefile link-grammar/link-features.h data/Makefile data/de/Makefile data/en/Makefile data/en/words/Makefile data/lt/Makefile man/Makefile autopackage/default.apspec link-grammar.xcode/Makefile msvc6/Makefile msvc6/link_grammar_dll/Makefile msvc6/link_grammar_exe/Makefile msvc6/link_grammar_java_dll/Makefile msvc9/Makefile ]) dnl ==================================================================== echo " $PACKAGE-$VERSION prefix: ${prefix} compiler: ${CC} ${CPPFLAGS} ${CFLAGS} autopackage: ${br_cv_binreloc} Posix threads: ${do_pth} Editline command-line history: ${edlin} Java interfaces: ${JNIfound} HunSpell spell checker: ${HunSpellFound} Boolean SAT solver: ${buildSAT} Corpus statistics database: ${buildcorpus} "