2 # Process this file with autoconf to produce a configure script.
5 AC_INIT([libisds], [0.1], [petr.pisar@atlas.cz])
6 AM_INIT_AUTOMAKE(libisds, 0.1)
7 AC_CONFIG_SRCDIR([src/isds.c])
8 AC_CONFIG_MACRO_DIR([m4])
9 AC_CONFIG_HEADERS([config.h])
11 # Checks for programs.
18 # Enable example clients
19 AC_ARG_ENABLE(example, [AS_HELP_STRING([--enable-example],
20 [Build library usage examples])])
21 AM_CONDITIONAL([BUILD_EXAMPLE], [test "$enable_example" = "yes"])
22 AS_IF([test "$enable_example" = "yes"], AC_CONFIG_FILES([client/Makefile]))
25 AC_ARG_ENABLE(test, [AS_HELP_STRING([--enable-test],
26 [Enable internal library tests])])
27 AM_CONDITIONAL([BUILD_TEST], [test "$enable_test" = "yes"])
28 AS_IF([test "$enable_test" = "yes"], AC_CONFIG_FILES([test/Makefile]))
31 AM_GNU_GETTEXT_VERSION([0.17])
32 AM_GNU_GETTEXT([external])
35 AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],
36 [Compile in debugging mode])])
37 AS_IF([test "$enable_debug" = "yes"],
39 dnl AC_SUBST(DEBUG_CFLAGS)
40 AC_DEFINE([ENABLE_DEBUG], [1],
41 [Define if you want include debugging code])
45 # Checks for libraries.
46 #TODO: Verify minimal version. libxml2-2.6.26 is just a guess.
47 AM_PATH_XML2([2.6.26])
48 #TODO: Determine minimal version
49 LIBCURL_CHECK_CONFIG()
50 #TODO: Determine minimal version
51 AM_PATH_LIBGCRYPT([1:1.4.0])
52 #TODO: Determine minimal version
54 #AC_CHECK_LIB([expat])
57 # Do not consider compiler warnings as errors
58 # This harms libxml confgure test
59 AC_ARG_ENABLE(fatalwarnings, [AS_HELP_STRING([--disable-fatalwarnings],
60 [Do not consider compiler warnings as errors])])
61 AS_IF([test "$enable_fatalwarnings" = "no"], , CFLAGS="${CFLAGS} -Werror")
64 # Checks for header files.
65 AC_CHECK_HEADERS([fcntl.h locale.h stdint.h stdlib.h string.h unistd.h])
67 # Checks for typedefs, structures, and compiler characteristics.
72 # Checks for library functions.
76 AC_CHECK_FUNCS([localtime_r memset munmap setlocale strdup strerror])
79 CFLAGS="${CFLAGS} -std=c99 -Wall"
81 AC_CONFIG_FILES([Makefile src/Makefile po/Makefile.in])
83 #AC_CONFIG_SUBDIRS([src])