X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=configure.ac;h=cba275441f581776b4a845be0983ba1f133e8bf8;hb=ca99923dcd11e437b9654598cbaa67ed44243842;hp=852d40288e7c41883769eb6274637cb6ee8a0bfa;hpb=86f7407ffe3ceca7743e05356cca3340e8a60c81;p=chaz%2Ftar diff --git a/configure.ac b/configure.ac index 852d402..cba2754 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. -AC_INIT([GNU tar], [1.13.26], [bug-tar@gnu.org]) +AC_INIT([GNU tar], [1.13.90], [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,8 @@ gl_FUNC_MKTIME gl_FUNC_RMDIR gl_FUNC_STRTOL gl_FUNC_STRTOUL +gl_FUNC_STRTOIMAX +gl_FUNC_STRTOUMAX gl_GETDATE gl_GETOPT gl_HASH @@ -128,19 +130,20 @@ gl_SAFE_WRITE gl_SAVE_CWD gl_SAVEDIR gl_STRCASE +gl_TIME_R gl_XALLOC gl_XGETCWD gl_XSTRTOL jm_FUNC_FTRUNCATE jm_FUNC_GLIBC_UNLOCKED_IO +jm_FUNC_CHOWN jm_FUNC_LCHOWN jm_FUNC_MALLOC jm_FUNC_REALLOC jm_FUNC_UTIME jm_XSTRTOUMAX - # 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. @@ -149,8 +152,10 @@ jm_XSTRTOUMAX # Solaris 7 prefers the library name -lrt to the obsolescent name -lposix4. tar_save_LIBS=$LIBS LIB_CLOCK_GETTIME= - AC_SEARCH_LIBS(clock_gettime, [rt posix4], - [LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime]) + AC_SEARCH_LIBS(clock_gettime, [rt posix4]) + case "$ac_cv_search_clock_gettime" in + -l*) LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime;; + esac AC_SUBST(LIB_CLOCK_GETTIME) AC_CHECK_FUNCS(clock_gettime) LIBS=$tar_save_LIBS