X-Git-Url: https://git.octo.it/?p=sort-networks.git;a=blobdiff_plain;f=configure.ac;h=2ca8cdc8780921bcafb463073417820dbe3b3879;hp=b8d6e6b7c4d1fcbb9c1466d748a60bed5652f870;hb=4f5cca3d0af8783bc0d44ea9f78467fd80228d09;hpb=4f9c9a9186e4c0d1ebab22a7fb56a852cd54c75e diff --git a/configure.ac b/configure.ac index b8d6e6b..2ca8cdc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_PREREQ([2.65]) -AC_INIT([libsortnetwork], [1.0.0], [ff@octo.it]) +AC_PREREQ([2.61]) +AC_INIT([libsortnetwork], [1.1.0], [ff@octo.it]) AC_CONFIG_SRCDIR([src/sn_network.c]) AC_CONFIG_HEADERS([src/config.h]) AM_INIT_AUTOMAKE(dist-bzip2) @@ -14,11 +14,10 @@ AC_PROG_INSTALL AM_PROG_CC_C_O AC_DISABLE_STATIC AC_PROG_LIBTOOL +PKG_PROG_PKG_CONFIG # Libtool stuff -LT_CONFIG_LTDL_DIR([libltdl]) LT_INIT -LTDL_INIT if test "x$GCC" = "xyes" then @@ -47,5 +46,79 @@ AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([memmove memset strcasecmp strchr strdup strtol]) +AC_ARG_VAR([LIBPOPULATION_CPPFLAGS], [C preprocessor flags required to build with libpopulation]) +AC_ARG_VAR([LIBPOPULATION_LDFLAGS], [Linker flags required to build with libpopulation]) +AC_ARG_VAR([LIBPOPULATION_LIBS], [Other libraries required to link against libpopulation]) + +# --with-libpopulation {{{ +LIBPOPULATION_CPPFLAGS="$LIBPOPULATION_CPPFLAGS" +LIBPOPULATION_LDFLAGS="$LIBPOPULATION_LDFLAGS" +LIBPOPULATION_LIBS="$LIBPOPULATION_LIBS" +AC_ARG_WITH(libpopulation, [AS_HELP_STRING([--with-libpopulation@<:@=PREFIX@:>@], [Path to libpopulation.])], +[ + if test "x$withval" = "xyes" || test "x$withval" = "xno" + then + with_libpopulation="$withval" + else + LIBPOPULATION_CPPFLAGS="$LIBPOPULATION_CPPFLAGS -I$withval/include" + LIBPOPULATION_LDFLAGS="$LIBPOPULATION_LDFLAGS -L$withval/lib" + with_libpopulation="yes" + fi +], +[ + with_libpopulation="yes" +]) + +SAVE_CPPFLAGS="$CPPFLAGS" +SAVE_LDFLAGS="$LDFLAGS" +CPPFLAGS="$CPPFLAGS $LIBPOPULATION_CPPFLAGS" +LDFLAGS="$LDFLAGS $LIBPOPULATION_LDFLAGS" + +if test "x$with_libpopulation" = "xyes" +then + AC_CHECK_HEADERS(population.h, + [with_libpopulation="yes"], + [with_libpopulation="no"]) +fi + +if test "x$with_libpopulation" = "xyes" +then + if test "x$LIBPOPULATION_LIBS" = "x" + then + LIBPOPULATION_LIBS="-lpthread" + fi + + AC_CHECK_LIB(population, population_create, + [with_libpopulation="yes"], + [with_libpopulation="no"], + [$LIBPOPULATION_LIBS]) + LIBPOPULATION_LIBS="-lpopulation $LIBPOPULATION_LIBS" +fi + +CPPFLAGS="$SAVE_CPPFLAGS" +LDFLAGS="$SAVE_LDFLAGS" + +if test "x$with_libpopulation" = "xyes" +then + AC_DEFINE(HAVE_LIBPOPULATION, 1, [Define to 1 if you have the population library (-lpopulation).]) +fi + +AC_SUBST(LIBPOPULATION_CPPFLAGS) +AC_SUBST(LIBPOPULATION_LDFLAGS) +AC_SUBST(LIBPOPULATION_LIBS) +AM_CONDITIONAL(BUILD_WITH_LIBPOPULATION, test "x$with_libpopulation" = "xyes") +# }}} --with-libpopulation + +PKG_CHECK_MODULES([glib], [glib-2.0], + [have_libglib="yes"], + [have_libglib="no"]) + +if test "x$have_libglib" != "xyes" +then + AC_MSG_ERROR([The GLib library could not be found. It is required when building libsortnetwork!]) +fi + AC_CONFIG_FILES([Makefile src/Makefile]) AC_OUTPUT + +# vim: set fdm=marker :