]> Dogcows Code - chaz/tar/blobdiff - configure.ac
Added gl_FUNC_STRTOULL
[chaz/tar] / configure.ac
index c60140bb729735d457a901e7c2ad87835f3f2877..d4b8bda41358657d4b21d522d5e359bb81ffed4c 100644 (file)
@@ -1,7 +1,7 @@
 # Configure template for GNU tar.
 
 # Copyright (C) 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
-# 2002, 2003 Free Software Foundation, Inc.
+# 2002, 2003, 2004 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 # 02111-1307, USA.
 
-AC_INIT([GNU tar], [1.13.92], [bug-tar@gnu.org])
+AC_INIT([GNU tar], [1.13.93], [bug-tar@gnu.org])
 AC_CONFIG_SRCDIR([src/tar.c])
 AC_CONFIG_AUX_DIR([config])
 AC_CONFIG_HEADERS([config.h:config.hin])
@@ -114,6 +114,7 @@ gl_FUNC_MKTIME
 gl_FUNC_RMDIR
 gl_FUNC_STRTOL
 gl_FUNC_STRTOUL
+gl_FUNC_STRTOULL
 gl_FUNC_STRTOIMAX
 gl_FUNC_STRTOUMAX
 gl_GETDATE
@@ -220,7 +221,7 @@ if test -z "$DEFAULT_ARCHIVE_FORMAT"; then
   DEFAULT_ARCHIVE_FORMAT="GNU"
 fi
 case $DEFAULT_ARCHIVE_FORMAT in
-  V7|OLDGNU|POSIX|GNU) ;;
+  V7|OLDGNU|USTAR|POSIX|GNU) ;;
   *) AC_MSG_ERROR(Invalid format name);;
 esac
 AC_DEFINE_UNQUOTED(DEFAULT_ARCHIVE_FORMAT, ${DEFAULT_ARCHIVE_FORMAT}_FORMAT,
@@ -272,6 +273,14 @@ AC_MSG_RESULT($DEFAULT_BLOCKING)
 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_OUTPUT([Makefile\
            doc/Makefile\
            lib/Makefile\
This page took 0.021609 seconds and 4 git commands to generate.