test: Add tests for isd_get_commercial_credit()
[libisds.git] / configure.ac
blobcd980b5af83204085825503e3e8b47949719ea43
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.63])
5 AC_INIT([libisds], [0.7], [petr.pisar@atlas.cz])
6 AM_INIT_AUTOMAKE(libisds, 0.7)
7 AC_LANG([C])
8 AC_CONFIG_SRCDIR([src/isds.c])
9 AC_CONFIG_MACRO_DIR([m4])
10 AC_CONFIG_HEADERS([config.h])
12 # Checks for programs.
13 AC_PROG_CC
14 AC_PROG_CPP
15 #AC_PROG_MAKE_SET
16 LT_INIT
17 # For libtool < 1.9b (Debian lenny).
18 # AC_PROG_LIBTOOL has been obsoleted by LT_INIT
19 AC_PROG_LIBTOOL
22 # Enable example clients
23 AC_ARG_ENABLE(example, [AS_HELP_STRING([--enable-example],
24                               [Build library usage examples])])
25 AM_CONDITIONAL([BUILD_EXAMPLE], [test "$enable_example" = "yes"])
27 # Enable tests
28 AC_ARG_ENABLE(test, [AS_HELP_STRING([--enable-test],
29                               [Enable internal library tests])])
30 AM_CONDITIONAL([BUILD_TEST], [test "$enable_test" = "yes"])
32 # Enable on-line test
33 AC_ARG_ENABLE(online-test, [AS_HELP_STRING([--enable-online-test],
34                               [Enable on-line internal library tests])])
35 # Enable gettext
36 AM_GNU_GETTEXT_VERSION([0.18.1])
37 AM_GNU_GETTEXT([external])
39 # Enable debug
40 AC_ARG_ENABLE(debug, [AS_HELP_STRING([--enable-debug],
41                         [Compile in debugging mode])])
42 AS_IF([test "$enable_debug" = "yes"],
43       CFLAGS="${CFLAGS} -g"
44       dnl AC_SUBST(DEBUG_CFLAGS)
45       AC_DEFINE([ENABLE_DEBUG], [1],
46                 [Define if you want include debugging code])
47       )
49 AC_CHECK_DECL([_WIN32])
50 AM_CONDITIONAL([WIN32], [test "$ac_cv_have_decl__WIN32" = "yes"])
52 # Checks for libraries.
53 #TODO: Verify minimal version. libxml2-2.6.26 is just a guess.
54 AM_PATH_XML2([2.6.26])
56 # Checks for CURL 
57 LIBCURL_CHECK_CONFIG()
58 AS_IF([test -z "$LIBCURL"],
59       AC_MSG_WARN([libcurl disabled or not found. Network features will be
60                    disabled.]),
61     [
62     cppflags_orig="$CPPFLAGS"
63     CPPFLAGS="${CPPFLAGS} ${LIBCURL_CPPFLAGS}"
64     AC_CHECK_DECLS([CURLOPT_TIMEOUT_MS], [],
65         AC_MSG_WARN([Your libcurl does not support subsecond timeout resolution.
66                      Consider upgrade to 7.16.2 version.]),
67         [[#include <curl/curl.h>]])
68     AC_CHECK_DECLS([CURLOPT_USERNAME], [],
69         AC_MSG_WARN([Your libcurl does not support separate username and password.
70                      Your ISDS username could not contain colon.
71                      Consider upgrade to 7.19.1 version.]),
72         [[#include <curl/curl.h>]])
73     AC_CHECK_DECLS([CURLOPT_SSLCERTTYPE], [],
74         AC_MSG_WARN([Your libcurl does not support client certificate format
75                      declaration (PEM vs. DER).
76                      Consider upgrade to 7.9.3 version.]),
77         [[#include <curl/curl.h>]])
78     AC_CHECK_DECLS([CURLOPT_CRLFILE], [],
79         AC_MSG_WARN([Your libcurl does not support certificate revocation list
80                      declaration.
81                      Consider upgrade to 7.19.0 version.]),
82         [[#include <curl/curl.h>]])
83     AC_CHECK_DECLS([CURLINFO_REDIRECT_URL], [],
84         AC_MSG_ERROR([Your libcurl does not support getting redirected URL.
85                      You must upgrade to 7.18.2 version.]),
86         [[#include <curl/curl.h>]])
87     AC_CHECK_DECLS([CURLOPT_KEYPASSWD], [], [], [[#include <curl/curl.h>]])
88     AC_CHECK_DECLS([CURLOPT_SSLKEYPASSWD], [], [], [[#include <curl/curl.h>]])
89     CPPFLAGS="$cppflags_orig"
90     ])
91 AM_CONDITIONAL([BUILD_CURL], [test -n "$LIBCURL"])
93 dnl libcurl < 7.28.0 suffers from re-authorization bug, unfortunally there is
94 dnl no way how to re-check libcurl version. Thus we use explicit switch.
95 AC_ARG_ENABLE(curlreauthorizationbug,
96               [AS_HELP_STRING([--enable-curlreauthorizationbug],
97                         [Compile in work-around for re-authorization bug in
98                          curl < 7.28.0. Fixed by libcurl commit
99                          ce8311c7e49eca93c136b58efa6763853541ec97.])])
100 AS_IF([test "$enable_curlreauthorizationbug" = "yes"],
101       AC_DEFINE([HAVE_CURL_REAUTHORIZATION_BUG], [1],
102                 [Define if you want work-aroung re-autorization bug in libcurl])
103       )
105 dnl On-line tests requires libcurl
106 AM_CONDITIONAL([BUILD_ONLINE_TEST],
107                [test -n "$LIBCURL" -a "$enable_test" = "yes" \
108                     -a "$enable_online_test" = "yes"])
110 dnl Simulated tests require gnutls
111 PKG_PROG_PKG_CONFIG()
112 AS_IF([test "$enable_test" = "yes"], [
113     PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 2.12.0])
114     AC_SUBST(LIBGNUTLS_CFLAGS)
115     AC_SUBST(LIBGNUTLS_LIBS)
116     ])
118 #TODO: Determine minimal version
119 AM_PATH_LIBGCRYPT([1:1.4.0])
121 # GPGME is compiled with large file support by default. We need to follow not
122 # to break ABI.
123 AC_SYS_LARGEFILE
124 #TODO: Determine minimal version
125 AM_PATH_GPGME()
127 # Check for expat
128 AC_CHECK_LIB([expat], [XML_ExpatVersionInfo],
129              EXPAT_LIBS=-lexpat
130              AC_SUBST(EXPAT_LIBS))
131 # Verify minimal version. See src/phys.c: init_expat()
132 expat_min_major="2"
133 expat_min_minor="0"
134 expat_min_micro="0"
135 expat_min_version="${expat_min_major}.${expat_min_minor}.${expat_min_micro}"
136 AC_MSG_CHECKING([for expat library version >= ${expat_min_version}])
137 AC_COMPILE_IFELSE(
138         [AC_LANG_PROGRAM(
139             [[#define MIN_MAJOR ${expat_min_major}
140             #define MIN_MINOR ${expat_min_minor}
141             #define MIN_MICRO ${expat_min_micro}
142             #include <expat.h>]],
143             [[#if (XML_MAJOR_VERSION < MIN_MAJOR) || \
144     (XML_MAJOR_VERSION == MIN_MAJOR && XML_MINOR_VERSION < MIN_MINOR) || \
145     (XML_MAJOR_VERSION == MIN_MAJOR && XML_MINOR_VERSION == MIN_MINOR && \
146             XML_MICRO_VERSION < MIN_MICRO)
147             #error "Expat library is too old"
148             #endif]])],
149         AC_MSG_RESULT([yes]),
150         AC_MSG_FAILURE([Upgrade your expat to ${expat_min_version}])
154 # Do not consider compiler warnings as errors
155 # This harms libxml configure test
156 AC_ARG_ENABLE(fatalwarnings, [AS_HELP_STRING([--disable-fatalwarnings],
157                         [Do not consider compiler warnings as errors])])
158 AS_IF([test "$enable_fatalwarnings" = "no"], , CFLAGS="${CFLAGS} -Werror")
161 # Checks for header files.
162 AC_CHECK_HEADERS([fcntl.h locale.h stdint.h stdlib.h string.h unistd.h])
164 # Checks for typedefs, structures, and compiler characteristics.
165 AC_TYPE_SIZE_T
166 #AC_TYPE_SSIZE_T
167 AC_TYPE_UINT8_T
169 # Checks for library functions.
170 AC_FUNC_MALLOC
171 AC_FUNC_MKTIME
172 AC_FUNC_MMAP
173 AC_CHECK_FUNCS([localtime_r memset munmap setlocale strdup strerror])
175 # Default CFLAGS
176 CFLAGS="${CFLAGS} -std=c99 -Wall"
178 AC_CONFIG_FILES([Makefile src/Makefile po/Makefile.in client/Makefile
179                  test/Makefile test/offline/Makefile test/simline/Makefile
180                  test/online/Makefile libisds.pc])
182 #AC_CONFIG_SUBDIRS([src])
183 AC_OUTPUT