Imported Upstream version 3.2.1
[debian/amanda] / config / amanda / libs.m4
1 # OVERVIEW
2 #
3 #   This file contains macros that search for specific libraries that are
4 #   required or utilized by Amanda.
5
6 # SYNOPSIS
7 #
8 #   AMANDA_CHECK_LIBCURL
9 #
10 # OVERVIEW
11 #
12 #   Check for LIBCURL support.  Sets the shell variable HAVE_CURL to "yes" or
13 #   "no" depending on the result of the test.  If CURL is found, the necessary
14 #   compiler flags are added, and a few other type checks are performed.
15 #
16 #   Note that libcurl itself defines a number of useful symbols as well; see
17 #   the libcurl distribution for details.
18 #
19 AC_DEFUN([AMANDA_CHECK_LIBCURL], [
20     LIBCURL_CHECK_CONFIG(yes, 7.10.0, HAVE_CURL=yes, HAVE_CURL=no)
21     if test x"$HAVE_CURL" = x"yes"; then
22         AMANDA_ADD_LIBS($LIBCURL)
23         AMANDA_ADD_CPPFLAGS($LIBCURL_CPPFLAGS)
24
25         AMANDA_CHECK_TYPE([curl_off_t], [off_t], [curl/curl.h])
26         case "$host" in
27             *sun-solaris2*) # Solaris, all versions.
28             # we extract the -L flags and translate them to -R flags, as required
29             # by the runtime linker.
30             if test -n "$_libcurl_config"; then
31                 curlflags=`$_libcurl_config --libs 2>/dev/null`
32                 for flag in curlflags; do
33                     case $flag in
34                         -L*) LDFLAGS="$LDFLAGS "`echo "x$flag" | sed -e 's/^x-L/-R/'`;;
35                     esac
36                 done
37             fi
38             ;;
39         esac
40     fi
41
42 ])
43
44 # SYNOPSIS
45 #
46 #   AMANDA_CHECK_HMAC
47 #
48 # OVERVIEW
49 #
50 #   Check for HMAC support in -lcrypto.  If found, the shell
51 #   variable HAVE_HMAC will be set to 'yes'.  The appropriate one of
52 #   HAVE_OPENSSL_HMAC_H, HAVE_CRYPTO_HMAC_H, and HAVE_HMAC_H are also
53 #   defined via AC_CHECK_HEADERS.
54 #
55 AC_DEFUN([AMANDA_CHECK_HMAC], [
56     HAVE_HMAC=yes
57     AC_CHECK_LIB([crypto], [HMAC_CTX_init], [], [HAVE_HMAC=no])
58
59     found_hmac_h=no
60     AC_CHECK_HEADERS([openssl/hmac.h crypto/hmac.h hmac.h],
61                     [found_hmac_h=yes; break])
62     if test x"$found_hmac_h" != x"yes"; then
63         HAVE_HMAC=no
64     fi
65 ])
66
67 # SYNOPSIS
68 #
69 #   AMANDA_CHECK_NET_LIBS
70 #
71 # OVERIVEW
72 #
73 #   Check for the libraries we'll need to use sockets, etc.
74 #
75 AC_DEFUN([AMANDA_CHECK_NET_LIBS], [
76     # Make sure we don't use -lnsl and -lsun on Irix systems.
77     case "$host" in
78         *sgi-irix*)
79                             AC_CHECK_LIB(socket,main)
80                             ;;
81         *)
82                             AC_CHECK_LIB(resolv,main)
83                             AC_CHECK_LIB(nsl,main)
84                             AC_CHECK_LIB(socket,main)
85                             AC_CHECK_LIB(sun,main)
86                             ;;
87     esac
88 ])
89
90 # SYNOPSIS
91 #
92 #   AMANDA_CHECK_GLIB
93 #
94 # OVERVIEW
95 #
96 #   Search for glib.  This is basically a wrapper for AM_PATH_GLIB_2_0, with
97 #   the addition of system-specific configuration to convince Amanda to compile
98 #   "out of the box" on more boxes.
99 #
100 AC_DEFUN([AMANDA_CHECK_GLIB], [
101     AC_ARG_VAR(GLIB_CFLAGS, [CFLAGS to build with glib; disables use of pkg-config])
102     AC_ARG_VAR(GLIB_LIBS, [libraries to build with glib; disables use of pkg-config])
103     AC_ARG_VAR(GLIB_GENMARSHAL, [genmarshal binary to use with glib; disables use of pkg-config])
104     AC_ARG_VAR(GOBJECT_QUERY, [gobject_query binary to use with glib; disables use of pkg-config])
105     AC_ARG_VAR(GLIB_MKENUMS, [mkenums binary to use with glib; disables use of pkg-config])
106
107     # if any of the precious variables are set, disable the pkg-config run
108     explicit_glib=no
109     test x"$GLIB_CFLAGS" = x"" || explicit_glib=yes
110     test x"$GLIB_LIBS" = x"" || explicit_glib=yes
111     test x"$GLIB_GENMARSHAL" = x"" || explicit_glib=yes
112     test x"$GOBJECT_QUERY" = x"" || explicit_glib=yes
113     test x"$GLIB_MKENUMS" = x"" || explicit_glib=yes
114
115     if test x"$explicit_glib" = x"no"; then
116         # search for pkg-config, which the glib configuration uses, adding a few
117         # system-specific search paths.
118         AC_PATH_PROG(PKG_CONFIG, pkg-config, [], $LOCSYSPATH:/opt/csw/bin:/usr/local/bin:/opt/local/bin)
119
120         case "$host" in
121             sparc-sun-solaris2.8) # Solaris 8
122                 # give the linker a runtime search path; pkg-config doesn't supply this.
123                 # Users could also specify this with LD_LIBRARY_PATH to both ./configure
124                 # and make.  Adding this support here makes straight './configure; make'
125                 # "just work" on Solaris 8
126                 if test -n "$PKG_CONFIG"; then
127                     glib_R_flag=`$PKG_CONFIG glib-2.0 --libs-only-L 2>/dev/null | sed -e 's/-L/-R/g'`
128                     LDFLAGS="$LDFLAGS $glib_R_flag"
129                 fi
130                 ;;
131         esac
132
133         AM_PATH_GLIB_2_0(2.2.0,,[
134             AC_MSG_ERROR(glib not found or too old; See http://wiki.zmanda.com/index.php/Installation for help)
135         ], gmodule gobject gthread)
136     else
137         AC_MSG_ERROR(explicit glib)
138     fi
139
140     # GLIB_CPPFLAGS is not set by autoconf, yet GLIB_CFLAGS contains what GLIB_CPPFLAGS should contain.
141     AMANDA_ADD_CPPFLAGS($GLIB_CFLAGS)
142     AMANDA_ADD_LIBS($GLIB_LIBS)
143 ])
144
145 # LIBCURL_CHECK_CONFIG is from the libcurl
146 # distribution and licensed under the BSD license:
147 # Copyright (c) 1996 - 2007, Daniel Stenberg, <daniel@haxx.se>.
148 #
149 # All rights reserved.
150 #
151 # Permission to use, copy, modify, and distribute this software for any purpose
152 # with or without fee is hereby granted, provided that the above copyright
153 # notice and this permission notice appear in all copies.
154 #
155 # LIBCURL_CHECK_CONFIG ([DEFAULT-ACTION], [MINIMUM-VERSION],
156 #                       [ACTION-IF-YES], [ACTION-IF-NO])
157 # ----------------------------------------------------------
158 #      David Shaw <dshaw@jabberwocky.com>   May-09-2006
159 #
160 # Checks for libcurl.  DEFAULT-ACTION is the string yes or no to
161 # specify whether to default to --with-libcurl or --without-libcurl.
162 # If not supplied, DEFAULT-ACTION is yes.  MINIMUM-VERSION is the
163 # minimum version of libcurl to accept.  Pass the version as a regular
164 # version number like 7.10.1. If not supplied, any version is
165 # accepted.  ACTION-IF-YES is a list of shell commands to run if
166 # libcurl was successfully found and passed the various tests.
167 # ACTION-IF-NO is a list of shell commands that are run otherwise.
168 # Note that using --without-libcurl does run ACTION-IF-NO.
169 #
170 # This macro #defines HAVE_LIBCURL if a working libcurl setup is
171 # found, and sets @LIBCURL@ and @LIBCURL_CPPFLAGS@ to the necessary
172 # values.  Other useful defines are LIBCURL_FEATURE_xxx where xxx are
173 # the various features supported by libcurl, and LIBCURL_PROTOCOL_yyy
174 # where yyy are the various protocols supported by libcurl.  Both xxx
175 # and yyy are capitalized.  See the list of AH_TEMPLATEs at the top of
176 # the macro for the complete list of possible defines.  Shell
177 # variables $libcurl_feature_xxx and $libcurl_protocol_yyy are also
178 # defined to 'yes' for those features and protocols that were found.
179 # Note that xxx and yyy keep the same capitalization as in the
180 # curl-config list (e.g. it's "HTTP" and not "http").
181 #
182 # Users may override the detected values by doing something like:
183 # LIBCURL="-lcurl" LIBCURL_CPPFLAGS="-I/usr/myinclude" ./configure
184 #
185 # For the sake of sanity, this macro assumes that any libcurl that is
186 # found is after version 7.7.2, the first version that included the
187 # curl-config script.  Note that it is very important for people
188 # packaging binary versions of libcurl to include this script!
189 # Without curl-config, we can only guess what protocols are available,
190 # or use curl_version_info to figure it out at runtime.
191
192 AC_DEFUN([LIBCURL_CHECK_CONFIG],
193 [
194   AH_TEMPLATE([LIBCURL_FEATURE_SSL],[Defined if libcurl supports SSL])
195   AH_TEMPLATE([LIBCURL_FEATURE_KRB4],[Defined if libcurl supports KRB4])
196   AH_TEMPLATE([LIBCURL_FEATURE_IPV6],[Defined if libcurl supports IPv6])
197   AH_TEMPLATE([LIBCURL_FEATURE_LIBZ],[Defined if libcurl supports libz])
198   AH_TEMPLATE([LIBCURL_FEATURE_ASYNCHDNS],[Defined if libcurl supports AsynchDNS])
199   AH_TEMPLATE([LIBCURL_FEATURE_IDN],[Defined if libcurl supports IDN])
200   AH_TEMPLATE([LIBCURL_FEATURE_SSPI],[Defined if libcurl supports SSPI])
201   AH_TEMPLATE([LIBCURL_FEATURE_NTLM],[Defined if libcurl supports NTLM])
202
203   AH_TEMPLATE([LIBCURL_PROTOCOL_HTTP],[Defined if libcurl supports HTTP])
204   AH_TEMPLATE([LIBCURL_PROTOCOL_HTTPS],[Defined if libcurl supports HTTPS])
205   AH_TEMPLATE([LIBCURL_PROTOCOL_FTP],[Defined if libcurl supports FTP])
206   AH_TEMPLATE([LIBCURL_PROTOCOL_FTPS],[Defined if libcurl supports FTPS])
207   AH_TEMPLATE([LIBCURL_PROTOCOL_FILE],[Defined if libcurl supports FILE])
208   AH_TEMPLATE([LIBCURL_PROTOCOL_TELNET],[Defined if libcurl supports TELNET])
209   AH_TEMPLATE([LIBCURL_PROTOCOL_LDAP],[Defined if libcurl supports LDAP])
210   AH_TEMPLATE([LIBCURL_PROTOCOL_DICT],[Defined if libcurl supports DICT])
211   AH_TEMPLATE([LIBCURL_PROTOCOL_TFTP],[Defined if libcurl supports TFTP])
212
213   AC_ARG_WITH(libcurl,
214      AC_HELP_STRING([--with-libcurl=DIR],[look for the curl library in DIR]),
215      [_libcurl_with=$withval],[_libcurl_with=ifelse([$1],,[yes],[$1])])
216
217   if test "$_libcurl_with" != "no" ; then
218
219      AC_PROG_AWK
220
221      _libcurl_version_parse="eval $AWK '{split(\$NF,A,\".\"); X=256*256*A[[1]]+256*A[[2]]+A[[3]]; print X;}'"
222
223      _libcurl_try_link=yes
224
225      if test -d "$_libcurl_with" ; then
226         LIBCURL_CPPFLAGS="-I$withval/include"
227         _libcurl_ldflags="-L$withval/lib"
228         AC_PATH_PROG([_libcurl_config],[curl-config],["$withval/bin"],["$withval/bin"])
229      else
230         AC_PATH_PROG([_libcurl_config],[curl-config])
231      fi
232
233      if test x$_libcurl_config != "x" ; then
234         AC_CACHE_CHECK([for the version of libcurl],
235            [libcurl_cv_lib_curl_version],
236            [libcurl_cv_lib_curl_version=`$_libcurl_config --version | $AWK '{print $[]2}'`])
237
238         _libcurl_version=`echo $libcurl_cv_lib_curl_version | $_libcurl_version_parse`
239         _libcurl_wanted=`echo ifelse([$2],,[0],[$2]) | $_libcurl_version_parse`
240
241         if test $_libcurl_wanted -gt 0 ; then
242            AC_CACHE_CHECK([for libcurl >= version $2],
243               [libcurl_cv_lib_version_ok],
244               [
245               if test $_libcurl_version -ge $_libcurl_wanted ; then
246                  libcurl_cv_lib_version_ok=yes
247               else
248                  libcurl_cv_lib_version_ok=no
249               fi
250               ])
251         fi
252
253         if test $_libcurl_wanted -eq 0 || test x$libcurl_cv_lib_version_ok = xyes ; then
254            if test x"$LIBCURL_CPPFLAGS" = "x" ; then
255               LIBCURL_CPPFLAGS=`$_libcurl_config --cflags`
256            fi
257            if test x"$LIBCURL" = "x" ; then
258               LIBCURL=`$_libcurl_config --libs`
259
260               # This is so silly, but Apple actually has a bug in their
261               # curl-config script.  Fixed in Tiger, but there are still
262               # lots of Panther installs around.
263               case "${host}" in
264                  powerpc-apple-darwin7*)
265                     LIBCURL=`echo $LIBCURL | sed -e 's|-arch i386||g'`
266                  ;;
267               esac
268            fi
269
270            # All curl-config scripts support --feature
271            _libcurl_features=`$_libcurl_config --feature`
272
273            # Is it modern enough to have --protocols? (7.12.4)
274            if test $_libcurl_version -ge 461828 ; then
275               _libcurl_protocols=`$_libcurl_config --protocols`
276            fi
277         else
278            _libcurl_try_link=no
279         fi
280
281         unset _libcurl_wanted
282      fi
283
284      if test $_libcurl_try_link = yes ; then
285
286         # we didn't find curl-config, so let's see if the user-supplied
287         # link line (or failing that, "-lcurl") is enough.
288         LIBCURL=${LIBCURL-"$_libcurl_ldflags -lcurl"}
289
290         AC_CACHE_CHECK([whether libcurl is usable],
291            [libcurl_cv_lib_curl_usable],
292            [
293            _libcurl_save_cppflags=$CPPFLAGS
294            CPPFLAGS="$LIBCURL_CPPFLAGS $CPPFLAGS"
295            _libcurl_save_libs=$LIBS
296            LIBS="$LIBCURL $LIBS"
297
298            AC_LINK_IFELSE(AC_LANG_PROGRAM([#include <curl/curl.h>],[
299 /* Try and use a few common options to force a failure if we are
300    missing symbols or can't link. */
301 int x;
302 curl_easy_setopt(NULL,CURLOPT_URL,NULL);
303 x=CURL_ERROR_SIZE;
304 x=CURLOPT_WRITEFUNCTION;
305 x=CURLOPT_FILE;
306 x=CURLOPT_ERRORBUFFER;
307 x=CURLOPT_STDERR;
308 x=CURLOPT_VERBOSE;
309 ]),libcurl_cv_lib_curl_usable=yes,libcurl_cv_lib_curl_usable=no)
310
311            CPPFLAGS=$_libcurl_save_cppflags
312            LIBS=$_libcurl_save_libs
313            unset _libcurl_save_cppflags
314            unset _libcurl_save_libs
315            ])
316
317         if test $libcurl_cv_lib_curl_usable = yes ; then
318
319            # Does curl_free() exist in this version of libcurl?
320            # If not, fake it with free()
321
322            _libcurl_save_cppflags=$CPPFLAGS
323            CPPFLAGS="$CPPFLAGS $LIBCURL_CPPFLAGS"
324            _libcurl_save_libs=$LIBS
325            LIBS="$LIBS $LIBCURL"
326
327            AC_CHECK_FUNC(curl_free,,
328               AC_DEFINE(curl_free,free,
329                 [Define curl_free() as free() if our version of curl lacks curl_free.]))
330
331            CPPFLAGS=$_libcurl_save_cppflags
332            LIBS=$_libcurl_save_libs
333            unset _libcurl_save_cppflags
334            unset _libcurl_save_libs
335
336            AC_DEFINE(HAVE_LIBCURL,1,
337              [Define to 1 if you have a functional curl library.])
338            AC_SUBST(LIBCURL_CPPFLAGS)
339            AC_SUBST(LIBCURL)
340
341            for _libcurl_feature in $_libcurl_features ; do
342               AC_DEFINE_UNQUOTED(AS_TR_CPP(libcurl_feature_$_libcurl_feature),[1])
343               eval AS_TR_SH(libcurl_feature_$_libcurl_feature)=yes
344            done
345
346            if test "x$_libcurl_protocols" = "x" ; then
347
348               # We don't have --protocols, so just assume that all
349               # protocols are available
350               _libcurl_protocols="HTTP FTP FILE TELNET LDAP DICT"
351
352               if test x$libcurl_feature_SSL = xyes ; then
353                  _libcurl_protocols="$_libcurl_protocols HTTPS"
354
355                  # FTPS wasn't standards-compliant until version
356                  # 7.11.0
357                  if test $_libcurl_version -ge 461568; then
358                     _libcurl_protocols="$_libcurl_protocols FTPS"
359                  fi
360               fi
361            fi
362
363            for _libcurl_protocol in $_libcurl_protocols ; do
364               AC_DEFINE_UNQUOTED(AS_TR_CPP(libcurl_protocol_$_libcurl_protocol),[1])
365               eval AS_TR_SH(libcurl_protocol_$_libcurl_protocol)=yes
366            done
367         else
368            unset LIBCURL
369            unset LIBCURL_CPPFLAGS
370         fi
371      fi
372
373      unset _libcurl_try_link
374      unset _libcurl_version_parse
375      unset _libcurl_config
376      unset _libcurl_feature
377      unset _libcurl_features
378      unset _libcurl_protocol
379      unset _libcurl_protocols
380      unset _libcurl_version
381      unset _libcurl_ldflags
382   fi
383
384   if test x$_libcurl_with = xno || test x$libcurl_cv_lib_curl_usable != xyes ; then
385      # This is the IF-NO path
386      ifelse([$4],,:,[$4])
387   else
388      # This is the IF-YES path
389      ifelse([$3],,:,[$3])
390   fi
391
392   unset _libcurl_with
393 ])dnl
394