]> git.ipfire.org Git - thirdparty/libarchive.git/blob - configure.ac
CI: fix ubuntu distcheck
[thirdparty/libarchive.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl First, define all of the version numbers up front.
4 dnl In particular, this allows the version macro to be used in AC_INIT
5
6 dnl These first two version numbers are updated automatically on each release.
7 m4_define([LIBARCHIVE_VERSION_S],[3.5.3dev])
8 m4_define([LIBARCHIVE_VERSION_N],[3005003])
9
10 dnl bsdtar and bsdcpio versioning tracks libarchive
11 m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S())
12 m4_define([BSDCPIO_VERSION_S],LIBARCHIVE_VERSION_S())
13 m4_define([BSDCAT_VERSION_S],LIBARCHIVE_VERSION_S())
14
15 AC_PREREQ([2.69])
16
17 #
18 # Now starts the "real" configure script.
19 #
20
21 AC_INIT([libarchive],[LIBARCHIVE_VERSION_S()],[libarchive-discuss@googlegroups.com])
22 # Make sure the srcdir contains "libarchive" directory
23 AC_CONFIG_SRCDIR([libarchive])
24 # Use auxiliary subscripts from this subdirectory (cleans up root)
25 AC_CONFIG_AUX_DIR([build/autoconf])
26 # M4 scripts
27 AC_CONFIG_MACRO_DIR([build/autoconf])
28 # Must follow AC_CONFIG macros above...
29 AM_INIT_AUTOMAKE([1.11 dist-xz dist-zip])
30 AM_MAINTAINER_MODE([enable])
31 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
32
33 # Libtool's "interface version" can be computed from the libarchive version.
34
35 # Libtool interface version bumps on any API change, so increments
36 # whenever libarchive minor version does.
37 ARCHIVE_MINOR=$(( (LIBARCHIVE_VERSION_N() / 1000) % 1000 ))
38 # Libarchive 2.7 == libtool interface 9 = 2 + 7
39 # Libarchive 2.8 == libtool interface 10 = 2 + 8
40 # Libarchive 2.9 == libtool interface 11 = 2 + 8
41 # Libarchive 3.0 == libtool interface 12
42 # Libarchive 3.1 == libtool interface 13
43 ARCHIVE_INTERFACE=`echo $((13 + ${ARCHIVE_MINOR}))`
44 # Libarchive revision is bumped on any source change === libtool revision
45 ARCHIVE_REVISION=$(( LIBARCHIVE_VERSION_N() % 1000 ))
46 # Libarchive minor is bumped on any interface addition === libtool age
47 ARCHIVE_LIBTOOL_VERSION=$ARCHIVE_INTERFACE:$ARCHIVE_REVISION:$ARCHIVE_MINOR
48
49 # Stick the version numbers into config.h
50 AC_DEFINE([__LIBARCHIVE_CONFIG_H_INCLUDED], [1],
51 [Internal macro for sanity checks])
52 AC_DEFINE([LIBARCHIVE_VERSION_STRING],"LIBARCHIVE_VERSION_S()",
53 [Version number of libarchive])
54 AC_DEFINE_UNQUOTED([LIBARCHIVE_VERSION_NUMBER],"LIBARCHIVE_VERSION_N()",
55 [Version number of libarchive as a single integer])
56 AC_DEFINE([BSDCPIO_VERSION_STRING],"BSDCPIO_VERSION_S()",
57 [Version number of bsdcpio])
58 AC_DEFINE([BSDTAR_VERSION_STRING],"BSDTAR_VERSION_S()",
59 [Version number of bsdtar])
60 AC_DEFINE([BSDCAT_VERSION_STRING],"BSDTAR_VERSION_S()",
61 [Version number of bsdcat])
62
63 # The shell variables here must be the same as the AC_SUBST() variables
64 # below, but the shell variable names apparently cannot be the same as
65 # the m4 macro names above. Why? Ask autoconf.
66 BSDCPIO_VERSION_STRING=BSDCPIO_VERSION_S()
67 BSDTAR_VERSION_STRING=BSDTAR_VERSION_S()
68 BSDCAT_VERSION_STRING=BSDCAT_VERSION_S()
69 LIBARCHIVE_VERSION_STRING=LIBARCHIVE_VERSION_S()
70 LIBARCHIVE_VERSION_NUMBER=LIBARCHIVE_VERSION_N()
71
72 # Substitute the above version numbers into the various files below.
73 # Yes, I believe this is the fourth time we define what are essentially
74 # the same symbols. Why? Ask autoconf.
75 AC_SUBST(ARCHIVE_LIBTOOL_VERSION)
76 AC_SUBST(BSDCPIO_VERSION_STRING)
77 AC_SUBST(BSDTAR_VERSION_STRING)
78 AC_SUBST(BSDCAT_VERSION_STRING)
79 AC_SUBST(LIBARCHIVE_VERSION_STRING)
80 AC_SUBST(LIBARCHIVE_VERSION_NUMBER)
81
82 AC_CONFIG_HEADERS([config.h])
83 AC_CONFIG_FILES([Makefile])
84 AC_CONFIG_FILES([build/pkgconfig/libarchive.pc])
85
86 # Check for host type
87 AC_CANONICAL_HOST
88
89 dnl Compilation on mingw and Cygwin needs special Makefile rules
90 inc_windows_files=no
91 inc_cygwin_files=no
92 case "$host_os" in
93 *mingw* ) inc_windows_files=yes ;;
94 *cygwin* | *msys*) inc_cygwin_files=yes ;;
95 esac
96 AM_CONDITIONAL([INC_WINDOWS_FILES], [test $inc_windows_files = yes])
97 AM_CONDITIONAL([INC_CYGWIN_FILES], [test $inc_cygwin_files = yes])
98
99 dnl Defines that are required for specific platforms (e.g. -D_POSIX_SOURCE, etc)
100 PLATFORMCPPFLAGS=
101 case "$host_os" in
102 *mingw* ) PLATFORMCPPFLAGS=-D__USE_MINGW_ANSI_STDIO ;;
103 esac
104 AC_SUBST(PLATFORMCPPFLAGS)
105
106 # Checks for programs.
107 AC_PROG_CC
108 AC_PROG_CC_C99
109 AM_PROG_CC_C_O
110 AC_PROG_CPP
111 AC_USE_SYSTEM_EXTENSIONS
112 AC_LIBTOOL_WIN32_DLL
113 AC_PROG_LIBTOOL
114 AC_CHECK_TOOL([STRIP],[strip])
115 AC_PROG_MKDIR_P
116
117 #
118 # Options for building bsdtar.
119 #
120 # Default is to build bsdtar, but allow people to override that.
121 #
122 AC_ARG_ENABLE([bsdtar],
123 [AS_HELP_STRING([--enable-bsdtar], [enable build of bsdtar (default)])
124 AS_HELP_STRING([--enable-bsdtar=static], [force static build of bsdtar])
125 AS_HELP_STRING([--enable-bsdtar=shared], [force dynamic build of bsdtar])
126 AS_HELP_STRING([--disable-bsdtar], [disable build of bsdtar])],
127 [], [enable_bsdtar=yes])
128
129 case "$enable_bsdtar" in
130 yes)
131 if test "$enable_static" = "no"; then
132 static_bsdtar=no
133 else
134 static_bsdtar=yes
135 fi
136 build_bsdtar=yes
137 ;;
138 dynamic|shared)
139 if test "$enable_shared" = "no"; then
140 AC_MSG_FAILURE([Shared linking of bsdtar requires shared libarchive])
141 fi
142 build_bsdtar=yes
143 static_bsdtar=no
144 ;;
145 static)
146 build_bsdtar=yes
147 static_bsdtar=yes
148 ;;
149 no)
150 build_bsdtar=no
151 static_bsdtar=no
152 ;;
153 *)
154 AC_MSG_FAILURE([Unsupported value for --enable-bsdtar])
155 ;;
156 esac
157
158 AM_CONDITIONAL([BUILD_BSDTAR], [ test "$build_bsdtar" = yes ])
159 AM_CONDITIONAL([STATIC_BSDTAR], [ test "$static_bsdtar" = yes ])
160
161 #
162 # Options for building bsdcat.
163 #
164 # Default is to build bsdcat, but allow people to override that.
165 #
166 AC_ARG_ENABLE([bsdcat],
167 [AS_HELP_STRING([--enable-bsdcat], [enable build of bsdcat (default)])
168 AS_HELP_STRING([--enable-bsdcat=static], [force static build of bsdcat])
169 AS_HELP_STRING([--enable-bsdcat=shared], [force dynamic build of bsdcat])
170 AS_HELP_STRING([--disable-bsdcat], [disable build of bsdcat])],
171 [], [enable_bsdcat=yes])
172
173 case "$enable_bsdcat" in
174 yes)
175 if test "$enable_static" = "no"; then
176 static_bsdcat=no
177 else
178 static_bsdcat=yes
179 fi
180 build_bsdcat=yes
181 ;;
182 dynamic|shared)
183 if test "$enable_shared" = "no"; then
184 AC_MSG_FAILURE([Shared linking of bsdcat requires shared libarchive])
185 fi
186 build_bsdcat=yes
187 static_bsdcat=no
188 ;;
189 static)
190 build_bsdcat=yes
191 static_bsdcat=yes
192 ;;
193 no)
194 build_bsdcat=no
195 static_bsdcat=no
196 ;;
197 *)
198 AC_MSG_FAILURE([Unsupported value for --enable-bsdcat])
199 ;;
200 esac
201
202 AM_CONDITIONAL([BUILD_BSDCAT], [ test "$build_bsdcat" = yes ])
203 AM_CONDITIONAL([STATIC_BSDCAT], [ test "$static_bsdcat" = yes ])
204
205 #
206 # Options for building bsdcpio.
207 #
208 # Default is not to build bsdcpio, but that can be overridden.
209 #
210 AC_ARG_ENABLE([bsdcpio],
211 [AS_HELP_STRING([--enable-bsdcpio], [enable build of bsdcpio (default)])
212 AS_HELP_STRING([--enable-bsdcpio=static], [static build of bsdcpio])
213 AS_HELP_STRING([--enable-bsdcpio=shared], [dynamic build of bsdcpio])
214 AS_HELP_STRING([--disable-bsdcpio], [disable build of bsdcpio])],
215 [], [enable_bsdcpio=yes])
216
217 case "$enable_bsdcpio" in
218 yes)
219 if test "$enable_static" = "no"; then
220 static_bsdcpio=no
221 else
222 static_bsdcpio=yes
223 fi
224 build_bsdcpio=yes
225 ;;
226 dynamic|shared)
227 if test "$enabled_shared" = "no"; then
228 AC_MSG_FAILURE([Shared linking of bsdcpio requires shared libarchive])
229 fi
230 build_bsdcpio=yes
231 ;;
232 static)
233 build_bsdcpio=yes
234 static_bsdcpio=yes
235 ;;
236 no)
237 build_bsdcpio=no
238 static_bsdcpio=no
239 ;;
240 *)
241 AC_MSG_FAILURE([Unsupported value for --enable-bsdcpio])
242 ;;
243 esac
244
245 AM_CONDITIONAL([BUILD_BSDCPIO], [ test "$build_bsdcpio" = yes ])
246 AM_CONDITIONAL([STATIC_BSDCPIO], [ test "$static_bsdcpio" = yes ])
247
248 # Set up defines needed before including any headers
249 case $host in
250 *mingw* | *cygwin* | *msys* )
251 AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
252 [[#ifdef _WIN32_WINNT
253 # error _WIN32_WINNT already defined
254 #endif
255 ]],[[;]])
256 ],[
257 AC_DEFINE([_WIN32_WINNT], 0x0502, [Define to '0x0502' for Windows Server 2003 APIs.])
258 AC_DEFINE([NTDDI_VERSION], 0x05020000, [Define to '0x05020000' for Windows Server 2003 APIs.])
259 ])
260 AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
261 [[#ifdef WINVER
262 # error WINVER already defined
263 #endif
264 ]],[[;]])
265 ],[
266 AC_DEFINE([WINVER], 0x0502, [Define to '0x0502' for Windows Server 2003 APIs.])
267 ])
268 ;;
269 esac
270
271 # Checks for header files.
272 AC_HEADER_DIRENT
273 AC_HEADER_SYS_WAIT
274 AC_CHECK_HEADERS([acl/libacl.h attr/xattr.h])
275 AC_CHECK_HEADERS([copyfile.h ctype.h])
276 AC_CHECK_HEADERS([errno.h ext2fs/ext2_fs.h fcntl.h grp.h])
277
278 AC_CACHE_CHECK([whether EXT2_IOC_GETFLAGS is usable],
279 [ac_cv_have_decl_EXT2_IOC_GETFLAGS],
280 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([@%:@include <sys/ioctl.h>
281 @%:@include <ext2fs/ext2_fs.h>],
282 [int x = EXT2_IOC_GETFLAGS])],
283 [AS_VAR_SET([ac_cv_have_decl_EXT2_IOC_GETFLAGS], [yes])],
284 [AS_VAR_SET([ac_cv_have_decl_EXT2_IOC_GETFLAGS], [no])])])
285
286 AS_VAR_IF([ac_cv_have_decl_EXT2_IOC_GETFLAGS], [yes],
287 [AC_DEFINE_UNQUOTED([HAVE_WORKING_EXT2_IOC_GETFLAGS], [1],
288 [Define to 1 if you have a working EXT2_IOC_GETFLAGS])])
289
290 AC_CHECK_HEADERS([inttypes.h io.h langinfo.h limits.h])
291 AC_CHECK_HEADERS([linux/fiemap.h linux/fs.h linux/magic.h linux/types.h])
292
293 AC_CACHE_CHECK([whether FS_IOC_GETFLAGS is usable],
294 [ac_cv_have_decl_FS_IOC_GETFLAGS],
295 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([@%:@include <sys/ioctl.h>
296 @%:@include <linux/fs.h>],
297 [int x = FS_IOC_GETFLAGS])],
298 [AS_VAR_SET([ac_cv_have_decl_FS_IOC_GETFLAGS], [yes])],
299 [AS_VAR_SET([ac_cv_have_decl_FS_IOC_GETFLAGS], [no])])])
300
301 AS_VAR_IF([ac_cv_have_decl_FS_IOC_GETFLAGS], [yes],
302 [AC_DEFINE_UNQUOTED([HAVE_WORKING_FS_IOC_GETFLAGS], [1],
303 [Define to 1 if you have a working FS_IOC_GETFLAGS])])
304
305 AC_CHECK_HEADERS([locale.h membership.h paths.h poll.h pthread.h pwd.h])
306 AC_CHECK_HEADERS([readpassphrase.h signal.h spawn.h])
307 AC_CHECK_HEADERS([stdarg.h stdint.h stdlib.h string.h])
308 AC_CHECK_HEADERS([sys/acl.h sys/cdefs.h sys/ea.h sys/extattr.h])
309 AC_CHECK_HEADERS([sys/ioctl.h sys/mkdev.h sys/mount.h])
310 AC_CHECK_HEADERS([sys/param.h sys/poll.h sys/richacl.h])
311 AC_CHECK_HEADERS([sys/select.h sys/statfs.h sys/statvfs.h sys/sysmacros.h])
312 AC_CHECK_HEADERS([sys/time.h sys/utime.h sys/utsname.h sys/vfs.h sys/xattr.h])
313 AC_CHECK_HEADERS([time.h unistd.h utime.h wchar.h wctype.h])
314 AC_CHECK_HEADERS([windows.h])
315 # check windows.h first; the other headers require it.
316 AC_CHECK_HEADERS([wincrypt.h winioctl.h],[],[],
317 [[#ifdef HAVE_WINDOWS_H
318 # include <windows.h>
319 #endif
320 ]])
321
322 # Checks for libraries.
323 AC_ARG_WITH([zlib],
324 AS_HELP_STRING([--without-zlib], [Don't build support for gzip through zlib]))
325
326 if test "x$with_zlib" != "xno"; then
327 AC_CHECK_HEADERS([zlib.h])
328 AC_CHECK_LIB(z,inflate)
329 fi
330
331 AC_ARG_WITH([bz2lib],
332 AS_HELP_STRING([--without-bz2lib], [Don't build support for bzip2 through bz2lib]))
333
334 if test "x$with_bz2lib" != "xno"; then
335 AC_CHECK_HEADERS([bzlib.h])
336 case "$host_os" in
337 *mingw* | *cygwin* | *msys*)
338 dnl AC_CHECK_LIB cannot be used on the Windows port of libbz2, therefore
339 dnl use AC_LINK_IFELSE.
340 AC_MSG_CHECKING([for BZ2_bzDecompressInit in -lbz2])
341 old_LIBS="$LIBS"
342 LIBS="-lbz2 $LIBS"
343 AC_LINK_IFELSE(
344 [AC_LANG_SOURCE(#include <bzlib.h>
345 int main() { return BZ2_bzDecompressInit(NULL, 0, 0); })],
346 [ac_cv_lib_bz2_BZ2_bzDecompressInit=yes],
347 [ac_cv_lib_bz2_BZ2_bzDecompressInit=no])
348 LIBS="$old_LIBS"
349 AC_MSG_RESULT($ac_cv_lib_bz2_BZ2_bzDecompressInit)
350 if test "x$ac_cv_lib_bz2_BZ2_bzDecompressInit" = xyes; then
351 AC_DEFINE([HAVE_LIBBZ2], [1], [Define to 1 if you have the `bz2' library (-lbz2).])
352 LIBS="-lbz2 $LIBS"
353 fi
354 ;;
355 *)
356 AC_CHECK_LIB(bz2,BZ2_bzDecompressInit)
357 ;;
358 esac
359 fi
360
361 AC_ARG_WITH([libb2],
362 AS_HELP_STRING([--without-libb2], [Don't build support for BLAKE2 through libb2]))
363
364 if test "x$with_libb2" != "xno"; then
365 AC_CHECK_HEADERS([blake2.h])
366 AC_CHECK_LIB(b2,blake2sp_init)
367 fi
368
369 AM_CONDITIONAL([INC_BLAKE2], [test "x$ac_cv_lib_b2_blake2sp_init" != "xyes"])
370
371 AC_ARG_WITH([iconv],
372 AS_HELP_STRING([--without-iconv], [Don't try to link against iconv]))
373
374 if test "x$with_iconv" != "xno"; then
375 AM_ICONV
376 AC_CHECK_HEADERS([iconv.h],[],[],[#include <stdlib.h>])
377 if test "x$am_cv_func_iconv" = "xyes"; then
378 AC_CHECK_HEADERS([localcharset.h])
379 am_save_LIBS="$LIBS"
380 LIBS="${LIBS} ${LIBICONV}"
381 AC_CHECK_FUNCS([locale_charset])
382 LIBS="${am_save_LIBS}"
383 if test "x$ac_cv_func_locale_charset" != "xyes"; then
384 # If locale_charset() is not in libiconv, we have to find libcharset.
385 AC_CHECK_LIB(charset,locale_charset)
386 fi
387 fi
388 fi
389
390 AC_ARG_WITH([lz4],
391 AS_HELP_STRING([--without-lz4], [Don't build support for lz4 through liblz4]))
392
393 if test "x$with_lz4" != "xno"; then
394 AC_CHECK_HEADERS([lz4.h lz4hc.h])
395 AC_CHECK_LIB(lz4,LZ4_decompress_safe)
396 fi
397
398 AC_ARG_WITH([zstd],
399 AS_HELP_STRING([--without-zstd], [Don't build support for zstd through libzstd]))
400
401 if test "x$with_zstd" != "xno"; then
402 AC_CHECK_HEADERS([zstd.h])
403 AC_CHECK_LIB(zstd,ZSTD_compressStream)
404 fi
405
406 AC_ARG_WITH([lzma],
407 AS_HELP_STRING([--without-lzma], [Don't build support for xz through lzma]))
408
409 if test "x$with_lzma" != "xno"; then
410 AC_CHECK_HEADERS([lzma.h])
411 AC_CHECK_LIB(lzma,lzma_stream_decoder)
412 # Some pre-release (but widely distributed) versions of liblzma
413 # included a disabled version of lzma_stream_encoder_mt that
414 # fools a naive AC_CHECK_LIB or AC_CHECK_FUNC, so we need
415 # to do something more complex here:
416 AC_CACHE_CHECK(
417 [whether we have multithread support in lzma],
418 ac_cv_lzma_has_mt,
419 [AC_LINK_IFELSE([
420 AC_LANG_PROGRAM([[#include <lzma.h>]
421 [#if LZMA_VERSION < 50020000]
422 [#error unsupported]
423 [#endif]],
424 [[lzma_stream_encoder_mt(0, 0);]])],
425 [ac_cv_lzma_has_mt=yes], [ac_cv_lzma_has_mt=no])])
426 if test "x$ac_cv_lzma_has_mt" != xno; then
427 AC_DEFINE([HAVE_LZMA_STREAM_ENCODER_MT], [1], [Define to 1 if you have the `lzma_stream_encoder_mt' function.])
428 fi
429 fi
430
431 AC_ARG_WITH([lzo2],
432 AS_HELP_STRING([--with-lzo2], [Build with LZO support from liblzo2]))
433
434 if test "x$with_lzo2" = "xyes"; then
435 AC_CHECK_HEADERS([lzo/lzoconf.h lzo/lzo1x.h])
436 AC_CHECK_LIB(lzo2,lzo1x_decompress_safe)
437 fi
438
439 AC_ARG_WITH([cng],
440 AS_HELP_STRING([--without-cng], [Don't build support of CNG(Crypto Next Generation)]))
441
442 AC_ARG_WITH([mbedtls],
443 AS_HELP_STRING([--with-mbedtls], [Build with crypto support from mbed TLS]))
444 AC_ARG_WITH([nettle],
445 AS_HELP_STRING([--with-nettle], [Build with crypto support from Nettle]))
446 AC_ARG_WITH([openssl],
447 AS_HELP_STRING([--without-openssl], [Don't build support for mtree and xar hashes through openssl]))
448 case "$host_os" in
449 *darwin* ) with_openssl=no ;;
450 esac
451
452 AC_ARG_WITH([xml2],
453 AS_HELP_STRING([--without-xml2], [Don't build support for xar through libxml2]))
454 AC_ARG_WITH([expat],
455 AS_HELP_STRING([--without-expat], [Don't build support for xar through expat]))
456
457 if test "x$with_xml2" != "xno"; then
458 PKG_PROG_PKG_CONFIG
459 PKG_CHECK_MODULES(LIBXML2_PC, [libxml-2.0], [
460 CPPFLAGS="${CPPFLAGS} ${LIBXML2_PC_CFLAGS}"
461 LIBS="${LIBS} ${LIBXML2_PC_LIBS}"
462 AC_CHECK_LIB(xml2,xmlInitParser,[true],AC_MSG_FAILURE(Missing xml2 library))
463 ], [
464 AC_CHECK_LIB(xml2,xmlInitParser)
465 ])
466 AC_CHECK_HEADERS([libxml/xmlreader.h libxml/xmlwriter.h])
467 fi
468 if test "x$ac_cv_header_libxml_xmlreader_h" != "xyes"; then
469 if test "x$with_expat" != "xno"; then
470 AC_CHECK_HEADERS([expat.h])
471 AC_CHECK_LIB(expat,XML_ParserCreate)
472 fi
473 fi
474
475 AC_ARG_ENABLE([posix-regex-lib],
476 [AS_HELP_STRING([--enable-posix-regex-lib],
477 [choose what library to use for POSIX regular expression support (default: auto)])
478 AS_HELP_STRING([--enable-posix-regex-lib=libc], [use libc POSIX regular expression support])
479 AS_HELP_STRING([--enable-posix-regex-lib=libregex], [use libregex POSIX regular expression support])
480 AS_HELP_STRING([--enable-posix-regex-lib=libpcreposix], [use libpcreposix POSIX regular expression support])
481 AS_HELP_STRING([--disable-posix-regex-lib], [don't enable POSIX regular expression support])],
482 [], [enable_posix_regex_lib=auto])
483
484 posix_regex_lib_found=
485 if test "$enable_posix_regex_lib" = "auto" || test "$enable_posix_regex_lib" = "libc" || test "$enable_posix_regex_lib" = "libregex"; then
486 AC_CHECK_HEADERS([regex.h])
487 if test "x$ac_cv_header_regex_h" != "xno"; then
488 AC_CHECK_FUNC(regcomp)
489 if test "x$ac_cv_func_regcomp" = xyes; then
490 posix_regex_lib_found=1
491 else
492 AC_CHECK_LIB(regex,regcomp)
493 if test "x$ac_cv_lib_regex_regcomp" = xyes; then
494 posix_regex_lib_found=1
495 fi
496 fi
497 fi
498 fi
499 if test -z $posix_regex_lib_found && (test "$enable_posix_regex_lib" = "auto" || test "$enable_posix_regex_lib" = "libpcreposix"); then
500 AC_CHECK_HEADERS([pcreposix.h])
501 AC_CHECK_LIB(pcreposix,regcomp)
502 if test "x$ac_cv_lib_pcreposix_regcomp" != xyes; then
503 AC_MSG_NOTICE(trying libpcreposix check again with libpcre)
504 unset ac_cv_lib_pcreposix_regcomp
505 AC_CHECK_LIB(pcre,pcre_exec)
506 AC_CHECK_LIB(pcreposix,regcomp)
507 if test "x$ac_cv_lib_pcre_pcre_exec" = xyes && test "x$ac_cv_lib_pcreposix_regcomp" = xyes; then
508 AC_MSG_CHECKING(if PCRE_STATIC needs to be defined)
509 AC_LINK_IFELSE(
510 [AC_LANG_SOURCE(#include <pcreposix.h>
511 int main() { return regcomp(NULL, NULL, 0); })],
512 [without_pcre_static=yes],
513 [without_pcre_static=no])
514 AC_LINK_IFELSE(
515 [AC_LANG_SOURCE(#define PCRE_STATIC
516 #include <pcreposix.h>
517 int main() { return regcomp(NULL, NULL, 0); })],
518 [with_pcre_static=yes],
519 [with_pcre_static=no])
520 if test "x$without_pcre_static" != xyes && test "x$with_pcre_static" = xyes; then
521 AC_MSG_RESULT(yes)
522 AC_DEFINE([PCRE_STATIC], [1], [Define to 1 if PCRE_STATIC needs to be defined.])
523 elif test "x$without_pcre_static" = xyes || test "x$with_pcre_static" = xyes; then
524 AC_MSG_RESULT(no)
525 fi
526 posix_regex_lib_found=1
527 fi
528 else
529 posix_regex_lib_found=1
530 fi
531 fi
532
533 # TODO: Give the user the option of using a pre-existing system
534 # libarchive. This will define HAVE_LIBARCHIVE which will cause
535 # bsdtar_platform.h to use #include <...> for the libarchive headers.
536 # Need to include Makefile.am magic to link against system
537 # -larchive in that case.
538 #AC_CHECK_LIB(archive,archive_version)
539
540 # Checks for supported compiler flags
541 AX_APPEND_COMPILE_FLAGS([-Wall -Wformat -Wformat-security])
542
543 # Checks for typedefs, structures, and compiler characteristics.
544 AC_C_CONST
545 # la_TYPE_UID_T defaults to "int", which is incorrect for MinGW
546 # and MSVC. Use a customized version.
547 la_TYPE_UID_T
548 AC_TYPE_MODE_T
549 # AC_TYPE_OFF_T defaults to "long", which limits us to 4GB files on
550 # most systems... default to "long long" instead.
551 AC_CHECK_TYPE(off_t, [long long])
552 AC_TYPE_SIZE_T
553 AC_CHECK_TYPE(id_t, [unsigned long])
554 AC_CHECK_TYPE(uintptr_t, [unsigned int])
555
556 # Check for tm_gmtoff in struct tm
557 AC_CHECK_MEMBERS([struct tm.tm_gmtoff, struct tm.__tm_gmtoff],,,
558 [
559 #include <time.h>
560 ])
561
562 # Check for f_namemax in struct statfs
563 AC_CHECK_MEMBERS([struct statfs.f_namemax],,,
564 [
565 #include <sys/param.h>
566 #include <sys/mount.h>
567 ])
568
569 # Check for f_iosize in struct statfs
570 AC_CHECK_MEMBERS([struct statfs.f_iosize],,,
571 [
572 #include <sys/param.h>
573 #include <sys/mount.h>
574 ])
575
576 # Check for f_iosize in struct statvfs
577 AC_CHECK_MEMBERS([struct statvfs.f_iosize],,,
578 [
579 #include <sys/statvfs.h>
580 ])
581
582 # Check for birthtime in struct stat
583 AC_CHECK_MEMBERS([struct stat.st_birthtime])
584
585 # Check for high-resolution timestamps in struct stat
586 AC_CHECK_MEMBERS([struct stat.st_birthtimespec.tv_nsec])
587 AC_CHECK_MEMBERS([struct stat.st_mtimespec.tv_nsec])
588 AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec])
589 AC_CHECK_MEMBERS([struct stat.st_mtime_n]) # AIX
590 AC_CHECK_MEMBERS([struct stat.st_umtime]) # Tru64
591 AC_CHECK_MEMBERS([struct stat.st_mtime_usec]) # Hurd
592 # Check for block size support in struct stat
593 AC_CHECK_MEMBERS([struct stat.st_blksize])
594 # Check for st_flags in struct stat (BSD fflags)
595 AC_CHECK_MEMBERS([struct stat.st_flags])
596
597 # If you have uintmax_t, we assume printf supports %ju
598 # If you have unsigned long long, we assume printf supports %llu
599 # TODO: Check for %ju and %llu support directly.
600 AC_CHECK_TYPES([uintmax_t, unsigned long long])
601
602 # We use C99-style integer types
603 # Declare them if the local platform doesn't already do so.
604 AC_TYPE_INTMAX_T
605 AC_TYPE_UINTMAX_T
606 AC_TYPE_INT64_T
607 AC_TYPE_UINT64_T
608 AC_TYPE_INT32_T
609 AC_TYPE_UINT32_T
610 AC_TYPE_INT16_T
611 AC_TYPE_UINT16_T
612 AC_TYPE_UINT8_T
613
614 AC_CHECK_DECLS([SIZE_MAX, INT32_MAX, INT32_MIN])
615 AC_CHECK_DECLS([INT64_MAX, INT64_MIN, UINT64_MAX, UINT32_MAX])
616 AC_CHECK_DECLS([INTMAX_MAX, INTMAX_MIN, UINTMAX_MAX])
617
618 AC_CHECK_DECL([SSIZE_MAX],
619 [AC_DEFINE(HAVE_DECL_SSIZE_MAX, 1, [Define to 1 if you have the declaration of `SSIZE_MAX', and to 0 if you don't.])],
620 [],
621 [#include <limits.h>])
622
623 AC_CHECK_DECL([EFTYPE],
624 [AC_DEFINE(HAVE_EFTYPE, 1, [A possible errno value for invalid file format errors])],
625 [],
626 [#include <errno.h>])
627 AC_CHECK_DECL([EILSEQ],
628 [AC_DEFINE(HAVE_EILSEQ, 1, [A possible errno value for invalid file format errors])],
629 [],
630 [#include <errno.h>])
631 AC_CHECK_TYPE([wchar_t],
632 [AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_[]wchar_t), 1, [Define to 1 if the system has the type `wchar_t'.])dnl
633 AC_CHECK_SIZEOF([wchar_t])],
634 [])
635
636 AX_COMPILE_CHECK_SIZEOF(int)
637 AX_COMPILE_CHECK_SIZEOF(long)
638
639 AC_HEADER_TIME
640
641 # Checks for library functions.
642 AC_PROG_GCC_TRADITIONAL
643 AC_HEADER_MAJOR
644 AC_FUNC_FSEEKO
645 AC_FUNC_MEMCMP
646 AC_FUNC_LSTAT
647 AC_FUNC_STAT
648 AC_FUNC_STRERROR_R
649 AC_FUNC_STRFTIME
650 AC_FUNC_VPRINTF
651 # check for:
652 # CreateHardLinkA(LPCSTR, LPCSTR, LPSECURITY_ATTRIBUTES)
653 # To avoid necessity for including windows.h or special forward declaration
654 # workarounds, we use 'void *' for 'struct SECURITY_ATTRIBUTES *'
655 AC_CHECK_STDCALL_FUNC([CreateHardLinkA],[const char *, const char *, void *])
656 AC_CHECK_FUNCS([arc4random_buf chflags chown chroot ctime_r])
657 AC_CHECK_FUNCS([fchdir fchflags fchmod fchown fcntl fdopendir fork])
658 AC_CHECK_FUNCS([fstat fstatat fstatfs fstatvfs ftruncate])
659 AC_CHECK_FUNCS([futimens futimes futimesat])
660 AC_CHECK_FUNCS([geteuid getpid getgrgid_r getgrnam_r])
661 AC_CHECK_FUNCS([getpwnam_r getpwuid_r getvfsbyname gmtime_r])
662 AC_CHECK_FUNCS([lchflags lchmod lchown link linkat localtime_r lstat lutimes])
663 AC_CHECK_FUNCS([mbrtowc memmove memset])
664 AC_CHECK_FUNCS([mkdir mkfifo mknod mkstemp])
665 AC_CHECK_FUNCS([nl_langinfo openat pipe poll posix_spawnp readlink readlinkat])
666 AC_CHECK_FUNCS([readpassphrase])
667 AC_CHECK_FUNCS([select setenv setlocale sigaction statfs statvfs])
668 AC_CHECK_FUNCS([strchr strdup strerror strncpy_s strnlen strrchr symlink])
669 AC_CHECK_FUNCS([timegm tzset unlinkat unsetenv utime utimensat utimes vfork])
670 AC_CHECK_FUNCS([wcrtomb wcscmp wcscpy wcslen wctomb wmemcmp wmemcpy wmemmove])
671 AC_CHECK_FUNCS([_ctime64_s _fseeki64])
672 AC_CHECK_FUNCS([_get_timezone _gmtime64_s _localtime64_s _mkgmtime64])
673 # detects cygwin-1.7, as opposed to older versions
674 AC_CHECK_FUNCS([cygwin_conv_path])
675
676 # DragonFly uses vfsconf, FreeBSD xvfsconf.
677 AC_CHECK_TYPES(struct vfsconf,,,
678 [#if HAVE_SYS_TYPES_H
679 #include <sys/types.h>
680 #endif
681 #include <sys/mount.h>
682 ])
683
684 AC_CHECK_TYPES(struct xvfsconf,,,
685 [#if HAVE_SYS_TYPES_H
686 #include <sys/types.h>
687 #endif
688 #include <sys/mount.h>
689 ])
690
691 AC_CHECK_TYPES(struct statfs,,,
692 [#if HAVE_SYS_TYPES_H
693 #include <sys/types.h>
694 #endif
695 #include <sys/mount.h>
696 ])
697
698 # There are several variants of readdir_r around; we only
699 # accept the POSIX-compliant version.
700 AC_COMPILE_IFELSE(
701 [AC_LANG_PROGRAM([[#include <dirent.h>]],
702 [[DIR *dir; struct dirent e, *r;
703 return(readdir_r(dir, &e, &r));]])],
704 [AC_DEFINE(HAVE_READDIR_R,1,[Define to 1 if you have a POSIX compatible readdir_r])]
705 )
706 # dirfd can be either a function or a macro.
707 AC_COMPILE_IFELSE(
708 [AC_LANG_PROGRAM([[#include <dirent.h>
709 DIR *dir;]],
710 [[return(dirfd(dir));]])],
711 [AC_DEFINE(HAVE_DIRFD,1,[Define to 1 if you have a dirfd function or macro])]
712 )
713
714 # FreeBSD's nl_langinfo supports an option to specify whether the
715 # current locale uses month/day or day/month ordering. It makes the
716 # output a little prettier...
717 AC_CHECK_DECL([D_MD_ORDER],
718 [AC_DEFINE(HAVE_D_MD_ORDER, 1, [Define to 1 if nl_langinfo supports D_MD_ORDER])],
719 [],
720 [#if HAVE_LANGINFO_H
721 #include <langinfo.h>
722 #endif
723 ])
724
725 # Check for dirent.d_namlen field explicitly
726 # (This is a bit more straightforward than, if not quite as portable as,
727 # the recipe given by the autoconf maintainers.)
728 AC_CHECK_MEMBER(struct dirent.d_namlen,,,
729 [#if HAVE_DIRENT_H
730 #include <dirent.h>
731 #endif
732 ])
733
734 # Check for Extended Attributes support
735 AC_ARG_ENABLE([xattr],
736 AS_HELP_STRING([--disable-xattr],
737 [Disable Extended Attributes support (default: check)]))
738
739 if test "x$enable_xattr" != "xno"; then
740 AC_SEARCH_LIBS([setxattr], [attr gnu])
741 AC_CHECK_DECLS([EXTATTR_NAMESPACE_USER], [], [], [#include <sys/types.h>
742 #include <sys/extattr.h>
743 ])
744 AC_CHECK_DECLS([XATTR_NOFOLLOW], [], [], [#include <sys/xattr.h>
745 ])
746 if test "x$ac_cv_header_sys_xattr_h" = "xyes" \
747 -a "x$ac_cv_have_decl_XATTR_NOFOLLOW" = "xyes"; then
748 # Darwin extended attributes support
749 AC_CACHE_VAL([ac_cv_archive_xattr_darwin],
750 [AC_CHECK_FUNCS(fgetxattr \
751 flistxattr \
752 fsetxattr \
753 getxattr \
754 listxattr \
755 setxattr,
756 [ac_cv_archive_xattr_darwin=yes],
757 [ac_cv_archive_xattr_darwin=no],
758 [#include <sys/xattr.h>
759 ])
760 ]
761 )
762 elif test "x$ac_cv_header_sys_extattr_h" = "xyes" \
763 -a "x$ac_cv_have_decl_EXTATTR_NAMESPACE_USER" = "xyes"; then
764 # FreeBSD extended attributes support
765 AC_CACHE_VAL([ac_cv_archive_xattr_freebsd],
766 [AC_CHECK_FUNCS(extattr_get_fd \
767 extattr_get_file \
768 extattr_get_link \
769 extattr_list_fd \
770 extattr_list_file \
771 extattr_list_link \
772 extattr_set_fd \
773 extattr_set_link,
774 [ac_cv_archive_xattr_freebsd=yes],
775 [ac_cv_archive_xattr_freebsd=no],
776 [#include <sys/types.h>
777 #include <sys/extattr.h>
778 ])
779 ]
780 )
781 elif test "x$ac_cv_header_sys_xattr_h" = "xyes" \
782 -o "x$ac_cv_header_attr_xattr_h" = "xyes"; then
783 # Linux extended attributes support
784 AC_CACHE_VAL([ac_cv_archive_xattr_linux],
785 [AC_CHECK_FUNCS(fgetxattr \
786 flistxattr \
787 fsetxattr \
788 getxattr \
789 lgetxattr \
790 listxattr \
791 llistxattr \
792 lsetxattr,
793 [ac_cv_archive_xattr_linux=yes],
794 [ac_cv_archive_xattr_linux=no],
795 [#if HAVE_SYS_TYPES_H
796 #include <sys/types.h>
797 #endif
798 #if HAVE_SYS_XATTR_H
799 #include <sys/xattr.h>
800 #endif
801 #if HAVE_ATTR_XATTR_H
802 #include <attr/xatr.h>
803 #endif
804 ])
805 ]
806 )
807 elif test "x$ac_cv_header_sys_ea_h" = "xyes"; then
808 # AIX extended attributes support
809 AC_CACHE_VAL([ac_cv_archive_xattr_aix],
810 [AC_CHECK_FUNCS(fgetea \
811 flistea \
812 fsetea \
813 getea \
814 lgetea \
815 listea \
816 llistea \
817 lsetea,
818 [ac_cv_archive_xattr_aix=yes],
819 [ac_cv_archive_xattr_aix=no],
820 [#include <sys/ea.h>
821 ])
822 ]
823 )
824 fi
825
826 AC_MSG_CHECKING([for extended attributes support])
827 if test "x$ac_cv_archive_xattr_linux" = "xyes"; then
828 AC_DEFINE([ARCHIVE_XATTR_LINUX], [1], [Linux xattr support])
829 AC_MSG_RESULT([Linux])
830 elif test "x$ac_cv_archive_xattr_darwin" = "xyes"; then
831 AC_DEFINE([ARCHIVE_XATTR_DARWIN], [1], [Darwin xattr support])
832 AC_MSG_RESULT([Darwin])
833 elif test "x$ac_cv_archive_xattr_freebsd" = "xyes"; then
834 AC_DEFINE([ARCHIVE_XATTR_FREEBSD], [1], [FreeBSD xattr support])
835 AC_MSG_RESULT([FreeBSD])
836 elif test "x$ac_cv_archive_xattr_aix" = "xyes"; then
837 AC_DEFINE([ARCHIVE_XATTR_AIX], [1], [AIX xattr support])
838 AC_MSG_RESULT([AIX])
839 else
840 AC_MSG_RESULT([none])
841 fi
842 fi
843
844 # Check for ACL support
845 #
846 # The ACL support in libarchive is written against the POSIX1e draft,
847 # which was never officially approved and varies quite a bit across
848 # platforms. Worse, some systems have completely non-POSIX acl functions,
849 # which makes the following checks rather more complex than I would like.
850 #
851 AC_ARG_ENABLE([acl],
852 AS_HELP_STRING([--disable-acl],
853 [Disable ACL support (default: check)]))
854
855 if test "x$enable_acl" != "xno"; then
856 # Libacl
857 AC_CHECK_LIB([acl], [acl_get_file])
858
859 AC_CHECK_TYPES([acl_t, acl_entry_t, acl_permset_t, acl_tag_t], [], [], [
860 #if HAVE_SYS_TYPES_H
861 #include <sys/types.h>
862 #endif
863 #if HAVE_SYS_ACL_H
864 #include <sys/acl.h>
865 #endif
866 ])
867
868 AC_CHECK_LIB([richacl], [richacl_get_file])
869
870 AC_CHECK_TYPES([[struct richace], [struct richacl]], [], [], [
871 #if HAVE_SYS_RICHACL_H
872 #include <sys/richacl.h>
873 #endif
874 ])
875
876 # Solaris and derivates ACLs
877 AC_CHECK_FUNCS(acl facl)
878
879 if test "x$ac_cv_lib_richacl_richacl_get_file" = "xyes" \
880 -a "x$ac_cv_type_struct_richace" = "xyes" \
881 -a "x$ac_cv_type_struct_richacl" = "xyes"; then
882 AC_CACHE_VAL([ac_cv_archive_acl_librichacl],
883 [AC_CHECK_FUNCS(richacl_alloc \
884 richacl_equiv_mode \
885 richacl_free \
886 richacl_get_fd \
887 richacl_get_file \
888 richacl_set_fd \
889 richacl_set_file,
890 [ac_cv_archive_acl_librichacl=yes], [ac_cv_archive_acl_librichacl=no], [#include <sys/richacl.h>])])
891 fi
892
893 if test "x$ac_cv_func_acl" = "xyes" \
894 -a "x$ac_cv_func_facl" = "xyes"; then
895 AC_CHECK_TYPES([aclent_t], [], [], [[#include <sys/acl.h>]])
896 if test "x$ac_cv_type_aclent_t" = "xyes"; then
897 AC_CACHE_VAL([ac_cv_archive_acl_sunos],
898 [AC_CHECK_DECLS([GETACL, SETACL, GETACLCNT],
899 [ac_cv_archive_acl_sunos=yes], [ac_cv_archive_acl_sunos=no],
900 [#include <sys/acl.h>])])
901 AC_CHECK_TYPES([ace_t], [], [], [[#include <sys/acl.h>]])
902 if test "x$ac_cv_type_ace_t" = "xyes"; then
903 AC_CACHE_VAL([ac_cv_archive_acl_sunos_nfs4],
904 [AC_CHECK_DECLS([ACE_GETACL, ACE_SETACL, ACE_GETACLCNT],
905 [ac_cv_archive_acl_sunos_nfs4=yes],
906 [ac_cv_archive_acl_sonos_nfs4=no],
907 [#include <sys/acl.h>])])
908 fi
909 fi
910 elif test "x$ac_cv_type_acl_t" = "xyes" \
911 -a "x$ac_cv_type_acl_entry_t" = "xyes" \
912 -a "x$ac_cv_type_acl_permset_t" = "xyes" \
913 -a "x$ac_cv_type_acl_tag_t" = "xyes"; then
914 # POSIX.1e ACL functions
915 AC_CACHE_VAL([ac_cv_posix_acl_funcs],
916 [AC_CHECK_FUNCS(acl_add_perm \
917 acl_clear_perms \
918 acl_create_entry \
919 acl_delete_def_file \
920 acl_free \
921 acl_get_entry \
922 acl_get_fd \
923 acl_get_file \
924 acl_get_permset \
925 acl_get_qualifier \
926 acl_get_tag_type \
927 acl_init \
928 acl_set_fd \
929 acl_set_file \
930 acl_set_qualifier \
931 acl_set_tag_type,
932 [ac_cv_posix_acl_funcs=yes], [ac_cv_posix_acl_funcs=no],
933 [#if HAVE_SYS_TYPES_H
934 #include <sys/types.h>
935 #endif
936 #if HAVE_SYS_ACL_H
937 #include <sys/acl.h>
938 #endif
939 ])
940 ])
941
942 AC_CHECK_FUNCS(acl_get_perm)
943
944 if test "x$ac_cv_posix_acl_funcs" = "xyes" \
945 -a "x$ac_cv_header_acl_libacl_h" = "xyes" \
946 -a "x$ac_cv_lib_acl_acl_get_file" = "xyes" \
947 -a "x$ac_cv_func_acl_get_perm"; then
948 AC_CACHE_VAL([ac_cv_archive_acl_libacl],
949 [ac_cv_archive_acl_libacl=yes])
950 AC_DEFINE([ARCHIVE_ACL_LIBACL], [1],
951 [POSIX.1e ACL support via libacl])
952 else
953 # FreeBSD/Darwin
954 AC_CHECK_FUNCS(acl_add_flag_np \
955 acl_clear_flags_np \
956 acl_get_brand_np \
957 acl_get_entry_type_np \
958 acl_get_flag_np \
959 acl_get_flagset_np \
960 acl_get_fd_np \
961 acl_get_link_np \
962 acl_get_perm_np \
963 acl_is_trivial_np \
964 acl_set_entry_type_np \
965 acl_set_fd_np \
966 acl_set_link_np,,,
967 [#include <sys/types.h>
968 #include <sys/acl.h>])
969
970 AC_CHECK_FUNCS(mbr_uid_to_uuid \
971 mbr_uuid_to_id \
972 mbr_gid_to_uuid,,,
973 [#include <membership.h>])
974
975 AC_CHECK_DECLS([ACL_TYPE_EXTENDED, ACL_TYPE_NFS4, ACL_USER,
976 ACL_SYNCHRONIZE], [], [],
977 [#include <sys/types.h>
978 #include <sys/acl.h>])
979 if test "x$ac_cv_posix_acl_funcs" = "xyes" \
980 -a "x$ac_cv_func_acl_get_fd_np" = "xyes" \
981 -a "x$ac_cv_func_acl_get_perm" != "xyes" \
982 -a "x$ac_cv_func_acl_get_perm_np" = "xyes" \
983 -a "x$ac_cv_func_acl_set_fd_np" = "xyes"; then
984 if test "x$ac_cv_have_decl_ACL_USER" = "xyes"; then
985 AC_CACHE_VAL([ac_cv_archive_acl_freebsd],
986 [ac_cv_archive_acl_freebsd=yes])
987 if test "x$ac_cv_have_decl_ACL_TYPE_NFS4" = "xyes" \
988 -a "x$ac_cv_func_acl_add_flag_np" = "xyes" \
989 -a "x$ac_cv_func_acl_get_brand_np" = "xyes" \
990 -a "x$ac_cv_func_acl_get_entry_type_np" = "xyes" \
991 -a "x$ac_cv_func_acl_get_flagset_np" = "xyes" \
992 -a "x$ac_cv_func_acl_set_entry_type_np" = "xyes"; then
993 AC_CACHE_VAL([ac_cv_archive_acl_freebsd_nfs4],
994 [ac_cv_archive_acl_freebsd_nfs4=yes])
995 fi
996 elif test "x$ac_cv_have_decl_ACL_TYPE_EXTENDED" = "xyes" \
997 -a "x$ac_cv_func_acl_add_flag_np" = "xyes" \
998 -a "x$ac_cv_func_acl_get_flagset_np" = "xyes" \
999 -a "x$ac_cv_func_acl_get_link_np" = "xyes" \
1000 -a "x$ac_cv_func_acl_set_link_np" = "xyes" \
1001 -a "x$ac_cv_func_mbr_uid_to_uuid" = "xyes" \
1002 -a "x$ac_cv_func_mbr_uuid_to_id" = "xyes" \
1003 -a "x$ac_cv_func_mbr_gid_to_uuid" = "xyes"; then
1004 AC_CACHE_VAL([ac_cv_archive_acl_darwin],
1005 [ac_cv_archive_acl_darwin=yes])
1006 fi
1007 fi
1008 fi
1009 fi
1010 AC_MSG_CHECKING([for ACL support])
1011 if test "x$ac_cv_archive_acl_libacl" = "xyes" \
1012 -a "x$ac_cv_archive_acl_librichacl" = "xyes"; then
1013 AC_MSG_RESULT([libacl (POSIX.1e) + librichacl (NFSv4)])
1014 AC_DEFINE([ARCHIVE_ACL_LIBACL], [1],
1015 [Linux POSIX.1e ACL support via libacl])
1016 AC_DEFINE([ARCHIVE_ACL_LIBRICHACL], [1],
1017 [Linux NFSv4 ACL support via librichacl])
1018 elif test "x$ac_cv_archive_acl_libacl" = "xyes"; then
1019 AC_MSG_RESULT([libacl (POSIX.1e)])
1020 AC_DEFINE([ARCHIVE_ACL_LIBACL], [1],
1021 [Linux POSIX.1e ACL support via libacl])
1022 elif test "x$ac_cv_archive_acl_librichacl" = "xyes"; then
1023 AC_MSG_RESULT([librichacl (NFSv4)])
1024 AC_DEFINE([ARCHIVE_ACL_LIBRICHACL], [1],
1025 [Linux NFSv4 ACL support via librichacl])
1026 elif test "x$ac_cv_archive_acl_darwin" = "xyes"; then
1027 AC_DEFINE([ARCHIVE_ACL_DARWIN], [1], [Darwin ACL support])
1028 AC_MSG_RESULT([Darwin (limited NFSv4)])
1029 elif test "x$ac_cv_archive_acl_sunos" = "xyes"; then
1030 AC_DEFINE([ARCHIVE_ACL_SUNOS], [1], [Solaris ACL support])
1031 if test "x$ac_cv_archive_acl_sunos_nfs4" = "xyes"; then
1032 AC_DEFINE([ARCHIVE_ACL_SUNOS_NFS4], [1],
1033 [Solaris NFSv4 ACL support])
1034 AC_MSG_RESULT([Solaris (POSIX.1e and NFSv4)])
1035 else
1036 AC_MSG_RESULT([Solaris (POSIX.1e)])
1037 fi
1038 elif test "x$ac_cv_archive_acl_freebsd" = "xyes"; then
1039 AC_DEFINE([ARCHIVE_ACL_FREEBSD], [1], [FreeBSD ACL support])
1040 if test "x$ac_cv_archive_acl_freebsd_nfs4" = "xyes"; then
1041 AC_DEFINE([ARCHIVE_ACL_FREEBSD_NFS4], [1],
1042 [FreeBSD NFSv4 ACL support])
1043 AC_MSG_RESULT([FreeBSD (POSIX.1e and NFSv4)])
1044 else
1045 AC_MSG_RESULT([FreeBSD (POSIX.1e)])
1046 fi
1047 else
1048 AC_MSG_RESULT([none])
1049 fi
1050 fi
1051
1052
1053 AM_CONDITIONAL([INC_LINUX_ACL],
1054 [test "x$ac_cv_archive_acl_libacl" = "xyes" \
1055 -o "x$ac_cv_archive_acl_librichacl" = "xyes"])
1056 AM_CONDITIONAL([INC_SUNOS_ACL], [test "x$ac_cv_archive_acl_sunos" = "xyes"])
1057 AM_CONDITIONAL([INC_DARWIN_ACL],
1058 [test "x$ac_cv_archive_acl_darwin" = "xyes"])
1059 AM_CONDITIONAL([INC_FREEBSD_ACL],
1060 [test "x$ac_cv_archive_acl_freebsd" = "xyes"])
1061
1062 # Additional requirements
1063 AC_SYS_LARGEFILE
1064
1065 dnl NOTE: Crypto checks must run last.
1066 AC_DEFUN([CRYPTO_CHECK], [
1067 if test "$found_$1" != yes; then
1068 saved_CPPFLAGS="$CPPFLAGS"
1069 CPPFLAGS="$CPPFLAGS -I. -I$srcdir -I$srcdir/libarchive"
1070 touch "check_crypto_md.h"
1071 AC_MSG_CHECKING([support for ARCHIVE_CRYPTO_$1_$2])
1072 AC_LINK_IFELSE([AC_LANG_SOURCE([
1073 #define ARCHIVE_$1_COMPILE_TEST
1074 #define ARCHIVE_CRYPTO_$1_$2
1075 #define PLATFORM_CONFIG_H "check_crypto_md.h"
1076
1077 $(cat "$srcdir/libarchive/archive_digest.c")
1078
1079 int
1080 main(int argc, char **argv)
1081 {
1082 archive_$3_ctx ctx;
1083 archive_$3_init(&ctx);
1084 archive_$3_update(&ctx, *argv, argc);
1085 archive_$3_final(&ctx, NULL);
1086 return 0;
1087 }
1088 ])],
1089 [ AC_MSG_RESULT([yes])
1090 found_$1=yes
1091 found_$2=yes
1092 AC_DEFINE(ARCHIVE_CRYPTO_$1_$2, 1, [ $1 via ARCHIVE_CRYPTO_$1_$2 supported.])
1093 ],
1094 [ AC_MSG_RESULT([no])])
1095 CPPFLAGS="$saved_CPPFLAGS"
1096 rm "check_crypto_md.h"
1097 fi
1098 ])
1099
1100 AC_DEFUN([CRYPTO_CHECK_WIN], [
1101 if test "$found_$1" != yes; then
1102 AC_MSG_CHECKING([support for ARCHIVE_CRYPTO_$1_WIN])
1103 AC_LINK_IFELSE([AC_LANG_SOURCE([
1104 #define ARCHIVE_$1_COMPILE_TEST
1105 #include <windows.h>
1106 #include <wincrypt.h>
1107
1108 int
1109 main(int argc, char **argv)
1110 {
1111 (void)argc;
1112 (void)argv;
1113
1114 return ($2);
1115 }
1116 ])],
1117 [ AC_MSG_RESULT([yes])
1118 found_$1=yes
1119 found_WIN=yes
1120 AC_DEFINE(ARCHIVE_CRYPTO_$1_WIN, 1, [ $1 via ARCHIVE_CRYPTO_$1_WIN supported.])
1121 ],
1122 [ AC_MSG_RESULT([no])])
1123 fi
1124 ])
1125
1126 case "$host_os" in
1127 *mingw* | *cygwin* | *msys*)
1128 ;;
1129 *)
1130 CRYPTO_CHECK(MD5, LIBC, md5)
1131 CRYPTO_CHECK(MD5, LIBSYSTEM, md5)
1132 CRYPTO_CHECK(RMD160, LIBC, rmd160)
1133 CRYPTO_CHECK(SHA1, LIBC, sha1)
1134 CRYPTO_CHECK(SHA1, LIBSYSTEM, sha1)
1135 CRYPTO_CHECK(SHA256, LIBC, sha256)
1136 CRYPTO_CHECK(SHA256, LIBC2, sha256)
1137 CRYPTO_CHECK(SHA256, LIBC3, sha256)
1138 CRYPTO_CHECK(SHA256, LIBSYSTEM, sha256)
1139 CRYPTO_CHECK(SHA384, LIBC, sha384)
1140 CRYPTO_CHECK(SHA384, LIBC2, sha384)
1141 CRYPTO_CHECK(SHA384, LIBC3, sha384)
1142 CRYPTO_CHECK(SHA384, LIBSYSTEM, sha384)
1143 CRYPTO_CHECK(SHA512, LIBC, sha512)
1144 CRYPTO_CHECK(SHA512, LIBC2, sha512)
1145 CRYPTO_CHECK(SHA512, LIBC3, sha512)
1146 CRYPTO_CHECK(SHA512, LIBSYSTEM, sha512)
1147 ;;
1148 esac
1149
1150 if test "x$with_cng" != "xno"; then
1151 AC_CHECK_HEADERS([bcrypt.h],[
1152 LIBS="$LIBS -lbcrypt"
1153 ],[],
1154 [[#ifdef HAVE_WINDOWS_H
1155 # include <windows.h>
1156 #endif
1157 ]])
1158 fi
1159
1160 if test "x$with_mbedtls" = "xyes"; then
1161 AC_CHECK_HEADERS([mbedtls/aes.h mbedtls/md.h mbedtls/pkcs5.h])
1162 saved_LIBS=$LIBS
1163 AC_CHECK_LIB(mbedcrypto,mbedtls_sha1_init)
1164 CRYPTO_CHECK(MD5, MBEDTLS, md5)
1165 CRYPTO_CHECK(RMD160, MBEDTLS, rmd160)
1166 CRYPTO_CHECK(SHA1, MBEDTLS, sha1)
1167 CRYPTO_CHECK(SHA256, MBEDTLS, sha256)
1168 CRYPTO_CHECK(SHA384, MBEDTLS, sha384)
1169 CRYPTO_CHECK(SHA512, MBEDTLS, sha512)
1170 if test "x$found_MBEDTLS" != "xyes"; then
1171 LIBS=$saved_LIBS
1172 fi
1173 fi
1174
1175 if test "x$with_nettle" = "xyes"; then
1176 AC_CHECK_HEADERS([nettle/md5.h nettle/ripemd160.h nettle/sha.h])
1177 AC_CHECK_HEADERS([nettle/pbkdf2.h nettle/aes.h nettle/hmac.h])
1178 saved_LIBS=$LIBS
1179 AC_CHECK_LIB(nettle,nettle_sha1_init)
1180 CRYPTO_CHECK(MD5, NETTLE, md5)
1181 CRYPTO_CHECK(RMD160, NETTLE, rmd160)
1182 CRYPTO_CHECK(SHA1, NETTLE, sha1)
1183 CRYPTO_CHECK(SHA256, NETTLE, sha256)
1184 CRYPTO_CHECK(SHA384, NETTLE, sha384)
1185 CRYPTO_CHECK(SHA512, NETTLE, sha512)
1186 if test "x$found_NETTLE" != "xyes"; then
1187 LIBS=$saved_LIBS
1188 fi
1189 fi
1190
1191 if test "x$with_openssl" != "xno"; then
1192 AC_CHECK_HEADERS([openssl/evp.h])
1193 saved_LIBS=$LIBS
1194 case "$host_os" in
1195 *mingw* | *cygwin* | *msys*)
1196 case "$host_cpu" in
1197 x86_64)
1198 AC_CHECK_LIB(eay64,OPENSSL_config)
1199 if test "x$ac_cv_lib_eay64_main" != "xyes"; then
1200 AC_CHECK_LIB(eay32,OPENSSL_config)
1201 fi
1202 ;;
1203 *)
1204 AC_CHECK_LIB(eay32,OPENSSL_config)
1205 ;;
1206 esac
1207 ;;
1208 *)
1209 AC_CHECK_LIB(crypto,OPENSSL_config)
1210 ;;
1211 esac
1212 CRYPTO_CHECK(MD5, OPENSSL, md5)
1213 CRYPTO_CHECK(RMD160, OPENSSL, rmd160)
1214 CRYPTO_CHECK(SHA1, OPENSSL, sha1)
1215 CRYPTO_CHECK(SHA256, OPENSSL, sha256)
1216 CRYPTO_CHECK(SHA384, OPENSSL, sha384)
1217 CRYPTO_CHECK(SHA512, OPENSSL, sha512)
1218 AC_CHECK_FUNCS([PKCS5_PBKDF2_HMAC_SHA1])
1219 fi
1220
1221 # Probe libmd AFTER OpenSSL/libcrypto.
1222 # The two are incompatible and OpenSSL is more complete.
1223 AC_CHECK_HEADERS([md5.h ripemd.h sha.h sha256.h sha512.h])
1224 saved_LIBS=$LIBS
1225 AC_CHECK_LIB(md,MD5Init)
1226 CRYPTO_CHECK(MD5, LIBMD, md5)
1227 CRYPTO_CHECK(RMD160, LIBMD, rmd160)
1228 CRYPTO_CHECK(SHA1, LIBMD, sha1)
1229 CRYPTO_CHECK(SHA256, LIBMD, sha256)
1230 CRYPTO_CHECK(SHA512, LIBMD, sha512)
1231 if test "x$found_LIBMD" != "xyes"; then
1232 LIBS=$saved_LIBS
1233 fi
1234
1235 case "$host_os" in
1236 *mingw* | *cygwin* | *msys*)
1237 CRYPTO_CHECK_WIN(MD5, CALG_MD5)
1238 CRYPTO_CHECK_WIN(SHA1, CALG_SHA1)
1239 CRYPTO_CHECK_WIN(SHA256, CALG_SHA_256)
1240 CRYPTO_CHECK_WIN(SHA384, CALG_SHA_384)
1241 CRYPTO_CHECK_WIN(SHA512, CALG_SHA_512)
1242 ;;
1243 esac
1244
1245 # Ensure test directories are present if building out-of-tree
1246 AC_CONFIG_COMMANDS([mkdirs],
1247 [mkdir -p libarchive/test tar/test cat/test cpio/test])
1248
1249 AC_OUTPUT