1 # Configure template for GNU tar.
3 # Copyright (C) 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 # 2002, 2003 Free Software Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 AC_INIT([GNU tar], [1.13.90], [bug-tar@gnu.org])
22 AC_CONFIG_SRCDIR([src/tar.c])
23 AC_CONFIG_AUX_DIR([config])
24 AC_CONFIG_HEADERS([config.h:config.hin])
26 AM_INIT_AUTOMAKE([1.7.5 gnits dist-bzip2 dist-shar])
28 gl_USE_SYSTEM_EXTENSIONS
36 AC_CHECK_HEADERS(fcntl.h linux/fd.h memory.h net/errno.h \
38 sys/buf.h sys/device.h sys/gentape.h \
39 sys/inet.h sys/io/trioctl.h \
40 sys/mtio.h sys/tprintf.h sys/tape.h \
46 if test $ac_cv_header_sys_mtio_h = yes; then
47 AC_CACHE_CHECK(for remote tape header files, tar_cv_header_rmt,
52 #include <sys/socket.h>],
53 tar_cv_header_rmt=yes, tar_cv_header_rmt=no)])
54 test $tar_cv_header_rmt = yes && RMT='rmt$(EXEEXT)'
58 AC_CACHE_CHECK(which ioctl field to test for reversed bytes,
59 tar_cv_header_mtio_check_field,
60 [AC_EGREP_HEADER(mt_model, sys/mtio.h,
61 tar_cv_header_mtio_check_field=mt_model,
62 tar_cv_header_mtio_check_field=mt_type)])
63 AC_DEFINE_UNQUOTED(MTIO_CHECK_FIELD, $tar_cv_header_mtio_check_field,
64 [Define to mt_model (v.g., for DG/UX), else to mt_type.])
72 AC_MSG_CHECKING([for st_fstype string in struct stat])
73 AC_CACHE_VAL(diff_cv_st_fstype_string,
74 [AC_TRY_COMPILE([#include <sys/types.h>
75 #include <sys/stat.h>], [struct stat s; s.st_fstype[0] = 'x';],
76 diff_cv_st_fstype_string=yes,
77 diff_cv_st_fstype_string=no)])
78 AC_MSG_RESULT($diff_cv_st_fstype_string)
79 if test $diff_cv_st_fstype_string = yes; then
80 AC_DEFINE(HAVE_ST_FSTYPE_STRING, 1,
81 [Define if struct stat has a char st_fstype[] member.])
90 AC_CHECK_TYPE(major_t, , AC_DEFINE(major_t, int,
91 [Type of major device numbers.]))
92 AC_CHECK_TYPE(minor_t, , AC_DEFINE(minor_t, int,
93 [Type of minor device numbers.]))
94 AC_CHECK_TYPE(dev_t, unsigned)
95 AC_CHECK_TYPE(ino_t, unsigned)
139 jm_FUNC_GLIBC_UNLOCKED_IO
147 # Save and restore LIBS so e.g., -lrt, isn't added to it. Otherwise, *all*
148 # programs in the package would end up linked with that potentially-shared
149 # library, inducing unnecessary run-time overhead.
151 # Solaris 2.5.1 needs -lposix4 to get the clock_gettime function.
152 # Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4.
155 AC_SEARCH_LIBS(clock_gettime, [rt posix4],
156 [LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime])
157 AC_SUBST(LIB_CLOCK_GETTIME)
158 AC_CHECK_FUNCS(clock_gettime)
161 AC_CHECK_FUNCS(fsync lstat mkfifo readlink strerror symlink)
162 AC_CHECK_DECLS([getgrgid],,, [#include <grp.h>])
163 AC_CHECK_DECLS([getpwuid],,, [#include <pwd.h>])
164 AC_CHECK_DECLS([valloc])
166 # Set LIB_SETSOCKOPT to -lnsl -lsocket if necessary.
169 AC_SEARCH_LIBS(setsockopt, [socket], ,
170 [AC_SEARCH_LIBS(setsockopt, [socket], , , [-lnsl])])
171 AC_SEARCH_LIBS(setsockopt, [nsl])
172 if test " $LIBS" != " $tar_save_LIBS"; then
173 LIB_SETSOCKOPT=$ac_cv_search_setsockopt
175 AC_SUBST(LIB_SETSOCKOPT)
178 AC_REPLACE_FUNCS(waitpid)
180 AC_CACHE_CHECK(for remote shell, tar_cv_path_RSH,
181 [if test -n "$RSH"; then
185 for ac_file in /usr/ucb/rsh /usr/bin/remsh /usr/bin/rsh /usr/bsd/rsh \
186 /usr/bin/nsh /usr/bin/rcmd
188 # Prefer a non-symlink rsh to a symlink one, so that binaries built
189 # on AIX 4.1.4, where /usr/ucb/rsh is a symlink to /usr/bin/rsh
190 # will run on AIX 4.3.0, which has only /usr/bin/rsh.
191 if test -f $ac_file; then
192 if (test -h $ac_file) 2>/dev/null; then
193 test $tar_cv_path_RSH = no && tar_cv_path_RSH=$ac_file
195 tar_cv_path_RSH=$ac_file
201 if test $tar_cv_path_RSH = no; then
202 AC_CHECK_HEADERS(netdb.h)
204 AC_DEFINE_UNQUOTED(REMOTE_SHELL, "$tar_cv_path_RSH",
205 [Define to the full path of your rsh, if any.])
208 AC_MSG_CHECKING(for default archive format)
210 if test -z "$DEFAULT_ARCHIVE_FORMAT"; then
211 DEFAULT_ARCHIVE_FORMAT="GNU"
213 case $DEFAULT_ARCHIVE_FORMAT in
214 V7|OLDGNU|POSIX|GNU) ;;
215 *) AC_MSG_ERROR(Invalid format name);;
217 AC_DEFINE_UNQUOTED(DEFAULT_ARCHIVE_FORMAT, ${DEFAULT_ARCHIVE_FORMAT}_FORMAT,
218 [By default produce archives of this format])
219 AC_MSG_RESULT($DEFAULT_ARCHIVE_FORMAT)
221 AC_MSG_CHECKING(for default archive)
223 if test -z "$DEFAULT_ARCHIVE"; then
226 if test -z "`ls $DEFAULT_ARCHIVE 2>/dev/null`"; then
227 AC_MSG_WARN(DEFAULT_ARCHIVE \`$DEFAULT_ARCHIVE' not found on this system)
229 # FIXME: Look for DEFTAPE in <sys/mtio.h>.
230 # FIXME: Let DEVICE_PREFIX be configured from the environment.
231 # FIXME: Rearrange, here.
232 case $DEFAULT_ARCHIVE in
234 AC_DEFINE(DENSITY_LETTER, 1,
235 [[Define to 1 if density may be indicated by [lmh] at end of device.]])
236 device_prefix=`echo $DEFAULT_ARCHIVE | sed 's/[0-7][lmh]$//'`
239 device_prefix=`echo $DEFAULT_ARCHIVE | sed 's/[0-7]$//'`
245 case "$device_prefix" in
247 AC_DEFINE_UNQUOTED(DEVICE_PREFIX, "$device_prefix",
248 [Define to a string giving the prefix of the default device, without the part specifying the unit and density.])
252 AC_DEFINE_UNQUOTED(DEFAULT_ARCHIVE, "$DEFAULT_ARCHIVE",
253 [Define to a string giving the full name of the default archive file.])
254 AC_MSG_RESULT($DEFAULT_ARCHIVE)
256 AC_MSG_CHECKING(for default blocking)
257 DEFAULT_BLOCKING=${DEFAULT_BLOCKING-20}
258 AC_DEFINE_UNQUOTED(DEFAULT_BLOCKING, $DEFAULT_BLOCKING,
259 [Define to a number giving the default blocking size for archives.])
260 AC_MSG_RESULT($DEFAULT_BLOCKING)
263 AM_GNU_GETTEXT([external], [need-ngettext])
264 AM_GNU_GETTEXT_VERSION(0.12.1)
266 AC_OUTPUT([Makefile doc/Makefile lib/Makefile \
267 m4/Makefile po/Makefile.in \
268 scripts/Makefile src/Makefile tests/Makefile tests/preset])