Remove KSBA from dependecies
[libisds.git] / configure.ac
blob0881cca68f97277901d5f715098855134c14989a
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.63])
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.
12 AC_PROG_CC
13 AC_PROG_CPP
14 #AC_PROG_MAKE_SET
15 LT_INIT
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]))
24 # Enable tests
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]))
30 # Enable gettext
31 AM_GNU_GETTEXT_VERSION([0.17])
32 AM_GNU_GETTEXT([external])
34 # Enable debug
35 AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],
36                         [Compile in debugging mode])])
37 AS_IF([test "$enable_debug" = "yes"],
38       CFLAGS="${CFLAGS} -g"
39       dnl AC_SUBST(DEBUG_CFLAGS)
40       AC_DEFINE([ENABLE_DEBUG], [1],
41                 [Define if you want include debugging code])
42       )
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
53 AM_PATH_GPGME()
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.
68 AC_TYPE_SIZE_T
69 #AC_TYPE_SSIZE_T
70 AC_TYPE_UINT8_T
72 # Checks for library functions.
73 AC_FUNC_MALLOC
74 AC_FUNC_MKTIME
75 AC_FUNC_MMAP
76 AC_CHECK_FUNCS([localtime_r memset munmap setlocale strdup strerror])
78 # Default CFLAGS
79 CFLAGS="${CFLAGS} -std=c99 -Wall"
81 AC_CONFIG_FILES([Makefile src/Makefile po/Makefile.in])
83 #AC_CONFIG_SUBDIRS([src])
84 AC_OUTPUT