* .gitignore: Regenerate.
[debian/tar] / configure.ac
1 # Configure template for GNU tar.  -*- autoconf -*-
2
3 # Copyright (C) 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
5 # Software Foundation, Inc.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 AC_INIT([GNU tar], [1.26.90], [bug-tar@gnu.org])
23 AC_CONFIG_SRCDIR([src/tar.c])
24 AC_CONFIG_AUX_DIR([build-aux])
25 AC_CONFIG_HEADERS([config.h])
26 AC_PREREQ([2.63])
27 AM_INIT_AUTOMAKE([1.11 gnits tar-ustar dist-bzip2 dist-xz dist-shar std-options silent-rules])
28
29 # Enable silent rules by default:
30 AM_SILENT_RULES([yes])
31
32 AC_PROG_CC
33 AC_EXEEXT
34 AC_PROG_RANLIB
35 AC_PROG_YACC
36 gl_EARLY
37
38 AC_SYS_LARGEFILE
39 AC_ISC_POSIX
40 AC_C_INLINE
41
42 AC_CHECK_HEADERS_ONCE(fcntl.h linux/fd.h memory.h net/errno.h \
43   sgtty.h string.h \
44   sys/param.h sys/device.h sys/gentape.h \
45   sys/inet.h sys/io/trioctl.h \
46   sys/mtio.h sys/time.h sys/tprintf.h sys/tape.h \
47   unistd.h locale.h)
48
49 AC_CHECK_HEADERS([sys/buf.h], [], [],
50 [#if HAVE_SYS_PARAM_H
51 #include <sys/param.h>
52 #endif])
53
54 AC_HEADER_SYS_WAIT
55
56 AC_HEADER_DIRENT
57 AC_HEADER_MAJOR
58 AC_HEADER_STAT
59 AC_HEADER_STDC
60
61 AC_MSG_CHECKING([for st_fstype string in struct stat])
62 AC_CACHE_VAL(diff_cv_st_fstype_string,
63   [AC_TRY_COMPILE([#include <sys/types.h>
64 #include <sys/stat.h>], [struct stat s; s.st_fstype[0] = 'x';],
65    diff_cv_st_fstype_string=yes,
66    diff_cv_st_fstype_string=no)])
67 AC_MSG_RESULT($diff_cv_st_fstype_string)
68 if test $diff_cv_st_fstype_string = yes; then
69   AC_DEFINE(HAVE_ST_FSTYPE_STRING, 1,
70     [Define if struct stat has a char st_fstype[] member.])
71 fi
72
73 # even if we use gnulib's acl.h with integrated m4 file later on (used because
74 # of very useful file_has_acl() function) we need following checks that restrict
75 # tar to use POSIX.1e ACLs only.
76 AC_ARG_WITH([posix-acls],
77     AS_HELP_STRING([--without-posix-acls],
78                    [do not use POSIX.1e access control lists]),
79     [with_posix_acls=no])
80 if test "x$with_posix_acls" != "xno"; then
81   AC_CHECK_HEADERS(sys/acl.h,, [with_posix_acl=no])
82   AC_SEARCH_LIBS([acl_get_file],  [acl pacl],, [with_posix_acl=no])
83   AC_SEARCH_LIBS([acl_get_fd],    [acl pacl],, [with_posix_acl=no])
84   AC_SEARCH_LIBS([acl_set_file],  [acl pacl],, [with_posix_acl=no])
85   AC_SEARCH_LIBS([acl_set_fd],    [acl pacl],, [with_posix_acl=no])
86   AC_SEARCH_LIBS([acl_to_text],   [acl pacl],, [with_posix_acl=no])
87   AC_SEARCH_LIBS([acl_from_text], [acl pacl],, [with_posix_acl=no])
88   if test "x$with_posix_acls" != xno; then
89     AC_DEFINE(HAVE_POSIX_ACLS,,[Define when we have working POSIX acls])
90   fi
91 else
92   # disable acls in gnulib's checks
93   export enable_acl=no
94 fi
95
96 AC_TYPE_SIGNAL
97 AC_TYPE_MODE_T
98 AC_TYPE_PID_T
99 AC_TYPE_OFF_T
100 AC_TYPE_SIZE_T
101 AC_TYPE_UID_T
102 AC_CHECK_TYPE(major_t, , AC_DEFINE(major_t, int,
103                                    [Type of major device numbers.]))
104 AC_CHECK_TYPE(minor_t, , AC_DEFINE(minor_t, int,
105                                    [Type of minor device numbers.]))
106 AC_CHECK_TYPE(dev_t, unsigned)
107 AC_CHECK_TYPE(ino_t, unsigned)
108
109 gt_TYPE_SSIZE_T
110
111 # gnulib modules
112 gl_INIT
113 # paxutils modules
114 tar_PAXUTILS
115
116 AC_ARG_ENABLE([gcc-warnings],
117   [AS_HELP_STRING([--enable-gcc-warnings],
118      [turn on many GCC warnings (for developers; best with GNU make)])],
119   [case $enableval in
120      yes|no) ;;
121      *)      AC_MSG_ERROR([bad value $enableval for gcc-warnings option]) ;;
122    esac
123    gl_gcc_warnings=$enableval],
124   [if test -d "$srcdir"/.git; then
125      gl_gcc_warnings=yes
126    else
127      gl_gcc_warnings=no
128    fi]
129 )
130
131 if test "$gl_gcc_warnings" = yes; then
132   gl_WARN_ADD([-Werror], [WERROR_CFLAGS])
133   AC_SUBST([WERROR_CFLAGS])
134
135   nw=
136   # This, $nw, is the list of warnings we disable.
137   nw="$nw -Wformat-nonliteral"      # warnings in Fedora 17 stdio.h
138   nw="$nw -Wvla"                    # warnings in gettext.h
139   nw="$nw -Wswitch-default"         # Too many warnings for now
140   nw="$nw -Wunsafe-loop-optimizations" # It's OK to omit unsafe optimizations.
141   nw="$nw -Winline"                 # It's OK to not inline.
142   nw="$nw -Wstrict-overflow"        # It's OK to optimize strictly.
143   nw="$nw -Wsuggest-attribute=pure" # Too many warnings for now.
144
145   gl_MANYWARN_ALL_GCC([ws])
146   gl_MANYWARN_COMPLEMENT([ws], [$ws], [$nw])
147   for w in $ws; do
148     gl_WARN_ADD([$w])
149   done
150   gl_WARN_ADD([-Wno-sign-compare])     # Too many warnings for now
151   gl_WARN_ADD([-Wno-type-limits])      # It's OK to optimize based on types.
152   gl_WARN_ADD([-Wno-unused-parameter]) # Too many warnings for now
153   gl_WARN_ADD([-Wno-format-nonliteral])
154
155   gl_WARN_ADD([-fdiagnostics-show-option])
156   gl_WARN_ADD([-funit-at-a-time])
157
158   AC_SUBST([WARN_CFLAGS])
159
160   AC_DEFINE([lint], [1], [Define to 1 if the compiler is checking for lint.])
161   AH_VERBATIM([FORTIFY_SOURCE],
162   [/* Enable compile-time and run-time bounds-checking, and some warnings,
163       without upsetting glibc 2.15+. */
164    #if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
165    # define _FORTIFY_SOURCE 2
166    #endif
167   ])
168   AC_DEFINE([GNULIB_PORTCHECK], [1], [enable some gnulib portability checks])
169
170   # Use a slightly smaller set of warning options for lib/.
171   # Remove the following and save the result in GNULIB_WARN_CFLAGS.
172   nw=
173   nw="$nw -Wmissing-prototypes"
174   nw="$nw -Wunused-macros"
175   #
176   # These are for argp.
177   nw="$nw -Wmissing-field-initializers"
178   nw="$nw -Wshadow"
179   #
180   gl_MANYWARN_COMPLEMENT([GNULIB_WARN_CFLAGS], [$WARN_CFLAGS], [$nw])
181
182   # This is also for argp.
183   gl_WARN_ADD([-Wno-missing-field-initializers], [GNULIB_WARN_CFLAGS])
184
185   AC_SUBST([GNULIB_WARN_CFLAGS])
186
187   # For gnulib-tests, the set is slightly smaller still.
188   nw=
189   # It's not worth being this picky about test programs.
190   nw="$nw -Wsuggest-attribute=const"
191   gl_MANYWARN_COMPLEMENT([GNULIB_TEST_WARN_CFLAGS],
192                          [$GNULIB_WARN_CFLAGS], [$nw])
193   AC_SUBST([GNULIB_TEST_WARN_CFLAGS])
194 fi
195
196 TAR_HEADERS_ATTR_XATTR_H
197
198 AC_CHECK_FUNCS_ONCE([fchmod fchown fsync lstat mkfifo readlink symlink])
199
200 AC_CHECK_DECLS([getgrgid],,, [#include <grp.h>])
201 AC_CHECK_DECLS([getpwuid],,, [#include <pwd.h>])
202 AC_CHECK_DECLS([time],,, [#include <time.h>])
203
204 AC_REPLACE_FUNCS(waitpid)
205
206 AC_CACHE_CHECK(for remote shell, tar_cv_path_RSH,
207   [if test -n "$RSH"; then
208     tar_cv_path_RSH=$RSH
209   else
210     tar_cv_path_RSH=no
211     for ac_file in /usr/ucb/rsh /usr/bin/remsh /usr/bin/rsh /usr/bsd/rsh \
212         /usr/bin/nsh /usr/bin/rcmd
213     do
214       # Prefer a non-symlink rsh to a symlink one, so that binaries built
215       # on AIX 4.1.4, where /usr/ucb/rsh is a symlink to /usr/bin/rsh
216       # will run on AIX 4.3.0, which has only /usr/bin/rsh.
217       if test -f $ac_file; then
218         if (test -h $ac_file) 2>/dev/null; then
219           test $tar_cv_path_RSH = no && tar_cv_path_RSH=$ac_file
220         else
221           tar_cv_path_RSH=$ac_file
222           break
223         fi
224       fi
225     done
226   fi])
227 if test $tar_cv_path_RSH = no; then
228   AC_CHECK_HEADERS(netdb.h)
229 else
230   AC_DEFINE_UNQUOTED(REMOTE_SHELL, "$tar_cv_path_RSH",
231     [Define to the full path of your rsh, if any.])
232 fi
233
234 TAR_COMPR_PROGRAM(compress)
235 TAR_COMPR_PROGRAM(gzip)
236 TAR_COMPR_PROGRAM(bzip2)
237 TAR_COMPR_PROGRAM(lzip)
238 TAR_COMPR_PROGRAM(lzma)
239 TAR_COMPR_PROGRAM(lzop)
240 TAR_COMPR_PROGRAM(xz)
241
242 AC_MSG_CHECKING(for default archive format)
243
244 AC_ARG_VAR([DEFAULT_ARCHIVE_FORMAT],
245            [Set the default archive format. Allowed values are: V7, OLDGNU, USTAR, POSIX, GNU. Default is GNU])
246
247 if test -z "$DEFAULT_ARCHIVE_FORMAT"; then
248   DEFAULT_ARCHIVE_FORMAT="GNU"
249 fi
250 case $DEFAULT_ARCHIVE_FORMAT in
251   V7|OLDGNU|USTAR|POSIX|GNU) ;;
252   *) AC_MSG_ERROR(Invalid format name);;
253 esac
254 AC_DEFINE_UNQUOTED(DEFAULT_ARCHIVE_FORMAT, ${DEFAULT_ARCHIVE_FORMAT}_FORMAT,
255   [By default produce archives of this format])
256 AC_MSG_RESULT($DEFAULT_ARCHIVE_FORMAT)
257
258 AC_MSG_CHECKING(for default archive)
259
260 AC_ARG_VAR([DEFAULT_ARCHIVE],
261            [Set the name of the default archive (default: -)])
262 if test -z "$DEFAULT_ARCHIVE"; then
263   DEFAULT_ARCHIVE=-
264 else
265   if test -z "`ls $DEFAULT_ARCHIVE 2>/dev/null`"; then
266     AC_MSG_WARN(DEFAULT_ARCHIVE '$DEFAULT_ARCHIVE' not found on this system)
267   fi
268   # FIXME: Look for DEFTAPE in <sys/mtio.h>.
269   # FIXME: Let DEVICE_PREFIX be configured from the environment.
270   # FIXME: Rearrange, here.
271   case $DEFAULT_ARCHIVE in
272     *[[0-7][lmh]])
273       AC_DEFINE(DENSITY_LETTER, 1,
274         [Define to 1 if density may be indicated by [lmh] at end of device.])
275       device_prefix=`echo $DEFAULT_ARCHIVE | sed 's/[0-7][lmh]$//'`
276       ;;
277     *[[0-7]])
278       device_prefix=`echo $DEFAULT_ARCHIVE | sed 's/[0-7]$//'`
279       ;;
280     *)
281       device_prefix=
282       ;;
283   esac
284   case "$device_prefix" in
285     ?*)
286       AC_DEFINE_UNQUOTED(DEVICE_PREFIX, "$device_prefix",
287         [Define to a string giving the prefix of the default device, without the part specifying the unit and density.])
288       ;;
289   esac
290 fi
291 AC_DEFINE_UNQUOTED(DEFAULT_ARCHIVE, "$DEFAULT_ARCHIVE",
292   [Define to a string giving the full name of the default archive file.])
293 AC_MSG_RESULT($DEFAULT_ARCHIVE)
294
295 AC_ARG_VAR([DEFAULT_BLOCKING],
296            [Define default blocking factor (default: 20)])
297 AC_MSG_CHECKING(for default blocking)
298 DEFAULT_BLOCKING=${DEFAULT_BLOCKING-20}
299 AC_DEFINE_UNQUOTED(DEFAULT_BLOCKING, $DEFAULT_BLOCKING,
300   [Define to a number giving the default blocking size for archives.])
301 AC_MSG_RESULT($DEFAULT_BLOCKING)
302
303 AC_MSG_CHECKING(for default quoting style)
304
305 m4_define([QUOTING_STYLES],dnl
306           [literal|shell|shell-always|c|escape|locale|clocale])
307 DEFAULT_QUOTING_STYLE="escape"
308 AC_ARG_VAR([DEFAULT_QUOTING_STYLE],
309            [Set the default quoting style. Allowed values are: ] m4_bpatsubst(QUOTING_STYLES,[|], [[, ]]) [. Default is "escape".])
310
311 case $DEFAULT_QUOTING_STYLE in
312 QUOTING_STYLES) ;;
313 *)  AC_MSG_ERROR(Invalid quoting style);;
314 esac
315 AC_MSG_RESULT($DEFAULT_QUOTING_STYLE)
316 DEFAULT_QUOTING_STYLE=`echo ${DEFAULT_QUOTING_STYLE}|sed 's/-/_/g'`_quoting_style
317 AC_DEFINE_UNQUOTED(DEFAULT_QUOTING_STYLE, $DEFAULT_QUOTING_STYLE,
318   [Define to a default quoting style (see lib/quoteargs.c for the list)])
319
320 # Iconv
321 AM_ICONV
322 AC_CHECK_HEADERS(iconv.h)
323 AC_CHECK_TYPE(iconv_t,:,
324               AC_DEFINE(iconv_t, int,
325                         [Conversion descriptor type]),
326               [
327 #ifdef HAVE_ICONV_H
328 # include <iconv.h>
329 #endif
330 ])
331
332 # Gettext.
333 AM_GNU_GETTEXT([external], [need-formatstring-macros])
334 AM_GNU_GETTEXT_VERSION([0.16])
335
336 # Initialize the test suite.
337 AC_CONFIG_TESTDIR(tests)
338 AC_CONFIG_FILES([tests/Makefile tests/atlocal]) # FIXME: tests/preset?
339 AM_MISSING_PROG([AUTOM4TE], [autom4te])
340
341 AC_SUBST(BACKUP_LIBEXEC_SCRIPTS)
342 AC_SUBST(BACKUP_SBIN_SCRIPTS)
343 AC_ARG_ENABLE(backup-scripts,
344               AC_HELP_STRING([--enable-backup-scripts],
345                              [Create and install backup and restore scripts]),
346               [case $enableval in
347                yes) BACKUP_LIBEXEC_SCRIPTS='$(BACKUP_LIBEXEC_SCRIPTS_LIST)'
348                     BACKUP_SBIN_SCRIPTS='$(BACKUP_SBIN_SCRIPTS_LIST)'
349                     ;;
350                esac])
351
352 AC_SUBST(BACKUP_SED_COND)
353 if date +%Y-%m-%d 2>/dev/null >&2; then
354         BACKUP_SED_COND='/^\#ELSE_DATE_FORMAT_OK/,/^\#ENDIF_DATE_FORMAT_OK/d;/^\#IF_DATE_FORMAT_OK/d'
355 else
356         BACKUP_SED_COND='/^\#IF_DATE_FORMAT_OK/,/^\#ELSE_DATE_FORMAT_OK/d;/^\#ENDIF_DATE_FORMAT_OK/d'
357 fi
358
359 AC_OUTPUT([Makefile\
360            doc/Makefile\
361            gnu/Makefile\
362            lib/Makefile\
363            po/Makefile.in\
364            scripts/Makefile\
365            rmt/Makefile\
366            src/Makefile])