]> Dogcows Code - chaz/tar/blobdiff - configure.ac
Merge recent gnulib changes, and remove some lint.
[chaz/tar] / configure.ac
index da831ea0a65472343f1eea88b567d520e0c13252..9279683bba03dcf1d25128ea41733615bf91bc17 100644 (file)
@@ -18,7 +18,7 @@
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 # 02111-1307, USA.
 
-AC_INIT([GNU tar], [1.13.93], [bug-tar@gnu.org])
+AC_INIT([GNU tar], [1.13.94], [bug-tar@gnu.org])
 AC_CONFIG_SRCDIR([src/tar.c])
 AC_CONFIG_AUX_DIR([config])
 AC_CONFIG_HEADERS([config.h:config.hin])
@@ -37,7 +37,7 @@ AC_CHECK_HEADERS(fcntl.h linux/fd.h memory.h net/errno.h \
   sgtty.h string.h \
   sys/buf.h sys/device.h sys/gentape.h \
   sys/inet.h sys/io/trioctl.h \
-  sys/mtio.h sys/tprintf.h sys/tape.h \
+  sys/mtio.h sys/time.h sys/tprintf.h sys/tape.h \
   unistd.h)
 
 AC_HEADER_SYS_WAIT
@@ -114,10 +114,12 @@ gl_FUNC_MKTIME
 gl_FUNC_RMDIR
 gl_FUNC_STRTOL
 gl_FUNC_STRTOUL
+gl_FUNC_STRTOULL
 gl_FUNC_STRTOIMAX
 gl_FUNC_STRTOUMAX
 gl_GETDATE
 gl_GETOPT
+gl_GETTIME
 gl_HASH
 gl_HUMAN
 gl_MODECHANGE
@@ -131,6 +133,7 @@ gl_SAVE_CWD
 gl_SAVEDIR
 gl_STRCASE
 gl_TIME_R
+gl_TIMESPEC
 gl_XALLOC
 gl_XGETCWD
 gl_XSTRTOL
@@ -149,7 +152,7 @@ AC_CHECK_MEMBERS([struct stat.st_spare1, struct stat.st_atim.tv_nsec, struct sta
                  [
 #include <sys/types.h>
 #include <sys/stat.h>])
+
 # Save and restore LIBS so e.g., -lrt, isn't added to it.  Otherwise, *all*
 # programs in the package would end up linked with that potentially-shared
 # library, inducing unnecessary run-time overhead.
@@ -170,6 +173,7 @@ AC_CHECK_FUNCS(fsync lstat mkfifo readlink strerror symlink setlocale utimes)
 AC_CHECK_DECLS([getgrgid],,, [#include <grp.h>])
 AC_CHECK_DECLS([getpwuid],,, [#include <pwd.h>])
 AC_CHECK_DECLS([valloc])
+AC_CHECK_DECLS([time],,, [#include <time.h>])
 
 # Set LIB_SETSOCKOPT to -lnsl -lsocket if necessary.
 tar_save_LIBS=$LIBS
@@ -273,15 +277,13 @@ AM_GNU_GETTEXT([external], [need-ngettext])
 AM_GNU_GETTEXT_VERSION(0.12.1)
 
 # Iconv
+AM_ICONV
 AC_CHECK_HEADERS(iconv.h,
                  [AC_CHECK_TYPE(iconv_t,:,
                                 AC_DEFINE(iconv_t, int,
                                           [Conversion descriptor type]),
                                 [#include <iconv.h>])])
 
-AC_CHECK_LIB(iconv, iconv)
-
-
 AC_OUTPUT([Makefile\
            doc/Makefile\
            lib/Makefile\
This page took 0.026704 seconds and 4 git commands to generate.