dnl -*- Mode: autoconf -*- dnl dnl configure.ac - autoconf file for rasqal dnl (Process this file with autoconf to produce a configure script.) dnl dnl Copyright (C) 2003-2007, David Beckett http://purl.org/net/dajobe/ dnl Copyright (C) 2003-2005, University of Bristol, UK http://www.bristol.ac.uk/ dnl dnl This package is Free Software and part of Redland http://librdf.org/ dnl dnl It is licensed under the following three licenses as alternatives: dnl 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version dnl 2. GNU General Public License (GPL) V2 or any newer version dnl 3. Apache License, V2.0 or any newer version dnl dnl You may not use this file except in compliance with at least one of dnl the above three licenses. dnl dnl See LICENSE.html or LICENSE.txt at the top of this package for the dnl complete terms and further detail along with the license texts for dnl the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively. dnl AC_INIT(Rasqal RDF Query Library, 0.9.16, http://bugs.librdf.org/, rasqal) AC_PREREQ(2.50) AC_CONFIG_SRCDIR(src/rasqal_general.c) AC_REVISION($Revision: 1.2 $) AM_INIT_AUTOMAKE([1.7 check-news std-options -Wall]) AM_CONFIG_HEADER(src/rasqal_config.h) AM_MAINTAINER_MODE release_version=no AC_ARG_ENABLE(release, [ --enable-release Turn on optimizations (for maintainer). ], \ if test "$enableval" = "yes"; then \ release_version=yes fi;) if test "$USE_MAINTAINER_MODE" = yes -a $release_version = no; then CFLAGS=`echo $CFLAGS | sed -e "s/-O[A-Za-z0-9]*//"` CXXFLAGS=`echo $CXXFLAGS | sed -e "s/-O[A-Za-z0-9]*//"` CPPFLAGS=`echo $CPPFLAGS | sed -e "s/-O[A-Za-z0-9]*//"` fi dnl Checks for programs. AC_CANONICAL_HOST AM_SANITY_CHECK AC_PROG_CC AM_PROG_CC_C_O m4_undefine([AC_PROG_CXX]) m4_defun([AC_PROG_CXX],[]) m4_undefine([AC_PROG_F77]) m4_defun([AC_PROG_F77],[]) AC_PROG_LIBTOOL AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET AM_PROG_LEX if test $LEX != : ; then if echo "$LEX" | grep flex >/dev/null 2>&1; then : else LEX="$SHELL $missing_dir/missing flex" AC_SUBST(LEX_OUTPUT_ROOT, lex.yy) AC_SUBST(LEXLIB, '') fi fi FLEX_MIN_VERSION=2.5.19 FLEX_REC_VERSION=2.5.33 if test "$USE_MAINTAINER_MODE" = yes; then AC_MSG_CHECKING(flex version) if test "X$LEX" != "X:"; then FLEX_VERSION=`$LEX -V 2>&1 | awk '{print $NF}'` FLEX_VERSION_DEC=`echo $FLEX_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` FLEX_MIN_VERSION_DEC=`echo $FLEX_MIN_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` if test $FLEX_VERSION_DEC -ge $FLEX_MIN_VERSION_DEC; then AC_MSG_RESULT($FLEX_VERSION - OK) else AC_MSG_RESULT(version $FLEX_VERSION - too old) AC_MSG_WARN(Please get flex from http://flex.sourceforge.net/) AC_MSG_WARN(version $FLEX_MIN_VERSION ($FLEX_REC_VERSION recommended)) AC_MSG_FAILURE(flex too old) fi else AC_MSG_RESULT(not present) AC_MSG_WARN(Please get flex from http://flex.sourceforge.net/) AC_MSG_WARN(version $FLEX_MIN_VERSION ($FLEX_REC_VERSION recommended)) AC_MSG_FAILURE(flex not present) fi fi AC_PROG_YACC if test "$USE_MAINTAINER_MODE" = yes; then AC_MSG_CHECKING(for GNU bison) # Match these styles of versions # GNU Bison version 1.28 # bison (GNU Bison) 1.875 dnl need to change quotes to allow square brackets changequote(<<, >>)dnl YACC_VERSION=`$YACC --version 2>&1 | sed -ne 's/^.*GNU Bison[^0-9]*//p'` changequote([, ])dnl if test "X$YACC_VERSION" != X; then AC_MSG_RESULT($YACC_VERSION - OK) else AC_MSG_FAILURE($YACC is not GNU bison) fi fi # Find a tar command for 'make dist' AC_CHECK_PROGS(TAR, gnutar gtar tar) AC_CHECK_PROGS(PERL, perl) AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir) AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir) AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) dnl compiler checks AC_DEFUN([REDLAND_CC_TRY_FLAG], [ AC_MSG_CHECKING([whether $CC supports $1]) redland_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $1" AC_COMPILE_IFELSE([ ], [redland_cc_flag=yes], [redland_cc_flag=no]) CFLAGS="$redland_save_CFLAGS" if test "X$redland_cc_flag" = "Xyes"; then ifelse([$2], , :, [$2]) else ifelse([$3], , :, [$3]) fi AC_MSG_RESULT($redland_cc_flag) ]) possible_warnings="-Wall -Wextra \ -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -Wredundant-decls -Wswitch-enum \ -Wsign-compare -Werror-implicit-function-declaration -Wwrite-strings -Wpacked -Wmissing-format-attribute -Wpointer-arith -Wcast-align -Winit-self \ -Wunsafe-loop-optimizations -Wdeclaration-after-statement \ -Wold-style-definition \ -Wno-missing-field-initializers -Wno-unused-parameter \ -Wformat-security" warning_cflags= if test "$USE_MAINTAINER_MODE" = yes; then AC_MSG_CHECKING(for supported $CC warning flags) AC_MSG_RESULT($warning_cflags) for warning in $possible_warnings; do REDLAND_CC_TRY_FLAG([$warning], [warning_cflags="$warning_cflags $warning"]) done AC_MSG_CHECKING($CC supports warning flags) AC_MSG_RESULT($warning_cflags) fi STANDARD_CFLAGS= MAINTAINER_CFLAGS="$warning_cflags" # Externally linked libraries - appear in rasqal-config # -Dfoo -Idir RASQAL_CPPFLAGS=$CPPFLAGS # -Ldir RASQAL_LDFLAGS=$LDFLAGS # -llib RASQAL_LIBS=$LIBS # Internally linked libraries - never given to users # -Dfoo -Idir RASQAL_INTERNAL_CPPFLAGS= # -Ldir -llib RASQAL_INTERNAL_LIBS= # Libraries linked externally also may be internal - just raptor # -Ldir -llib RASQAL_EXTERNAL_LIBS= # Extra pkgconfig requires PKGCONFIG_REQUIRES= PKGCONFIG_LIBS= PKGCONFIG_CFLAGS= dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(errno.h stdlib.h unistd.h string.h dmalloc.h getopt.h regex.h sys/time.h) AC_HEADER_TIME dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_BIGENDIAN dnl need to change quotes to allow square brackets changequote(<<, >>)dnl version_major=`echo $VERSION | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\1/'` version_minor=`echo $VERSION | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\2/'` version_release=`echo $VERSION | sed -e 's/^\([^\.]*\)\.\([^\.]*\)\.\(.*\)$/\3/'` changequote([, ])dnl version_decimal=`expr $version_major \* 10000 + $version_minor \* 100 + $version_release` AC_DEFINE_UNQUOTED(RASQAL_VERSION_MAJOR, $version_major, [Major version number]) AC_DEFINE_UNQUOTED(RASQAL_VERSION_MINOR, $version_minor, [Minor version number]) AC_DEFINE_UNQUOTED(RASQAL_VERSION_RELEASE, $version_release, [Release version number]) AC_DEFINE_UNQUOTED(RASQAL_VERSION_DECIMAL, $version_decimal, [Release version as a decimal]) # for rasqal-config.in RASQAL_VERSION_DECIMAL=$version_decimal AC_SUBST(RASQAL_VERSION_DECIMAL) # Libtool versioning # # CURRENT # The most recent interface number that this library implements. # # REVISION # The implementation number of the CURRENT interface. # # AGE # The difference between the newest and oldest interfaces that this # library implements. In other words, the library implements all the # interface numbers in the range from number `CURRENT - AGE' to # `CURRENT'. # # Rules: # 1. Start with version information of `0:0:0' for each libtool library. # # 2. Update the version information only immediately before a public # release of your software. More frequent updates are unnecessary, # and only guarantee that the current interface number gets larger # faster. # # 3. If the library source code has changed at all since the last # update, then increment REVISION (`C:R:A' becomes `C:r+1:A'). # # 4. If any interfaces have been added, removed, or changed since the # last update, increment CURRENT, and set REVISION to 0. # # 5. If any interfaces have been added since the last public release, # then increment AGE. # # 6. If any interfaces have been removed since the last public release, # then set AGE to 0. # # syntax: CURRENT[:REVISION[:AGE]] RASQAL_LIBTOOL_VERSION=1:0:0 AC_SUBST(RASQAL_LIBTOOL_VERSION) dnl Checks for library functions. AC_CHECK_FUNCS(getopt getopt_long stricmp strcasecmp vsnprintf srandomdev) AM_CONDITIONAL(STRCASECMP, test $ac_cv_func_stricmp = no -a $ac_cv_func_strcasecmp = no) AM_CONDITIONAL(GETOPT, test $ac_cv_func_getopt = no -a $ac_cv_func_getopt_long = no) AC_MSG_CHECKING(whether need to declare optind) AC_TRY_LINK([#ifdef HAVE_GETOPT_H #include #endif #ifdef HAVE_UNISTD_H #include #endif ], [int x=optind;], AC_MSG_RESULT(no), AC_DEFINE(NEED_OPTIND_DECLARATION, 1, [need 'extern int optind' declaration?]) AC_MSG_RESULT(yes)) # raptor is REQUIRED despite the checking here AC_CHECK_PROG(RAPTOR_CONFIG, raptor-config, raptor-config) AC_ARG_WITH(raptor, [ --with-raptor=SOURCE Pick raptor source - system/internal (default internal)], with_raptor="$withval", with_raptor="internal") RAPTOR_MIN_VERSION=1.4.17 AC_SUBST(RAPTOR_MIN_VERSION) if test "X$RAPTOR_CONFIG" = X; then with_raptor=internal else RAPTOR_VERSION=`$RAPTOR_CONFIG --version 2>/dev/null` RAPTOR_VERSION_DEC=`$RAPTOR_CONFIG --version-decimal 2>/dev/null` RAPTOR_MIN_VERSION_DEC=`echo $RAPTOR_MIN_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` if test "X$with_raptor" = Xauto; then if test "X$RAPTOR_VERSION" -a $RAPTOR_VERSION_DEC -ge $RAPTOR_MIN_VERSION_DEC; then with_raptor=system else AC_MSG_WARN(System raptor $RAPTOR_VERSION is too old - need $RAPTOR_MIN_VERSION) with_raptor=internal fi elif test $with_raptor = system; then if test $RAPTOR_VERSION_DEC -lt $RAPTOR_MIN_VERSION_DEC; then AC_MSG_WARN(System raptor $RAPTOR_VERSION is too old - need $RAPTOR_MIN_VERSION) AC_MSG_WARN(Proceeding anyway since --with-raptor=system was given) AC_MSG_WARN(To use the internal raptor use --with-raptor=internal) AC_MSG_WARN(or omit any --with-raptor argument.) fi fi fi AC_SUBST(with_raptor) AC_MSG_CHECKING(raptor library source) if test $with_raptor = system; then AC_MSG_RESULT(system $RAPTOR_VERSION) else RAPTOR_VERSION=internal AC_MSG_RESULT(internal) if test ! -r $srcdir/../raptor/src/raptor_general.c; then AC_MSG_ERROR(Raptor sources missing from $srcdir/../raptor directory - cannot use internal) fi fi AC_CHECK_PROG(REDLAND_CONFIG, redland-config, redland-config) AC_ARG_WITH(redland-config, [ --with-redland-config=PATH Location of redland redland-config ()], redland_config="$withval", redland_config="") if test "X$redland_config" != "X" ; then AC_MSG_CHECKING(for $redland_config) if test -f $redland_config ; then REDLAND_CONFIG=$redland_config AC_MSG_RESULT(yes) else AC_MSG_RESULT(no - searching PATH) fi fi with_redland=auto AC_ARG_WITH(redland, [ --with-redland=SOURCE Pick redland source - system/internal (default auto)], with_redland="$withval", with_redland="auto") REDLAND_MIN_VERSION=0.9.6 AC_SUBST(REDLAND_MIN_VERSION) if test "X$with_redland" = Xauto; then if test "X$REDLAND_CONFIG" != X; then with_redland=system elif test -r $srcdir/../redland/redland-src-config; then REDLAND_CONFIG=$srcdir/../redland/redland-src-config with_redland=internal fi elif test "X$with_redland" = Xinternal; then if test -r $srcdir/../redland/redland-src-config; then REDLAND_CONFIG=$srcdir/../redland/redland-src-config with_redland=internal else AC_MSG_WARN(No internal redland found in $srcdir/../redland) with_redland=system fi fi have_redland=0 if test "X$REDLAND_CONFIG" != X; then REDLAND_VERSION=`$REDLAND_CONFIG --version 2>/dev/null` REDLAND_VERSION_DEC=`$REDLAND_CONFIG --version-decimal 2>/dev/null` REDLAND_MIN_VERSION_DEC=`echo $REDLAND_MIN_VERSION | $AWK -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` if test "X$REDLAND_VERSION" -a $REDLAND_VERSION_DEC -ge $REDLAND_MIN_VERSION_DEC; then with_redland=system else AC_MSG_WARN(System redland $REDLAND_VERSION is too old - need $REDLAND_MIN_VERSION) fi have_redland=1 fi AC_SUBST(with_redland) AC_MSG_CHECKING(redland library source) if test $with_redland = system; then AC_MSG_RESULT(system $REDLAND_VERSION) elif test $with_redland = internal; then REDLAND_VERSION=internal AC_MSG_RESULT(internal) else AC_MSG_RESULT(none) fi dnl Checks for regex libraries have_regex_pcre=0 have_regex_posix=0 need_regex_pcre=0 need_regex_posix=0 AC_ARG_ENABLE(pcre, [ --disable-pcre Disable PCRE support (default auto)], [enable_pcre=$enableval], [enable_pcre="auto"]) if test "x$enable_pcre" != "xno" ; then AC_CHECK_PROG(PCRE_CONFIG, pcre-config, pcre-config) AC_ARG_WITH(pcre, [ --with-pcre-config=PATH Location of PCRE pcre-config (auto)], pcre_config="$withval", pcre_config="") if test "X$pcre_config" != "X" ; then AC_MSG_CHECKING(for $pcre_config) if test -f $pcre_config ; then PCRE_CONFIG=$pcre_config AC_MSG_RESULT(yes) else AC_MSG_RESULT(no - searching PATH) fi fi if test "X$PCRE_CONFIG" = "X"; then AC_CHECK_PROGS(PCRE_CONFIG, pcre-config) fi AC_MSG_CHECKING(for pcre) PCRE_VERSION=`$PCRE_CONFIG --version 2>/dev/null` PCRE_MIN_VERSION=3.9 PCRE_VERSION_DEC=`echo $PCRE_VERSION | $AWK -F. '{printf("%d\n", 100*$1 + $2)};'` PCRE_MIN_VERSION_DEC=`echo $PCRE_MIN_VERSION | $AWK -F. '{printf("%d\n", 100*$1 + $2)};'` if test "X$PCRE_VERSION" = X; then AC_MSG_RESULT(not present) elif test "X$PCRE_VERSION" -a $PCRE_VERSION_DEC -ge $PCRE_MIN_VERSION_DEC; then have_regex_pcre=1 AC_MSG_RESULT($PCRE_VERSION) else AC_MSG_WARN($PCRE_VERSION - too old - need $PCRE_MIN_VERSION) fi if test $have_regex_pcre = 1; then AC_DEFINE(HAVE_REGEX_PCRE, 1, [have PCRE regex - Perl Compatible Regular Expressions]) elif test "x$enable_pcre" = "xyes"; then AC_MSG_ERROR(PCRE requested but not found) fi fi AC_MSG_CHECKING(for posix regex library) oLIBS="$LIBS" if test $ac_cv_header_regex_h = yes; then AC_TRY_LINK([#include #include ], [regex_t reg; char *pat="abc"; regcomp(®, pat, 0);], worked=yes, worked=no, worked=no) if test $worked = yes; then have_regex_posix=1 fi fi LIBS="$oLIBS" if test $have_regex_posix = 1; then AC_MSG_RESULT(yes) AC_DEFINE(HAVE_REGEX_PCRE, 1, [have PCRE regex - Perl Compatible Regular Expressions]) else AC_MSG_RESULT(no) fi AC_ARG_WITH(regex-library, [ --with-regex-library=NAME Use regex library - posix, pcre (auto)], regex_library="$withval", regex_library="") for regex_library_name in $regex_library posix pcre; do case $regex_library_name in pcre) if test $have_regex_pcre = 1; then need_regex_pcre=1 AC_DEFINE(RASQAL_REGEX_PCRE, 1, [Use PCRE regex library]) break fi ;; posix) if test $have_regex_posix = 1; then need_regex_posix=1 AC_DEFINE(RASQAL_REGEX_POSIX, 1, [Use posix regex library]) break fi ;; *) AC_MSG_ERROR(No such regex library $regex_library_name) ;; esac done AC_MSG_CHECKING(regex library to use) result= if test $need_regex_pcre = 1; then result=pcre elif test $need_regex_posix = 1; then result=posix else result=none AC_DEFINE(RASQAL_REGEX_NONE, 1, [Use no regex library]) AC_MSG_WARN(No regex library available - please install pcre or a POSIX regex library) fi AC_MSG_RESULT($result) have_libxml=0 need_libxml=0 AC_ARG_ENABLE(xml2, [ --disable-xml2 Disable XML2 support (default auto)], [enable_xml2=$enableval], [enable_xml2="auto"]) if test "x$enable_xml2" != "xno" ; then AC_ARG_WITH(xml2-config, [ --with-xml2-config=PATH Location of libxml xml2-config ()], xml2_config="$withval", xml2_config="") if test "X$xml2_config" != "X" ; then AC_MSG_CHECKING(for $xml2_config) if test -f $xml2_config ; then XML_CONFIG=$xml2_config AC_MSG_RESULT(yes) else AC_MSG_RESULT(no - searching PATH) fi fi if test "X$XML_CONFIG" = "X"; then AC_CHECK_PROGS(XML_CONFIG, xml2-config) fi LIBXML_MIN_VERSION=2.6.8 AC_MSG_CHECKING(for libxml2 library) oCPPFLAGS="$CPPFLAGS" oLIBS="$LIBS" if test "X$XML_CONFIG" != X; then LIBS="$LIBS `$XML_CONFIG --libs`" CPPFLAGS="`$XML_CONFIG --cflags` $CPPFLAGS" LIBXML_VERSION=`$XML_CONFIG --version` libxml_version_dec=`echo $LIBXML_VERSION | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` LIBXML_MIN_VERSION_dec=`echo $LIBXML_MIN_VERSION | awk -F. '{printf("%d\n", 10000*$1 + 100*$2 + $3)};'` AC_MSG_RESULT(yes - version $LIBXML_VERSION) if test $libxml_version_dec -lt $LIBXML_MIN_VERSION_dec; then AC_MSG_WARN(Using libxml $LIBXML_VERSION is unsupported - $LIBXML_MIN_VERSION or newer required.) else AC_CHECK_HEADERS(libxml/xmlschemas.h libxml/xmlschemastypes.h libxml/schemasInternals.h) if test "$ac_cv_header_libxml_xmlschemas_h" = no; then AC_MSG_WARN(libxml library found but not xml schema headers - disabling) else have_libxml=1 fi fi else AC_MSG_RESULT(no) fi CPPFLAGS="$oCPPFLAGS" LIBS="$oLIBS" if test $have_libxml = 0 && test "x$enable_xml2" = "xyes" ; then AC_MSG_ERROR(libxml2 requested but not found) fi fi dnl checks for triples source libraries need_redland=0 AC_ARG_WITH(triples-source, [ --with-triples-source=NAME Use NAME to provide triples - raptor (default), redland], triples_source="$withval", triples_source="raptor") for triples_source_name in $triples_source raptor redland; do case $triples_source_name in raptor) AC_DEFINE([RAPTOR_TRIPLES_SOURCE_RAPTOR], 1, [Use raptor to provide triples]) break ;; redland) if test $have_redland = 1; then need_redland=1 AC_DEFINE([RAPTOR_TRIPLES_SOURCE_REDLAND], 1, [Use redland to provide triples]) break fi ;; *) AC_MSG_ERROR(No known triples source $triples_source_name) ;; esac done AC_MSG_CHECKING(triples source libraries available) triples_source_libraries_available="raptor $RAPTOR_VERSION" if test $have_redland = 1; then triples_source_libraries_available="$triples_source_libraries_available redland $REDLAND_VERSION" fi AC_MSG_RESULT($triples_source_libraries_available) AC_MSG_CHECKING(triples source library to use) triples_source_library= if test $need_redland = 1; then triples_source_library="redland $REDLAND_VERSION" else triples_source_library="raptor $RAPTOR_VERSION" fi AC_MSG_RESULT($triples_source_library) dnl RDF Query Languages rdql_query_language=no sparql_query_language=no laqrs_query_language=no rdf_query_languages_available="rdql sparql" if test "$USE_MAINTAINER_MODE" = yes; then rdf_query_languages_available="$rdf_query_languages_available laqrs" fi rdf_query_languages_enabled= # This is needed because autoheader can't work out which computed # symbols must be pulled from acconfig.h into config.h.in if test "x" = "y"; then AC_DEFINE(RASQAL_QUERY_RDQL, 1, [Building RDQL query]) AC_DEFINE(RASQAL_QUERY_LAQRS, 1, [Building LAQRS query]) AC_DEFINE(RASQAL_QUERY_SPARQL, 1, [Building SPARQL query]) fi AC_MSG_CHECKING(query languages required) AC_ARG_ENABLE(query-languages, [ --enable-query-languages=LIST Enable query languages (default=all)], query_languages="$enableval", query_languages="sparql") if test "X$query_languages" = Xall -o "X$query_languages" = X; then query_languages="$rdf_query_languages_available" AC_MSG_RESULT(all) else AC_MSG_RESULT($query_languages) fi for query_language in $query_languages; do p=$query_language eval $p'_query_language=yes' NAME=`echo $p | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` n=RASQAL_QUERY_${NAME} AC_DEFINE_UNQUOTED($n) rdf_query_languages_enabled="$rdf_query_languages_enabled $query_language" done AM_CONDITIONAL(RASQAL_QUERY_RDQL, test $rdql_query_language = yes) AM_CONDITIONAL(RASQAL_QUERY_LAQRS, test $laqrs_query_language = yes) AM_CONDITIONAL(RASQAL_QUERY_SPARQL, test $sparql_query_language = yes) if test $with_raptor = internal; then RASQAL_INTERNAL_CPPFLAGS="$RASQAL_INTERNAL_CPPFLAGS -I\$(top_srcdir)/../raptor/src" RASQAL_INTERNAL_LIBS="$RASQAL_INTERNAL_LIBS \$(top_builddir)/../raptor/src/libraptor.la" RAPPER_PATH=":\$(top_srcdir)/../raptor/utils" else RASQAL_INTERNAL_CPPFLAGS="$RASQAL_INTERNAL_CPPFLAGS `$RAPTOR_CONFIG --cflags`" RASQAL_EXTERNAL_LIBS="$RASQAL_EXTERNAL_LIBS `$RAPTOR_CONFIG --libs`" RAPPER_PATH="" fi if test $need_regex_pcre = 1; then C=`$PCRE_CONFIG --cflags` L=`$PCRE_CONFIG --libs` RASQAL_INTERNAL_CPPFLAGS="$RASQAL_INTERNAL_CPPFLAGS $C" RASQAL_EXTERNAL_LIBS="$RASQAL_EXTERNAL_LIBS $L" PKGCONFIG_CFLAGS="$PKGCONFIG_CFLAGS $C" PKGCONFIG_LIBS="$PKGCONFIG_LIBS $L" unset C unset L fi mpfr_lib_dir= mpfr_include_dir= AC_ARG_WITH(mpfr, [ --with-mpfr=DIR MPFR install area], mpfr_prefix="$withval", mpfr_prefix="none") if test "X$mpfr_prefix" != "Xnone" ; then mpfr_libs="-L$mpfr_prefix/lib" mpfr_includes="-I$mpfr_prefix/include" fi oCPPFLAGS="$CPPFLAGS" AC_CHECK_HEADERS(gmp.h) CPPFLAGS="$oCPPFLAGS" CPPFLAGS="$CPPFLAGS $mpfr_includes" AC_CHECK_HEADERS([mpfr.h], [], [], [ #ifdef HAVE_GMP_H #include #endif ]) CPPFLAGS="$oCPPFLAGS" have_mpfr=0 have_gmp=0 oCPPFLAGS="$CPPFLAGS" oLIBS="$LIBS" if test "$ac_cv_header_mpfr_h" = yes; then CPPFLAGS="$CPPFLAGS $mpfr_includes" LIBS="$LIBS $mpfr_libs -lmpfr" AC_CHECK_FUNC(mpfr_init, have_mpfr_init=yes, have_mpfr_init=no) # Several functions are used that are not in GMP version of MPFR: # mpfr_get_default_rounding_mode mpfr_zero_p mpfr_equal_p mpfr_free_str # All added in MPFR 2.1.0 released 3 Nov 2004 # http://www.mpfr.org/mpfr-2.1.0/ # so just test for one. AC_CHECK_FUNC(mpfr_zero_p, have_mpfr_zero_p=yes, have_mpfr_zero_p=no) LIBS="$oLIBS" CPPFLAGS="$oCPPFLAGS" AC_MSG_CHECKING(for working MPFR library) if test $have_mpfr_init = yes -a $have_mpfr_zero_p = yes; then have_mpfr=1 AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) fi fi have_gmp_version=0 if test "$ac_cv_header_gmp_h" = yes; then CPPFLAGS="$CPPFLAGS " LIBS="$LIBS -lgmp" AC_MSG_CHECKING(for working GNU MP library) AC_TRY_LINK([#include ], [mpz_t n; mpz_init(n);], have_gmp=1 AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) AC_MSG_CHECKING(for gmp_version) AC_TRY_LINK([#include ], [const char* v=gmp_version; ], have_gmp_version=1 AC_MSG_RESULT(yes), AC_MSG_RESULT(no)) LIBS="$oLIBS" CPPFLAGS="$oCPPFLAGS" fi if test $have_gmp_version = 1; then AC_DEFINE(HAVE_GMP_VERSION, 1, [Have gmp_version constant]) fi need_mpfr=0 need_gmp=0 AC_ARG_WITH(decimal, [ --with-decimal=NAME Use decimal library - mpfr, gmp, none (default)], decimal="$withval", decimal="none") for decimal_name in $decimal mpfr gmp none; do case $decimal_name in mpfr) if test $have_mpfr = 1; then need_mpfr=1 AC_DEFINE([RASQAL_DECIMAL_MPFR], 1, [Decimal from MPFR library]) break fi ;; gmp) if test $have_gmp = 1; then need_gmp=1 AC_DEFINE([RASQAL_DECIMAL_GMP], 1, [Decimal from GNU MP library]) break fi ;; none) need_mpfr=0 need_gmp=0 AC_DEFINE([RASQAL_DECIMAL_NONE], 1, [Decimal without a library]) break ;; *) AC_MSG_ERROR(No such decimal library $decimal_name) ;; esac done AC_MSG_CHECKING(decimal libraries available) decimal_libraries_available= if test $have_mpfr = 1; then decimal_libraries_available="$decimal_libraries_available mpfr" fi if test $have_gmp = 1; then decimal_libraries_available="$decimal_libraries_available gmp" fi AC_MSG_RESULT($decimal_libraries_available) AC_MSG_CHECKING(decimal library to use) decimal_library= if test $need_mpfr = 1; then decimal_library="mpfr $MPFR_VERSION" elif test $need_gmp = 1; then decimal_library="gmp $GMP_VERSION" else decimal_library=none fi AC_MSG_RESULT($decimal_library) DECIMAL_INCLUDES= DECIMAL_LIBS= if test $need_mpfr = 1; then DECIMAL_INCLUDES="$mpfr_includes" DECIMAL_LIBS="$mpfr_libs -lmpfr" fi if test $need_gmp = 1; then DECIMAL_LIBS="-lgmp" fi RASQAL_INTERNAL_CPPFLAGS="$RASQAL_INTERNAL_CPPFLAGS $DECIMAL_INCLUDES" RASQAL_EXTERNAL_LIBS="$RASQAL_EXTERNAL_LIBS $DECIMAL_LIBS" if test $need_redland = 1; then AC_LIBOBJ([rasqal_redland]) if test $with_redland = internal; then RASQAL_INTERNAL_CPPFLAGS="$RASQAL_INTERNAL_CPPFLAGS `$REDLAND_CONFIG --cflags`" RASQAL_INTERNAL_LIBS="$RASQAL_INTERNAL_LIBS `$REDLAND_CONFIG --libtool-libs`" else RASQAL_INTERNAL_CPPFLAGS="$RASQAL_INTERNAL_CPPFLAGS `$REDLAND_CONFIG --cflags`" RASQAL_EXTERNAL_LIBS="$RASQAL_EXTERNAL_LIBS `$REDLAND_CONFIG --libs`" PKGCONFIG_REQUIRES="$PKGCONFIG_REQUIRES, redland >= $REDLAND_MIN_VERSION" fi fi if test $need_libxml = 1; then RASQAL_INTERNAL_CPPFLAGS="$RASQAL_INTERNAL_CPPFLAGS `$XML_CONFIG --cflags`" RASQAL_EXTERNAL_LIBS="$RASQAL_EXTERNAL_LIBS `$XML_CONFIG --libs`" if test "X$PKGCONFIG_REQUIRES" != X; then PKGCONFIG_REQUIRES="$PKGCONFIG_REQUIRES," fi PKGCONFIG_REQUIRES="$PKGCONFIG_REQUIRES libxml-2.0 >= $LIBXML_MIN_VERSION" fi # Make final changes to cflags MEM= MEM_LIBS= CPPFLAGS="-DRASQAL_INTERNAL=1 $CPPFLAGS" AC_ARG_WITH(dmalloc, [ --with-dmalloc Use dmalloc debugging library (default=no)], use_dmalloc="$withval", use_dmalloc="no") AC_MSG_CHECKING(using dmalloc library) if test "$USE_MAINTAINER_MODE" = yes; then if test "$ac_cv_header_dmalloc_h" = yes; then if test "X$use_dmalloc" = Xauto; then use_dmalloc=yes fi else use_dmalloc=no fi else use_dmalloc=no fi AC_MSG_RESULT($use_dmalloc); if test $use_dmalloc = yes; then MEM=-DRASQAL_MEMORY_DEBUG_DMALLOC=1 MEM_LIBS=-ldmalloc fi if test "$USE_MAINTAINER_MODE" = yes; then CPPFLAGS="-g -DRASQAL_DEBUG=1 $CPPFLAGS" fi AC_ARG_WITH(memory-signing, [ --with-memory-signing Sign allocated memory (default=no)], use_memory_signing="$withval", use_memory_signing="no") AC_MSG_CHECKING(using memory signing) AC_MSG_RESULT($use_memory_signing); if test $use_memory_signing = yes; then MEM=-DRASQAL_MEMORY_SIGN=1 MEM_LIBS= fi STANDARD_CFLAGS="$STANDARD_CFLAGS $CFLAGS" if test "$USE_MAINTAINER_MODE" = yes; then CFLAGS="$MAINTAINER_CFLAGS $CFLAGS" fi AC_SUBST(RASQAL_EXTERNAL_LIBS) AC_SUBST(RASQAL_INTERNAL_CPPFLAGS) AC_SUBST(RASQAL_INTERNAL_LIBS) AC_SUBST(RAPPER_PATH) AC_SUBST(MEM) AC_SUBST(MEM_LIBS) AC_SUBST(STANDARD_CFLAGS) ECHO_N="$ECHO_N" ECHO_C="$ECHO_C" AC_SUBST(ECHO_N) AC_SUBST(ECHO_C) RASQAL_LIBTOOLLIBS=librasqal.la AC_SUBST(RASQAL_LIBTOOLLIBS) AC_SUBST(PKGCONFIG_REQUIRES) AC_SUBST(PKGCONFIG_LIBS) AC_SUBST(PKGCONFIG_CFLAGS) abs_top_srcdir=`cd $srcdir; pwd` AC_SUBST(abs_top_srcdir) abs_top_builddir=`pwd` AC_SUBST(abs_top_builddir) AC_CONFIG_FILES([Makefile data/Makefile docs/Makefile docs/version.xml src/Makefile tests/Makefile tests/engine/Makefile tests/rdql/Makefile tests/rdql/testsuite/Makefile tests/laqrs/Makefile tests/laqrs/syntax/Makefile tests/sparql/Makefile tests/sparql/simple/Makefile tests/sparql/part1/Makefile tests/sparql/examples/Makefile tests/sparql/syntax/Makefile tests/sparql/bound/Makefile tests/sparql/survey/Makefile tests/sparql/SyntaxFull/Makefile tests/sparql/sort/Makefile tests/sparql/ValueTesting/Makefile tests/sparql/regex/Makefile tests/sparql/Expr1/Makefile tests/sparql/Expr2/Makefile tests/sparql/ExprBuiltins/Makefile tests/sparql/ExprEquals/Makefile tests/sparql/SyntaxDev/Makefile tests/sparql/SyntaxDev/Syntax-SPARQL/Makefile tests/sparql/SyntaxDev/Syntax-SPARQL2/Makefile tests/sparql/SyntaxDev/Syntax-SPARQL3/Makefile utils/Makefile win32/Makefile rasqal.spec rasqal.rdf rasqal.pc]) AC_CONFIG_FILES([src/rasqal-config], [chmod +x src/rasqal-config]) AC_CONFIG_FILES([rasqal-src-config], [chmod +x rasqal-src-config]) dnl Check for gtk-doc and docbook GTK_DOC_CHECK([1.3]) AC_OUTPUT AC_MSG_RESULT([ Rasqal build summary: RDF query languages available : $rdf_query_languages_available RDF query languages enabled :$rdf_query_languages_enabled Triples source : $triples_source_library Decimal library : $decimal_library ])