diff --git a/Makefile.in b/Makefile.in index 23c8efdf..cf873e09 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -70,6 +70,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -162,10 +164,9 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ + { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } am__installdirs = "$(DESTDIR)$(pkgconfigdir)" DATA = $(pkgconfig_DATA) @@ -212,8 +213,8 @@ distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ - find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -rf "$(distdir)" \ + find "$(distdir)" -type d ! -perm -700 -exec chmod u+rwx {} ';' \ + ; rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) @@ -243,14 +244,16 @@ am__relativize = \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 -GZIP_ENV = --best +GZIP_ENV = -9 DIST_TARGETS = dist-bzip2 dist-gzip # Exists only to be overridden by the user if desired. AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' -distcleancheck_listfiles = find . -type f -print +distcleancheck_listfiles = \ + find . \( -type f -a \! \ + \( -name .nfs* -o -name .smb* -o -name .__afs* \) \) -print ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ @@ -370,8 +373,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -623,7 +628,7 @@ distdir: $(BUILT_SOURCES) distdir-am: $(DISTFILES) $(am__remove_distdir) - test -d "$(distdir)" || mkdir "$(distdir)" + $(AM_V_at)$(MKDIR_P) "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -733,7 +738,7 @@ dist dist-all: distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ + eval GZIP= gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ @@ -743,7 +748,7 @@ distcheck: dist *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ + eval GZIP= gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ *.tar.zst*) \ @@ -846,9 +851,9 @@ mostlyclean-generic: clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -948,3 +953,10 @@ uninstall-am: uninstall-pkgconfigDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/aclocal.m4 b/aclocal.m4 index ec19ad09..f3b91932 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.16.5 -*- Autoconf -*- +# generated automatically by aclocal 1.17 -*- Autoconf -*- -# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# Copyright (C) 1996-2024 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -20,7 +20,7 @@ You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) -# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# Copyright (C) 2002-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -32,10 +32,10 @@ To do so, use the procedure documented by the package, typically 'autoreconf'.]) # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.16' +[am__api_version='1.17' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.16.5], [], +m4_if([$1], [1.17], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -51,14 +51,14 @@ m4_define([_AM_AUTOCONF_VERSION], []) # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.16.5])dnl +[AM_AUTOMAKE_VERSION([1.17])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Figure out how to run the assembler. -*- Autoconf -*- -# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -78,7 +78,7 @@ _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -130,7 +130,7 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd` # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2021 Free Software Foundation, Inc. +# Copyright (C) 1997-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -161,7 +161,7 @@ AC_CONFIG_COMMANDS_PRE( Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# Copyright (C) 1999-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -293,7 +293,7 @@ AC_CACHE_CHECK([dependency style of $depcc], # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: + # When given -MP, icc 7.0 and 7.1 complain thus: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported @@ -352,7 +352,7 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# Copyright (C) 1999-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -420,7 +420,7 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# Copyright (C) 1996-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -554,7 +554,7 @@ if test -z "$CSCOPE"; then fi AC_SUBST([CSCOPE]) -AC_REQUIRE([AM_SILENT_RULES])dnl +AC_REQUIRE([_AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. @@ -562,47 +562,9 @@ AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl -# POSIX will say in a future version that running "rm -f" with no argument -# is OK; and we want to be able to make that assumption in our Makefile -# recipes. So use an aggressive probe to check that the usage we want is -# actually supported "in the wild" to an acceptable degree. -# See automake bug#10828. -# To make any issue more visible, cause the running configure to be aborted -# by default if the 'rm' program in use doesn't match our expectations; the -# user can still override this though. -if rm -f && rm -fr && rm -rf; then : OK; else - cat >&2 <<'END' -Oops! +AC_REQUIRE([_AM_PROG_RM_F]) +AC_REQUIRE([_AM_PROG_XARGS_N]) -Your 'rm' program seems unable to run without file operands specified -on the command line, even when the '-f' option is present. This is contrary -to the behaviour of most rm programs out there, and not conforming with -the upcoming POSIX standard: - -Please tell bug-automake@gnu.org about your system, including the value -of your $PATH and any error possibly output before this message. This -can help us improve future automake versions. - -END - if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then - echo 'Configuration will proceed anyway, since you have set the' >&2 - echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 - echo >&2 - else - cat >&2 <<'END' -Aborting the configuration process, to ensure you take notice of the issue. - -You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . - -If you want to complete the configuration process using your problematic -'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM -to "yes", and re-run configure. - -END - AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) - fi -fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. @@ -635,7 +597,7 @@ for _am_header in $config_headers :; do done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -656,7 +618,7 @@ if test x"${install_sh+set}" != xset; then fi AC_SUBST([install_sh])]) -# Copyright (C) 2003-2021 Free Software Foundation, Inc. +# Copyright (C) 2003-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -678,7 +640,7 @@ AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering -# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# Copyright (C) 1996-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -713,7 +675,7 @@ AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -756,7 +718,7 @@ AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2021 Free Software Foundation, Inc. +# Copyright (C) 1997-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -790,7 +752,7 @@ fi # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -819,7 +781,7 @@ AC_DEFUN([_AM_SET_OPTIONS], AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# Copyright (C) 1999-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -866,7 +828,23 @@ AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) -# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# Copyright (C) 2022-2024 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_RM_F +# --------------- +# Check whether 'rm -f' without any arguments works. +# https://bugs.gnu.org/10828 +AC_DEFUN([_AM_PROG_RM_F], +[am__rm_f_notfound= +AS_IF([(rm -f && rm -fr && rm -rf) 2>/dev/null], [], [am__rm_f_notfound='""']) +AC_SUBST(am__rm_f_notfound) +]) + +# Copyright (C) 2001-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -885,16 +863,169 @@ AC_DEFUN([AM_RUN_LOG], # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# Copyright (C) 1996-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. +# _AM_SLEEP_FRACTIONAL_SECONDS +# ---------------------------- +AC_DEFUN([_AM_SLEEP_FRACTIONAL_SECONDS], [dnl +AC_CACHE_CHECK([whether sleep supports fractional seconds], + am_cv_sleep_fractional_seconds, [dnl +AS_IF([sleep 0.001 2>/dev/null], [am_cv_sleep_fractional_seconds=yes], + [am_cv_sleep_fractional_seconds=no]) +])]) + +# _AM_FILESYSTEM_TIMESTAMP_RESOLUTION +# ----------------------------------- +# Determine the filesystem's resolution for file modification +# timestamps. The coarsest we know of is FAT, with a resolution +# of only two seconds, even with the most recent "exFAT" extensions. +# The finest (e.g. ext4 with large inodes, XFS, ZFS) is one +# nanosecond, matching clock_gettime. However, it is probably not +# possible to delay execution of a shell script for less than one +# millisecond, due to process creation overhead and scheduling +# granularity, so we don't check for anything finer than that. (See below.) +AC_DEFUN([_AM_FILESYSTEM_TIMESTAMP_RESOLUTION], [dnl +AC_REQUIRE([_AM_SLEEP_FRACTIONAL_SECONDS]) +AC_CACHE_CHECK([filesystem timestamp resolution], + am_cv_filesystem_timestamp_resolution, [dnl +# Default to the worst case. +am_cv_filesystem_timestamp_resolution=2 + +# Only try to go finer than 1 sec if sleep can do it. +# Don't try 1 sec, because if 0.01 sec and 0.1 sec don't work, +# - 1 sec is not much of a win compared to 2 sec, and +# - it takes 2 seconds to perform the test whether 1 sec works. +# +# Instead, just use the default 2s on platforms that have 1s resolution, +# accept the extra 1s delay when using $sleep in the Automake tests, in +# exchange for not incurring the 2s delay for running the test for all +# packages. +# +am_try_resolutions= +if test "$am_cv_sleep_fractional_seconds" = yes; then + # Even a millisecond often causes a bunch of false positives, + # so just try a hundredth of a second. The time saved between .001 and + # .01 is not terribly consequential. + am_try_resolutions="0.01 0.1 $am_try_resolutions" +fi + +# In order to catch current-generation FAT out, we must *modify* files +# that already exist; the *creation* timestamp is finer. Use names +# that make ls -t sort them differently when they have equal +# timestamps than when they have distinct timestamps, keeping +# in mind that ls -t prints the *newest* file first. +rm -f conftest.ts? +: > conftest.ts1 +: > conftest.ts2 +: > conftest.ts3 + +# Make sure ls -t actually works. Do 'set' in a subshell so we don't +# clobber the current shell's arguments. (Outer-level square brackets +# are removed by m4; they're present so that m4 does not expand +# ; be careful, easy to get confused.) +if ( + set X `[ls -t conftest.ts[12]]` && + { + test "$[]*" != "X conftest.ts1 conftest.ts2" || + test "$[]*" != "X conftest.ts2 conftest.ts1"; + } +); then :; else + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + _AS_ECHO_UNQUOTED( + ["Bad output from ls -t: \"`[ls -t conftest.ts[12]]`\""], + [AS_MESSAGE_LOG_FD]) + AC_MSG_FAILURE([ls -t produces unexpected output. +Make sure there is not a broken ls alias in your environment.]) +fi + +for am_try_res in $am_try_resolutions; do + # Any one fine-grained sleep might happen to cross the boundary + # between two values of a coarser actual resolution, but if we do + # two fine-grained sleeps in a row, at least one of them will fall + # entirely within a coarse interval. + echo alpha > conftest.ts1 + sleep $am_try_res + echo beta > conftest.ts2 + sleep $am_try_res + echo gamma > conftest.ts3 + + # We assume that 'ls -t' will make use of high-resolution + # timestamps if the operating system supports them at all. + if (set X `ls -t conftest.ts?` && + test "$[]2" = conftest.ts3 && + test "$[]3" = conftest.ts2 && + test "$[]4" = conftest.ts1); then + # + # Ok, ls -t worked. If we're at a resolution of 1 second, we're done, + # because we don't need to test make. + make_ok=true + if test $am_try_res != 1; then + # But if we've succeeded so far with a subsecond resolution, we + # have one more thing to check: make. It can happen that + # everything else supports the subsecond mtimes, but make doesn't; + # notably on macOS, which ships make 3.81 from 2006 (the last one + # released under GPLv2). https://bugs.gnu.org/68808 + # + # We test $MAKE if it is defined in the environment, else "make". + # It might get overridden later, but our hope is that in practice + # it does not matter: it is the system "make" which is (by far) + # the most likely to be broken, whereas if the user overrides it, + # probably they did so with a better, or at least not worse, make. + # https://lists.gnu.org/archive/html/automake/2024-06/msg00051.html + # + # Create a Makefile (real tab character here): + rm -f conftest.mk + echo 'conftest.ts1: conftest.ts2' >conftest.mk + echo ' touch conftest.ts2' >>conftest.mk + # + # Now, running + # touch conftest.ts1; touch conftest.ts2; make + # should touch ts1 because ts2 is newer. This could happen by luck, + # but most often, it will fail if make's support is insufficient. So + # test for several consecutive successes. + # + # (We reuse conftest.ts[12] because we still want to modify existing + # files, not create new ones, per above.) + n=0 + make=${MAKE-make} + until test $n -eq 3; do + echo one > conftest.ts1 + sleep $am_try_res + echo two > conftest.ts2 # ts2 should now be newer than ts1 + if $make -f conftest.mk | grep 'up to date' >/dev/null; then + make_ok=false + break # out of $n loop + fi + n=`expr $n + 1` + done + fi + # + if $make_ok; then + # Everything we know to check worked out, so call this resolution good. + am_cv_filesystem_timestamp_resolution=$am_try_res + break # out of $am_try_res loop + fi + # Otherwise, we'll go on to check the next resolution. + fi +done +rm -f conftest.ts? +# (end _am_filesystem_timestamp_resolution) +])]) + # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) +[AC_REQUIRE([_AM_FILESYSTEM_TIMESTAMP_RESOLUTION]) +# This check should not be cached, as it may vary across builds of +# different projects. +AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' @@ -913,49 +1044,40 @@ esac # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). -if ( - am_has_slept=no - for am_try in 1 2; do - echo "timestamp, slept: $am_has_slept" > conftest.file - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$[*]" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - if test "$[*]" != "X $srcdir/configure conftest.file" \ - && test "$[*]" != "X conftest.file $srcdir/configure"; then +am_build_env_is_sane=no +am_has_slept=no +rm -f conftest.file +for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[]*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + test "$[]2" = conftest.file + ); then + am_build_env_is_sane=yes + break + fi + # Just in case. + sleep "$am_cv_filesystem_timestamp_resolution" + am_has_slept=yes +done - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken - alias in your environment]) - fi - if test "$[2]" = conftest.file || test $am_try -eq 2; then - break - fi - # Just in case. - sleep 1 - am_has_slept=yes - done - test "$[2]" = conftest.file - ) -then - # Ok. - : -else - AC_MSG_ERROR([newly created file is older than distributed files! +AC_MSG_RESULT([$am_build_env_is_sane]) +if test "$am_build_env_is_sane" = no; then + AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi -AC_MSG_RESULT([yes]) + # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= -if grep 'slept: no' conftest.file >/dev/null 2>&1; then - ( sleep 1 ) & +AS_IF([test -e conftest.file || grep 'slept: no' conftest.file >/dev/null 2>&1],, [dnl + ( sleep "$am_cv_filesystem_timestamp_resolution" ) & am_sleep_pid=$! -fi +]) AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then @@ -966,18 +1088,18 @@ AC_CONFIG_COMMANDS_PRE( rm -f conftest.file ]) -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# AM_SILENT_RULES([DEFAULT]) -# -------------------------- -# Enable less verbose build rules; with the default set to DEFAULT -# ("yes" being less verbose, "no" or empty being verbose). -AC_DEFUN([AM_SILENT_RULES], -[AC_ARG_ENABLE([silent-rules], [dnl +# _AM_SILENT_RULES +# ---------------- +# Enable less verbose build rules support. +AC_DEFUN([_AM_SILENT_RULES], +[AM_DEFAULT_VERBOSITY=1 +AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) @@ -985,11 +1107,6 @@ AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) -case $enable_silent_rules in @%:@ ((( - yes) AM_DEFAULT_VERBOSITY=0;; - no) AM_DEFAULT_VERBOSITY=1;; - *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; -esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. @@ -1008,14 +1125,6 @@ am__doit: else am_cv_make_support_nested_variables=no fi]) -if test $am_cv_make_support_nested_variables = yes; then - dnl Using '$V' instead of '$(V)' breaks IRIX make. - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl @@ -1024,9 +1133,33 @@ AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +dnl Delay evaluation of AM_DEFAULT_VERBOSITY to the end to allow multiple calls +dnl to AM_SILENT_RULES to change the default value. +AC_CONFIG_COMMANDS_PRE([dnl +case $enable_silent_rules in @%:@ ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; +esac +if test $am_cv_make_support_nested_variables = yes; then + dnl Using '$V' instead of '$(V)' breaks IRIX make. + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +])dnl ]) -# Copyright (C) 2001-2021 Free Software Foundation, Inc. +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Set the default verbosity level to DEFAULT ("yes" being less verbose, "no" or +# empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_REQUIRE([_AM_SILENT_RULES]) +AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1])]) + +# Copyright (C) 2001-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1054,7 +1187,7 @@ fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006-2021 Free Software Foundation, Inc. +# Copyright (C) 2006-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1073,7 +1206,7 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2021 Free Software Foundation, Inc. +# Copyright (C) 2004-2024 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -1119,15 +1252,19 @@ m4_if([$1], [v7], am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) - if test $am_uid -le $am_max_uid; then - AC_MSG_RESULT([yes]) + if test x$am_uid = xunknown; then + AC_MSG_WARN([ancient id detected; assuming current UID is ok, but dist-ustar might not work]) + elif test $am_uid -le $am_max_uid; then + AC_MSG_RESULT([yes]) else - AC_MSG_RESULT([no]) - _am_tools=none + AC_MSG_RESULT([no]) + _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) - if test $am_gid -le $am_max_gid; then - AC_MSG_RESULT([yes]) + if test x$gm_gid = xunknown; then + AC_MSG_WARN([ancient id detected; assuming current GID is ok, but dist-ustar might not work]) + elif test $am_gid -le $am_max_gid; then + AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none @@ -1204,6 +1341,26 @@ AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR +# Copyright (C) 2022-2024 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_XARGS_N +# ---------------- +# Check whether 'xargs -n' works. It should work everywhere, so the fallback +# is not optimized at all as we never expect to use it. +AC_DEFUN([_AM_PROG_XARGS_N], +[AC_CACHE_CHECK([xargs -n works], am_cv_xargs_n_works, [dnl +AS_IF([test "`echo 1 2 3 | xargs -n2 echo`" = "1 2 +3"], [am_cv_xargs_n_works=yes], [am_cv_xargs_n_works=no])]) +AS_IF([test "$am_cv_xargs_n_works" = yes], [am__xargs_n='xargs -n'], [dnl + am__xargs_n='am__xargs_n () { shift; sed "s/ /\\n/g" | while read am__xargs_n_arg; do "$@" "$am__xargs_n_arg"; done; }' +])dnl +AC_SUBST(am__xargs_n) +]) + m4_include([m4/ax_add_fortify_source.m4]) m4_include([m4/ax_check_catchable_abrt.m4]) m4_include([m4/ax_check_catchable_segv.m4]) diff --git a/build-aux/compile b/build-aux/compile index df363c8f..49b3d05f 100755 --- a/build-aux/compile +++ b/build-aux/compile @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2018-03-07.03; # UTC +scriptversion=2024-06-19.01; # UTC -# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# Copyright (C) 1999-2024 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -143,7 +143,7 @@ func_cl_wrapper () # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in - *.o | *.[oO][bB][jJ]) + *.o | *.lo | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift @@ -248,14 +248,17 @@ If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . +GNU Automake home page: . +General help using GNU software: . EOF exit $? ;; -v | --v*) - echo "compile $scriptversion" + echo "compile (GNU Automake) $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ + clang-cl | *[/\\]clang-cl | clang-cl.exe | *[/\\]clang-cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; diff --git a/build-aux/config.sub b/build-aux/config.sub index 2c6a07ab..4aaae46f 100644 --- a/build-aux/config.sub +++ b/build-aux/config.sub @@ -2,9 +2,9 @@ # Configuration validation subroutine script. # Copyright 1992-2024 Free Software Foundation, Inc. -# shellcheck disable=SC2006,SC2268 # see below for rationale +# shellcheck disable=SC2006,SC2268,SC2162 # see below for rationale -timestamp='2024-01-01' +timestamp='2024-05-27' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -120,7 +120,6 @@ case $# in esac # Split fields of configuration type -# shellcheck disable=SC2162 saved_IFS=$IFS IFS="-" read field1 field2 field3 field4 <&2 exit 1 ;; - kfreebsd*-gnu*- | kopensolaris*-gnu*-) + kfreebsd*-gnu*- | knetbsd*-gnu*- | netbsd*-gnu*- | kopensolaris*-gnu*-) ;; vxworks-simlinux- | vxworks-simwindows- | vxworks-spe-) ;; @@ -1864,6 +2245,8 @@ case $kernel-$os-$obj in ;; os2-emx-) ;; + rtmk-nova-) + ;; *-eabi*- | *-gnueabi*-) ;; none--*) @@ -1890,7 +2273,7 @@ case $vendor in *-riscix*) vendor=acorn ;; - *-sunos*) + *-sunos* | *-solaris*) vendor=sun ;; *-cnk* | *-aix*) diff --git a/build-aux/depcomp b/build-aux/depcomp index 715e3431..1f0aa972 100755 --- a/build-aux/depcomp +++ b/build-aux/depcomp @@ -1,9 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2018-03-07.03; # UTC +scriptversion=2024-06-19.01; # UTC -# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# Copyright (C) 1999-2024 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 @@ -47,11 +47,13 @@ Environment variables: libtool Whether libtool is used (yes/no). Report bugs to . +GNU Automake home page: . +General help using GNU software: . EOF exit $? ;; -v | --v*) - echo "depcomp $scriptversion" + echo "depcomp (GNU Automake) $scriptversion" exit $? ;; esac @@ -113,7 +115,6 @@ nl=' # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz -digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then @@ -128,7 +129,7 @@ tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" -# Avoid interferences from the environment. +# Avoid interference from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We @@ -198,8 +199,8 @@ gcc3) ;; gcc) -## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. -## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. +## Note that this doesn't just cater to obsolete pre-3.x GCC compilers. +## but also to in-use compilers like IBM xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: diff --git a/build-aux/install-sh b/build-aux/install-sh index ec298b53..b1d7a6f6 100755 --- a/build-aux/install-sh +++ b/build-aux/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2020-11-14.01; # UTC +scriptversion=2024-06-19.01; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -124,9 +124,9 @@ it's up to you to specify -f if you want it. If -S is not specified, no backups are attempted. -Email bug reports to bug-automake@gnu.org. -Automake home page: https://www.gnu.org/software/automake/ -" +Report bugs to . +GNU Automake home page: . +General help using GNU software: ." while test $# -ne 0; do case $1 in @@ -170,7 +170,7 @@ while test $# -ne 0; do -T) is_target_a_directory=never;; - --version) echo "$0 $scriptversion"; exit $?;; + --version) echo "$0 (GNU Automake) $scriptversion"; exit $?;; --) shift break;; @@ -345,7 +345,7 @@ do ' 0 # Because "mkdir -p" follows existing symlinks and we likely work - # directly in world-writeable /tmp, make sure that the '$tmpdir' + # directly in world-writable /tmp, make sure that the '$tmpdir' # directory is successfully created first before we actually test # 'mkdir -p'. if (umask $mkdir_umask && @@ -353,7 +353,7 @@ do exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. + # Check for POSIX incompatibility with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. diff --git a/build-aux/missing b/build-aux/missing index 1fe1611f..7e7d78ec 100755 --- a/build-aux/missing +++ b/build-aux/missing @@ -1,9 +1,11 @@ #! /bin/sh -# Common wrapper for a few potentially missing GNU programs. +# Common wrapper for a few potentially missing GNU and other programs. -scriptversion=2018-03-07.03; # UTC +scriptversion=2024-06-07.14; # UTC -# Copyright (C) 1996-2021 Free Software Foundation, Inc. +# shellcheck disable=SC2006,SC2268 # we must support pre-POSIX shells + +# Copyright (C) 1996-2024 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -54,18 +56,20 @@ Options: -v, --version output version information and exit Supported PROGRAM values: - aclocal autoconf autoheader autom4te automake makeinfo - bison yacc flex lex help2man +aclocal autoconf autogen autoheader autom4te automake autoreconf +bison flex help2man lex makeinfo perl yacc Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. -Send bug reports to ." +Report bugs to . +GNU Automake home page: . +General help using GNU software: ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) - echo "missing $scriptversion (GNU Automake)" + echo "missing (GNU Automake) $scriptversion" exit $? ;; @@ -108,7 +112,7 @@ gnu_software_URL=https://www.gnu.org/software program_details () { case $1 in - aclocal|automake) + aclocal|automake|autoreconf) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" @@ -123,6 +127,9 @@ program_details () echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; + *) + : + ;; esac } @@ -137,48 +144,55 @@ give_advice () printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" + autoheader_deps="'acconfig.h'" + automake_deps="'Makefile.am'" + aclocal_deps="'acinclude.m4'" case $normalized_program in + aclocal*) + echo "You should only need it if you modified $aclocal_deps or" + echo "$configure_deps." + ;; autoconf*) - echo "You should only need it if you modified 'configure.ac'," - echo "or m4 files included by it." - program_details 'autoconf' + echo "You should only need it if you modified $configure_deps." + ;; + autogen*) + echo "You should only need it if you modified a '.def' or '.tpl' file." + echo "You may want to install the GNU AutoGen package:" + echo "<$gnu_software_URL/autogen/>" ;; autoheader*) - echo "You should only need it if you modified 'acconfig.h' or" + echo "You should only need it if you modified $autoheader_deps or" echo "$configure_deps." - program_details 'autoheader' ;; automake*) - echo "You should only need it if you modified 'Makefile.am' or" + echo "You should only need it if you modified $automake_deps or" echo "$configure_deps." - program_details 'automake' ;; - aclocal*) - echo "You should only need it if you modified 'acinclude.m4' or" - echo "$configure_deps." - program_details 'aclocal' - ;; - autom4te*) + autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." - program_details 'autom4te' + ;; + autoreconf*) + echo "You should only need it if you modified $aclocal_deps or" + echo "$automake_deps or $autoheader_deps or $automake_deps or" + echo "$configure_deps." ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; - lex*|flex*) - echo "You should only need it if you modified a '.l' file." - echo "You may want to install the Fast Lexical Analyzer package:" - echo "<$flex_URL>" - ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; + lex*|flex*) + echo "You should only need it if you modified a '.l' file." + echo "You may want to install the Fast Lexical Analyzer package:" + echo "<$flex_URL>" + ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." @@ -189,6 +203,12 @@ give_advice () echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; + perl*) + echo "You should only need it to run GNU Autoconf, GNU Automake, " + echo " assorted other tools, or if you modified a Perl source file." + echo "You may want to install the Perl 5 language interpreter:" + echo "<$perl_URL>" + ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" @@ -197,6 +217,7 @@ give_advice () echo "case some other package contains this missing '$1' program." ;; esac + program_details "$normalized_program" } give_advice "$1" | sed -e '1s/^/WARNING: /' \ diff --git a/build-aux/test-driver b/build-aux/test-driver index be73b80a..dc38f623 100755 --- a/build-aux/test-driver +++ b/build-aux/test-driver @@ -1,9 +1,9 @@ #! /bin/sh # test-driver - basic testsuite driver script. -scriptversion=2018-03-07.03; # UTC +scriptversion=2024-06-19.01; # UTC -# Copyright (C) 2011-2021 Free Software Foundation, Inc. +# Copyright (C) 2011-2024 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 @@ -44,11 +44,16 @@ print_usage () Usage: test-driver --test-name NAME --log-file PATH --trs-file PATH [--expect-failure {yes|no}] [--color-tests {yes|no}] + [--collect-skipped-logs {yes|no}] [--enable-hard-errors {yes|no}] [--] TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS] The '--test-name', '--log-file' and '--trs-file' options are mandatory. See the GNU Automake documentation for information. + +Report bugs to . +GNU Automake home page: . +General help using GNU software: . END } @@ -57,15 +62,17 @@ log_file= # Where to save the output of the test script. trs_file= # Where to save the metadata of the test run. expect_failure=no color_tests=no +collect_skipped_logs=yes enable_hard_errors=yes while test $# -gt 0; do case $1 in --help) print_usage; exit $?;; - --version) echo "test-driver $scriptversion"; exit $?;; + --version) echo "test-driver (GNU Automake) $scriptversion"; exit $?;; --test-name) test_name=$2; shift;; --log-file) log_file=$2; shift;; --trs-file) trs_file=$2; shift;; --color-tests) color_tests=$2; shift;; + --collect-skipped-logs) collect_skipped_logs=$2; shift;; --expect-failure) expect_failure=$2; shift;; --enable-hard-errors) enable_hard_errors=$2; shift;; --) shift; break;; @@ -121,7 +128,7 @@ fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; - 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; + 77:*) col=$blu res=SKIP recheck=no gcopy=$collect_skipped_logs;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; diff --git a/builds/Makefile.in b/builds/Makefile.in index b4896ab9..2450e50e 100644 --- a/builds/Makefile.in +++ b/builds/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -69,6 +69,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -249,8 +251,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -486,8 +490,8 @@ mostlyclean-generic: clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -578,3 +582,10 @@ uninstall-am: # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/configure b/configure index e1b94d69..8e8e75b9 100755 --- a/configure +++ b/configure @@ -762,6 +762,8 @@ AMDEP_TRUE MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE +am__xargs_n +am__rm_f_notfound AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V @@ -2926,7 +2928,7 @@ test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- -am__api_version='1.16' +am__api_version='1.17' # Find a good install program. We prefer a C program (faster), @@ -3028,6 +3030,165 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether sleep supports fractional seconds" >&5 +printf %s "checking whether sleep supports fractional seconds... " >&6; } +if test ${am_cv_sleep_fractional_seconds+y} +then : + printf %s "(cached) " >&6 +else case e in #( + e) if sleep 0.001 2>/dev/null +then : + am_cv_sleep_fractional_seconds=yes +else case e in #( + e) am_cv_sleep_fractional_seconds=no ;; +esac +fi + ;; +esac +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_sleep_fractional_seconds" >&5 +printf "%s\n" "$am_cv_sleep_fractional_seconds" >&6; } + +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking filesystem timestamp resolution" >&5 +printf %s "checking filesystem timestamp resolution... " >&6; } +if test ${am_cv_filesystem_timestamp_resolution+y} +then : + printf %s "(cached) " >&6 +else case e in #( + e) # Default to the worst case. +am_cv_filesystem_timestamp_resolution=2 + +# Only try to go finer than 1 sec if sleep can do it. +# Don't try 1 sec, because if 0.01 sec and 0.1 sec don't work, +# - 1 sec is not much of a win compared to 2 sec, and +# - it takes 2 seconds to perform the test whether 1 sec works. +# +# Instead, just use the default 2s on platforms that have 1s resolution, +# accept the extra 1s delay when using $sleep in the Automake tests, in +# exchange for not incurring the 2s delay for running the test for all +# packages. +# +am_try_resolutions= +if test "$am_cv_sleep_fractional_seconds" = yes; then + # Even a millisecond often causes a bunch of false positives, + # so just try a hundredth of a second. The time saved between .001 and + # .01 is not terribly consequential. + am_try_resolutions="0.01 0.1 $am_try_resolutions" +fi + +# In order to catch current-generation FAT out, we must *modify* files +# that already exist; the *creation* timestamp is finer. Use names +# that make ls -t sort them differently when they have equal +# timestamps than when they have distinct timestamps, keeping +# in mind that ls -t prints the *newest* file first. +rm -f conftest.ts? +: > conftest.ts1 +: > conftest.ts2 +: > conftest.ts3 + +# Make sure ls -t actually works. Do 'set' in a subshell so we don't +# clobber the current shell's arguments. (Outer-level square brackets +# are removed by m4; they're present so that m4 does not expand +# ; be careful, easy to get confused.) +if ( + set X `ls -t conftest.ts[12]` && + { + test "$*" != "X conftest.ts1 conftest.ts2" || + test "$*" != "X conftest.ts2 conftest.ts1"; + } +); then :; else + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + printf "%s\n" ""Bad output from ls -t: \"`ls -t conftest.ts[12]`\""" >&5 + { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} +as_fn_error $? "ls -t produces unexpected output. +Make sure there is not a broken ls alias in your environment. +See 'config.log' for more details" "$LINENO" 5; } +fi + +for am_try_res in $am_try_resolutions; do + # Any one fine-grained sleep might happen to cross the boundary + # between two values of a coarser actual resolution, but if we do + # two fine-grained sleeps in a row, at least one of them will fall + # entirely within a coarse interval. + echo alpha > conftest.ts1 + sleep $am_try_res + echo beta > conftest.ts2 + sleep $am_try_res + echo gamma > conftest.ts3 + + # We assume that 'ls -t' will make use of high-resolution + # timestamps if the operating system supports them at all. + if (set X `ls -t conftest.ts?` && + test "$2" = conftest.ts3 && + test "$3" = conftest.ts2 && + test "$4" = conftest.ts1); then + # + # Ok, ls -t worked. If we're at a resolution of 1 second, we're done, + # because we don't need to test make. + make_ok=true + if test $am_try_res != 1; then + # But if we've succeeded so far with a subsecond resolution, we + # have one more thing to check: make. It can happen that + # everything else supports the subsecond mtimes, but make doesn't; + # notably on macOS, which ships make 3.81 from 2006 (the last one + # released under GPLv2). https://bugs.gnu.org/68808 + # + # We test $MAKE if it is defined in the environment, else "make". + # It might get overridden later, but our hope is that in practice + # it does not matter: it is the system "make" which is (by far) + # the most likely to be broken, whereas if the user overrides it, + # probably they did so with a better, or at least not worse, make. + # https://lists.gnu.org/archive/html/automake/2024-06/msg00051.html + # + # Create a Makefile (real tab character here): + rm -f conftest.mk + echo 'conftest.ts1: conftest.ts2' >conftest.mk + echo ' touch conftest.ts2' >>conftest.mk + # + # Now, running + # touch conftest.ts1; touch conftest.ts2; make + # should touch ts1 because ts2 is newer. This could happen by luck, + # but most often, it will fail if make's support is insufficient. So + # test for several consecutive successes. + # + # (We reuse conftest.ts[12] because we still want to modify existing + # files, not create new ones, per above.) + n=0 + make=${MAKE-make} + until test $n -eq 3; do + echo one > conftest.ts1 + sleep $am_try_res + echo two > conftest.ts2 # ts2 should now be newer than ts1 + if $make -f conftest.mk | grep 'up to date' >/dev/null; then + make_ok=false + break # out of $n loop + fi + n=`expr $n + 1` + done + fi + # + if $make_ok; then + # Everything we know to check worked out, so call this resolution good. + am_cv_filesystem_timestamp_resolution=$am_try_res + break # out of $am_try_res loop + fi + # Otherwise, we'll go on to check the next resolution. + fi +done +rm -f conftest.ts? +# (end _am_filesystem_timestamp_resolution) + ;; +esac +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_filesystem_timestamp_resolution" >&5 +printf "%s\n" "$am_cv_filesystem_timestamp_resolution" >&6; } + +# This check should not be cached, as it may vary across builds of +# different projects. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 printf %s "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory @@ -3048,49 +3209,45 @@ esac # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). -if ( - am_has_slept=no - for am_try in 1 2; do - echo "timestamp, slept: $am_has_slept" > conftest.file - set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t "$srcdir/configure" conftest.file` - fi - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then +am_build_env_is_sane=no +am_has_slept=no +rm -f conftest.file +for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + test "$2" = conftest.file + ); then + am_build_env_is_sane=yes + break + fi + # Just in case. + sleep "$am_cv_filesystem_timestamp_resolution" + am_has_slept=yes +done - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - as_fn_error $? "ls -t appears to fail. Make sure there is not a broken - alias in your environment" "$LINENO" 5 - fi - if test "$2" = conftest.file || test $am_try -eq 2; then - break - fi - # Just in case. - sleep 1 - am_has_slept=yes - done - test "$2" = conftest.file - ) -then - # Ok. - : -else - as_fn_error $? "newly created file is older than distributed files! +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_build_env_is_sane" >&5 +printf "%s\n" "$am_build_env_is_sane" >&6; } +if test "$am_build_env_is_sane" = no; then + as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi -{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -printf "%s\n" "yes" >&6; } + # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= -if grep 'slept: no' conftest.file >/dev/null 2>&1; then - ( sleep 1 ) & +if test -e conftest.file || grep 'slept: no' conftest.file >/dev/null 2>&1 +then : + +else case e in #( + e) ( sleep "$am_cv_filesystem_timestamp_resolution" ) & am_sleep_pid=$! + ;; +esac fi rm -f conftest.file @@ -3380,17 +3537,13 @@ else fi rmdir .tst 2>/dev/null +AM_DEFAULT_VERBOSITY=1 # Check whether --enable-silent-rules was given. if test ${enable_silent_rules+y} then : enableval=$enable_silent_rules; fi -case $enable_silent_rules in # ((( - yes) AM_DEFAULT_VERBOSITY=0;; - no) AM_DEFAULT_VERBOSITY=1;; - *) AM_DEFAULT_VERBOSITY=1;; -esac am_make=${MAKE-make} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 printf %s "checking whether $am_make supports nested variables... " >&6; } @@ -3413,15 +3566,45 @@ esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } -if test $am_cv_make_support_nested_variables = yes; then - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi AM_BACKSLASH='\' +am__rm_f_notfound= +if (rm -f && rm -fr && rm -rf) 2>/dev/null +then : + +else case e in #( + e) am__rm_f_notfound='""' ;; +esac +fi + + +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking xargs -n works" >&5 +printf %s "checking xargs -n works... " >&6; } +if test ${am_cv_xargs_n_works+y} +then : + printf %s "(cached) " >&6 +else case e in #( + e) if test "`echo 1 2 3 | xargs -n2 echo`" = "1 2 +3" +then : + am_cv_xargs_n_works=yes +else case e in #( + e) am_cv_xargs_n_works=no ;; +esac +fi ;; +esac +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_xargs_n_works" >&5 +printf "%s\n" "$am_cv_xargs_n_works" >&6; } +if test "$am_cv_xargs_n_works" = yes +then : + am__xargs_n='xargs -n' +else case e in #( + e) am__xargs_n='am__xargs_n () { shift; sed "s/ /\\n/g" | while read am__xargs_n_arg; do "" "$am__xargs_n_arg"; done; }' + ;; +esac +fi + if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." @@ -3498,18 +3681,24 @@ _am_tools='gnutar plaintar pax cpio none' am_gid=`id -g || echo unknown` { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5 printf %s "checking whether UID '$am_uid' is supported by ustar format... " >&6; } - if test $am_uid -le $am_max_uid; then - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if test x$am_uid = xunknown; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: ancient id detected; assuming current UID is ok, but dist-ustar might not work" >&5 +printf "%s\n" "$as_me: WARNING: ancient id detected; assuming current UID is ok, but dist-ustar might not work" >&2;} + elif test $am_uid -le $am_max_uid; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } - _am_tools=none + _am_tools=none fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5 printf %s "checking whether GID '$am_gid' is supported by ustar format... " >&6; } - if test $am_gid -le $am_max_gid; then - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + if test x$gm_gid = xunknown; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: ancient id detected; assuming current GID is ok, but dist-ustar might not work" >&5 +printf "%s\n" "$as_me: WARNING: ancient id detected; assuming current GID is ok, but dist-ustar might not work" >&2;} + elif test $am_gid -le $am_max_gid; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 @@ -3623,90 +3812,12 @@ fi -# POSIX will say in a future version that running "rm -f" with no argument -# is OK; and we want to be able to make that assumption in our Makefile -# recipes. So use an aggressive probe to check that the usage we want is -# actually supported "in the wild" to an acceptable degree. -# See automake bug#10828. -# To make any issue more visible, cause the running configure to be aborted -# by default if the 'rm' program in use doesn't match our expectations; the -# user can still override this though. -if rm -f && rm -fr && rm -rf; then : OK; else - cat >&2 <<'END' -Oops! -Your 'rm' program seems unable to run without file operands specified -on the command line, even when the '-f' option is present. This is contrary -to the behaviour of most rm programs out there, and not conforming with -the upcoming POSIX standard: -Please tell bug-automake@gnu.org about your system, including the value -of your $PATH and any error possibly output before this message. This -can help us improve future automake versions. -END - if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then - echo 'Configuration will proceed anyway, since you have set the' >&2 - echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 - echo >&2 - else - cat >&2 <<'END' -Aborting the configuration process, to ensure you take notice of the issue. -You can download and install GNU coreutils to get an 'rm' implementation -that behaves properly: . - -If you want to complete the configuration process using your problematic -'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM -to "yes", and re-run configure. - -END - as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 - fi -fi - -# Check whether --enable-silent-rules was given. -if test ${enable_silent_rules+y} -then : - enableval=$enable_silent_rules; -fi - -case $enable_silent_rules in # ((( - yes) AM_DEFAULT_VERBOSITY=0;; - no) AM_DEFAULT_VERBOSITY=1;; - *) AM_DEFAULT_VERBOSITY=0;; -esac -am_make=${MAKE-make} -{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 -printf %s "checking whether $am_make supports nested variables... " >&6; } -if test ${am_cv_make_support_nested_variables+y} -then : - printf %s "(cached) " >&6 -else case e in #( - e) if printf "%s\n" 'TRUE=$(BAR$(V)) -BAR0=false -BAR1=true -V=1 -am__doit: - @$(TRUE) -.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then - am_cv_make_support_nested_variables=yes -else - am_cv_make_support_nested_variables=no -fi ;; -esac -fi -{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 -printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } -if test $am_cv_make_support_nested_variables = yes; then - AM_V='$(V)' - AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' -else - AM_V=$AM_DEFAULT_VERBOSITY - AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY -fi -AM_BACKSLASH='\' +AM_DEFAULT_VERBOSITY=0 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 printf %s "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } @@ -5015,7 +5126,7 @@ else case e in #( # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: + # When given -MP, icc 7.0 and 7.1 complain thus: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported @@ -5150,7 +5261,7 @@ else case e in #( # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: + # When given -MP, icc 7.0 and 7.1 complain thus: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported @@ -22215,6 +22326,18 @@ printf %s "checking that generated files are newer than configure... " >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5 printf "%s\n" "done" >&6; } +case $enable_silent_rules in # ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; +esac +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi + if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' diff --git a/contrib/Makefile.in b/contrib/Makefile.in index fa2ebdfa..fa0efd9b 100644 --- a/contrib/Makefile.in +++ b/contrib/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -69,6 +69,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -249,8 +251,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -407,8 +411,8 @@ mostlyclean-generic: clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -499,3 +503,10 @@ uninstall-am: # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/dist-build/Makefile.in b/dist-build/Makefile.in index 3e8e695f..8eddb281 100644 --- a/dist-build/Makefile.in +++ b/dist-build/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -69,6 +69,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -249,8 +251,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -418,8 +422,8 @@ mostlyclean-generic: clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -510,3 +514,10 @@ uninstall-am: # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/src/Makefile.in b/src/Makefile.in index 517c46d8..bb14fefc 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -69,6 +69,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -307,8 +309,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -584,8 +588,8 @@ mostlyclean-generic: clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -677,3 +681,10 @@ uninstall-am: # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/src/libsodium/Makefile.in b/src/libsodium/Makefile.in index a88dd068..5ceeb2e3 100644 --- a/src/libsodium/Makefile.in +++ b/src/libsodium/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -72,6 +72,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -210,10 +212,9 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ + { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(defexecdir)" LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) @@ -916,8 +917,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -1240,50 +1243,46 @@ uninstall-libLTLIBRARIES: done clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + -$(am__rm_f) $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } + echo rm -f $${locs}; \ + $(am__rm_f) $${locs} clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + -$(am__rm_f) $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } + echo rm -f $${locs}; \ + $(am__rm_f) $${locs} crypto_aead/aegis128l/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aegis128l - @: > crypto_aead/aegis128l/$(am__dirstamp) + @: >>crypto_aead/aegis128l/$(am__dirstamp) crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aegis128l/$(DEPDIR) - @: > crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp) crypto_aead/aegis128l/libaesni_la-aegis128l_aesni.lo: \ crypto_aead/aegis128l/$(am__dirstamp) \ crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp) crypto_aead/aegis256/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aegis256 - @: > crypto_aead/aegis256/$(am__dirstamp) + @: >>crypto_aead/aegis256/$(am__dirstamp) crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aegis256/$(DEPDIR) - @: > crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) crypto_aead/aegis256/libaesni_la-aegis256_aesni.lo: \ crypto_aead/aegis256/$(am__dirstamp) \ crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) crypto_aead/aes256gcm/aesni/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aes256gcm/aesni - @: > crypto_aead/aes256gcm/aesni/$(am__dirstamp) + @: >>crypto_aead/aes256gcm/aesni/$(am__dirstamp) crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aes256gcm/aesni/$(DEPDIR) - @: > crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) crypto_aead/aes256gcm/aesni/libaesni_la-aead_aes256gcm_aesni.lo: \ crypto_aead/aes256gcm/aesni/$(am__dirstamp) \ crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) @@ -1298,10 +1297,10 @@ crypto_aead/aegis256/libarmcrypto_la-aegis256_armcrypto.lo: \ crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) crypto_aead/aes256gcm/armcrypto/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aes256gcm/armcrypto - @: > crypto_aead/aes256gcm/armcrypto/$(am__dirstamp) + @: >>crypto_aead/aes256gcm/armcrypto/$(am__dirstamp) crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aes256gcm/armcrypto/$(DEPDIR) - @: > crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp) crypto_aead/aes256gcm/armcrypto/libarmcrypto_la-aead_aes256gcm_armcrypto.lo: \ crypto_aead/aes256gcm/armcrypto/$(am__dirstamp) \ crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp) @@ -1310,37 +1309,37 @@ libarmcrypto.la: $(libarmcrypto_la_OBJECTS) $(libarmcrypto_la_DEPENDENCIES) $(EX $(AM_V_CCLD)$(libarmcrypto_la_LINK) $(libarmcrypto_la_OBJECTS) $(libarmcrypto_la_LIBADD) $(LIBS) crypto_generichash/blake2b/ref/$(am__dirstamp): @$(MKDIR_P) crypto_generichash/blake2b/ref - @: > crypto_generichash/blake2b/ref/$(am__dirstamp) + @: >>crypto_generichash/blake2b/ref/$(am__dirstamp) crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_generichash/blake2b/ref/$(DEPDIR) - @: > crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) crypto_generichash/blake2b/ref/libavx2_la-blake2b-compress-avx2.lo: \ crypto_generichash/blake2b/ref/$(am__dirstamp) \ crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/argon2/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/argon2 - @: > crypto_pwhash/argon2/$(am__dirstamp) + @: >>crypto_pwhash/argon2/$(am__dirstamp) crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/argon2/$(DEPDIR) - @: > crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/argon2/libavx2_la-argon2-fill-block-avx2.lo: \ crypto_pwhash/argon2/$(am__dirstamp) \ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) crypto_stream/chacha20/dolbeau/$(am__dirstamp): @$(MKDIR_P) crypto_stream/chacha20/dolbeau - @: > crypto_stream/chacha20/dolbeau/$(am__dirstamp) + @: >>crypto_stream/chacha20/dolbeau/$(am__dirstamp) crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/chacha20/dolbeau/$(DEPDIR) - @: > crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) crypto_stream/chacha20/dolbeau/libavx2_la-chacha20_dolbeau-avx2.lo: \ crypto_stream/chacha20/dolbeau/$(am__dirstamp) \ crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/xmm6int/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20/xmm6int - @: > crypto_stream/salsa20/xmm6int/$(am__dirstamp) + @: >>crypto_stream/salsa20/xmm6int/$(am__dirstamp) crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20/xmm6int/$(DEPDIR) - @: > crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/xmm6int/libavx2_la-salsa20_xmm6int-avx2.lo: \ crypto_stream/salsa20/xmm6int/$(am__dirstamp) \ crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) @@ -1355,10 +1354,10 @@ libavx512f.la: $(libavx512f_la_OBJECTS) $(libavx512f_la_DEPENDENCIES) $(EXTRA_li $(AM_V_CCLD)$(libavx512f_la_LINK) $(libavx512f_la_OBJECTS) $(libavx512f_la_LIBADD) $(LIBS) randombytes/internal/$(am__dirstamp): @$(MKDIR_P) randombytes/internal - @: > randombytes/internal/$(am__dirstamp) + @: >>randombytes/internal/$(am__dirstamp) randombytes/internal/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) randombytes/internal/$(DEPDIR) - @: > randombytes/internal/$(DEPDIR)/$(am__dirstamp) + @: >>randombytes/internal/$(DEPDIR)/$(am__dirstamp) randombytes/internal/librdrand_la-randombytes_internal_random.lo: \ randombytes/internal/$(am__dirstamp) \ randombytes/internal/$(DEPDIR)/$(am__dirstamp) @@ -1379,72 +1378,72 @@ crypto_aead/aegis256/libsodium_la-aegis256_soft.lo: \ crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) crypto_aead/aes256gcm/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aes256gcm - @: > crypto_aead/aes256gcm/$(am__dirstamp) + @: >>crypto_aead/aes256gcm/$(am__dirstamp) crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_aead/aes256gcm/$(DEPDIR) - @: > crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp) crypto_aead/aes256gcm/libsodium_la-aead_aes256gcm.lo: \ crypto_aead/aes256gcm/$(am__dirstamp) \ crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp) crypto_aead/chacha20poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_aead/chacha20poly1305 - @: > crypto_aead/chacha20poly1305/$(am__dirstamp) + @: >>crypto_aead/chacha20poly1305/$(am__dirstamp) crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_aead/chacha20poly1305/$(DEPDIR) - @: > crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_aead/chacha20poly1305/libsodium_la-aead_chacha20poly1305.lo: \ crypto_aead/chacha20poly1305/$(am__dirstamp) \ crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_aead/xchacha20poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_aead/xchacha20poly1305 - @: > crypto_aead/xchacha20poly1305/$(am__dirstamp) + @: >>crypto_aead/xchacha20poly1305/$(am__dirstamp) crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_aead/xchacha20poly1305/$(DEPDIR) - @: > crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_aead/xchacha20poly1305/libsodium_la-aead_xchacha20poly1305.lo: \ crypto_aead/xchacha20poly1305/$(am__dirstamp) \ crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_auth/$(am__dirstamp): @$(MKDIR_P) crypto_auth - @: > crypto_auth/$(am__dirstamp) + @: >>crypto_auth/$(am__dirstamp) crypto_auth/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_auth/$(DEPDIR) - @: > crypto_auth/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_auth/$(DEPDIR)/$(am__dirstamp) crypto_auth/libsodium_la-crypto_auth.lo: crypto_auth/$(am__dirstamp) \ crypto_auth/$(DEPDIR)/$(am__dirstamp) crypto_auth/hmacsha256/$(am__dirstamp): @$(MKDIR_P) crypto_auth/hmacsha256 - @: > crypto_auth/hmacsha256/$(am__dirstamp) + @: >>crypto_auth/hmacsha256/$(am__dirstamp) crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_auth/hmacsha256/$(DEPDIR) - @: > crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) crypto_auth/hmacsha256/libsodium_la-auth_hmacsha256.lo: \ crypto_auth/hmacsha256/$(am__dirstamp) \ crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) crypto_auth/hmacsha512/$(am__dirstamp): @$(MKDIR_P) crypto_auth/hmacsha512 - @: > crypto_auth/hmacsha512/$(am__dirstamp) + @: >>crypto_auth/hmacsha512/$(am__dirstamp) crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_auth/hmacsha512/$(DEPDIR) - @: > crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) crypto_auth/hmacsha512/libsodium_la-auth_hmacsha512.lo: \ crypto_auth/hmacsha512/$(am__dirstamp) \ crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) crypto_auth/hmacsha512256/$(am__dirstamp): @$(MKDIR_P) crypto_auth/hmacsha512256 - @: > crypto_auth/hmacsha512256/$(am__dirstamp) + @: >>crypto_auth/hmacsha512256/$(am__dirstamp) crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_auth/hmacsha512256/$(DEPDIR) - @: > crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) crypto_auth/hmacsha512256/libsodium_la-auth_hmacsha512256.lo: \ crypto_auth/hmacsha512256/$(am__dirstamp) \ crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) crypto_box/$(am__dirstamp): @$(MKDIR_P) crypto_box - @: > crypto_box/$(am__dirstamp) + @: >>crypto_box/$(am__dirstamp) crypto_box/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_box/$(DEPDIR) - @: > crypto_box/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_box/$(DEPDIR)/$(am__dirstamp) crypto_box/libsodium_la-crypto_box.lo: crypto_box/$(am__dirstamp) \ crypto_box/$(DEPDIR)/$(am__dirstamp) crypto_box/libsodium_la-crypto_box_easy.lo: \ @@ -1455,82 +1454,82 @@ crypto_box/libsodium_la-crypto_box_seal.lo: \ crypto_box/$(DEPDIR)/$(am__dirstamp) crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_box/curve25519xsalsa20poly1305 - @: > crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) + @: >>crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR) - @: > crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_box/curve25519xsalsa20poly1305/libsodium_la-box_curve25519xsalsa20poly1305.lo: \ crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) \ crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_core/ed25519/ref10/$(am__dirstamp): @$(MKDIR_P) crypto_core/ed25519/ref10 - @: > crypto_core/ed25519/ref10/$(am__dirstamp) + @: >>crypto_core/ed25519/ref10/$(am__dirstamp) crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_core/ed25519/ref10/$(DEPDIR) - @: > crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_core/ed25519/ref10/libsodium_la-ed25519_ref10.lo: \ crypto_core/ed25519/ref10/$(am__dirstamp) \ crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_core/hchacha20/$(am__dirstamp): @$(MKDIR_P) crypto_core/hchacha20 - @: > crypto_core/hchacha20/$(am__dirstamp) + @: >>crypto_core/hchacha20/$(am__dirstamp) crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_core/hchacha20/$(DEPDIR) - @: > crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) crypto_core/hchacha20/libsodium_la-core_hchacha20.lo: \ crypto_core/hchacha20/$(am__dirstamp) \ crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) crypto_core/hsalsa20/ref2/$(am__dirstamp): @$(MKDIR_P) crypto_core/hsalsa20/ref2 - @: > crypto_core/hsalsa20/ref2/$(am__dirstamp) + @: >>crypto_core/hsalsa20/ref2/$(am__dirstamp) crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_core/hsalsa20/ref2/$(DEPDIR) - @: > crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) crypto_core/hsalsa20/ref2/libsodium_la-core_hsalsa20_ref2.lo: \ crypto_core/hsalsa20/ref2/$(am__dirstamp) \ crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) crypto_core/hsalsa20/$(am__dirstamp): @$(MKDIR_P) crypto_core/hsalsa20 - @: > crypto_core/hsalsa20/$(am__dirstamp) + @: >>crypto_core/hsalsa20/$(am__dirstamp) crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_core/hsalsa20/$(DEPDIR) - @: > crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) crypto_core/hsalsa20/libsodium_la-core_hsalsa20.lo: \ crypto_core/hsalsa20/$(am__dirstamp) \ crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) crypto_core/salsa/ref/$(am__dirstamp): @$(MKDIR_P) crypto_core/salsa/ref - @: > crypto_core/salsa/ref/$(am__dirstamp) + @: >>crypto_core/salsa/ref/$(am__dirstamp) crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_core/salsa/ref/$(DEPDIR) - @: > crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) crypto_core/salsa/ref/libsodium_la-core_salsa_ref.lo: \ crypto_core/salsa/ref/$(am__dirstamp) \ crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) crypto_core/softaes/$(am__dirstamp): @$(MKDIR_P) crypto_core/softaes - @: > crypto_core/softaes/$(am__dirstamp) + @: >>crypto_core/softaes/$(am__dirstamp) crypto_core/softaes/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_core/softaes/$(DEPDIR) - @: > crypto_core/softaes/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_core/softaes/$(DEPDIR)/$(am__dirstamp) crypto_core/softaes/libsodium_la-softaes.lo: \ crypto_core/softaes/$(am__dirstamp) \ crypto_core/softaes/$(DEPDIR)/$(am__dirstamp) crypto_generichash/$(am__dirstamp): @$(MKDIR_P) crypto_generichash - @: > crypto_generichash/$(am__dirstamp) + @: >>crypto_generichash/$(am__dirstamp) crypto_generichash/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_generichash/$(DEPDIR) - @: > crypto_generichash/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_generichash/$(DEPDIR)/$(am__dirstamp) crypto_generichash/libsodium_la-crypto_generichash.lo: \ crypto_generichash/$(am__dirstamp) \ crypto_generichash/$(DEPDIR)/$(am__dirstamp) crypto_generichash/blake2b/$(am__dirstamp): @$(MKDIR_P) crypto_generichash/blake2b - @: > crypto_generichash/blake2b/$(am__dirstamp) + @: >>crypto_generichash/blake2b/$(am__dirstamp) crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_generichash/blake2b/$(DEPDIR) - @: > crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) crypto_generichash/blake2b/libsodium_la-generichash_blake2.lo: \ crypto_generichash/blake2b/$(am__dirstamp) \ crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) @@ -1545,71 +1544,71 @@ crypto_generichash/blake2b/ref/libsodium_la-generichash_blake2b.lo: \ crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) crypto_hash/$(am__dirstamp): @$(MKDIR_P) crypto_hash - @: > crypto_hash/$(am__dirstamp) + @: >>crypto_hash/$(am__dirstamp) crypto_hash/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_hash/$(DEPDIR) - @: > crypto_hash/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_hash/$(DEPDIR)/$(am__dirstamp) crypto_hash/libsodium_la-crypto_hash.lo: crypto_hash/$(am__dirstamp) \ crypto_hash/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha256/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha256 - @: > crypto_hash/sha256/$(am__dirstamp) + @: >>crypto_hash/sha256/$(am__dirstamp) crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha256/$(DEPDIR) - @: > crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha256/libsodium_la-hash_sha256.lo: \ crypto_hash/sha256/$(am__dirstamp) \ crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha256/cp/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha256/cp - @: > crypto_hash/sha256/cp/$(am__dirstamp) + @: >>crypto_hash/sha256/cp/$(am__dirstamp) crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha256/cp/$(DEPDIR) - @: > crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha256/cp/libsodium_la-hash_sha256_cp.lo: \ crypto_hash/sha256/cp/$(am__dirstamp) \ crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha512/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha512 - @: > crypto_hash/sha512/$(am__dirstamp) + @: >>crypto_hash/sha512/$(am__dirstamp) crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha512/$(DEPDIR) - @: > crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha512/libsodium_la-hash_sha512.lo: \ crypto_hash/sha512/$(am__dirstamp) \ crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha512/cp/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha512/cp - @: > crypto_hash/sha512/cp/$(am__dirstamp) + @: >>crypto_hash/sha512/cp/$(am__dirstamp) crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_hash/sha512/cp/$(DEPDIR) - @: > crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) crypto_hash/sha512/cp/libsodium_la-hash_sha512_cp.lo: \ crypto_hash/sha512/cp/$(am__dirstamp) \ crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) crypto_kdf/blake2b/$(am__dirstamp): @$(MKDIR_P) crypto_kdf/blake2b - @: > crypto_kdf/blake2b/$(am__dirstamp) + @: >>crypto_kdf/blake2b/$(am__dirstamp) crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_kdf/blake2b/$(DEPDIR) - @: > crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) crypto_kdf/blake2b/libsodium_la-kdf_blake2b.lo: \ crypto_kdf/blake2b/$(am__dirstamp) \ crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) crypto_kdf/$(am__dirstamp): @$(MKDIR_P) crypto_kdf - @: > crypto_kdf/$(am__dirstamp) + @: >>crypto_kdf/$(am__dirstamp) crypto_kdf/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_kdf/$(DEPDIR) - @: > crypto_kdf/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_kdf/$(DEPDIR)/$(am__dirstamp) crypto_kdf/libsodium_la-crypto_kdf.lo: crypto_kdf/$(am__dirstamp) \ crypto_kdf/$(DEPDIR)/$(am__dirstamp) crypto_kdf/hkdf/$(am__dirstamp): @$(MKDIR_P) crypto_kdf/hkdf - @: > crypto_kdf/hkdf/$(am__dirstamp) + @: >>crypto_kdf/hkdf/$(am__dirstamp) crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_kdf/hkdf/$(DEPDIR) - @: > crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha256.lo: \ crypto_kdf/hkdf/$(am__dirstamp) \ crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) @@ -1618,36 +1617,36 @@ crypto_kdf/hkdf/libsodium_la-kdf_hkdf_sha512.lo: \ crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) crypto_kx/$(am__dirstamp): @$(MKDIR_P) crypto_kx - @: > crypto_kx/$(am__dirstamp) + @: >>crypto_kx/$(am__dirstamp) crypto_kx/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_kx/$(DEPDIR) - @: > crypto_kx/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_kx/$(DEPDIR)/$(am__dirstamp) crypto_kx/libsodium_la-crypto_kx.lo: crypto_kx/$(am__dirstamp) \ crypto_kx/$(DEPDIR)/$(am__dirstamp) crypto_onetimeauth/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth - @: > crypto_onetimeauth/$(am__dirstamp) + @: >>crypto_onetimeauth/$(am__dirstamp) crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth/$(DEPDIR) - @: > crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) crypto_onetimeauth/libsodium_la-crypto_onetimeauth.lo: \ crypto_onetimeauth/$(am__dirstamp) \ crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) crypto_onetimeauth/poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth/poly1305 - @: > crypto_onetimeauth/poly1305/$(am__dirstamp) + @: >>crypto_onetimeauth/poly1305/$(am__dirstamp) crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth/poly1305/$(DEPDIR) - @: > crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) crypto_onetimeauth/poly1305/libsodium_la-onetimeauth_poly1305.lo: \ crypto_onetimeauth/poly1305/$(am__dirstamp) \ crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) crypto_onetimeauth/poly1305/donna/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth/poly1305/donna - @: > crypto_onetimeauth/poly1305/donna/$(am__dirstamp) + @: >>crypto_onetimeauth/poly1305/donna/$(am__dirstamp) crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth/poly1305/donna/$(DEPDIR) - @: > crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) crypto_onetimeauth/poly1305/donna/libsodium_la-poly1305_donna.lo: \ crypto_onetimeauth/poly1305/donna/$(am__dirstamp) \ crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) @@ -1674,46 +1673,46 @@ crypto_pwhash/argon2/libsodium_la-pwhash_argon2id.lo: \ crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash - @: > crypto_pwhash/$(am__dirstamp) + @: >>crypto_pwhash/$(am__dirstamp) crypto_pwhash/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/$(DEPDIR) - @: > crypto_pwhash/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_pwhash/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/libsodium_la-crypto_pwhash.lo: \ crypto_pwhash/$(am__dirstamp) \ crypto_pwhash/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult - @: > crypto_scalarmult/$(am__dirstamp) + @: >>crypto_scalarmult/$(am__dirstamp) crypto_scalarmult/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/$(DEPDIR) - @: > crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/libsodium_la-crypto_scalarmult.lo: \ crypto_scalarmult/$(am__dirstamp) \ crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/curve25519/ref10/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/curve25519/ref10 - @: > crypto_scalarmult/curve25519/ref10/$(am__dirstamp) + @: >>crypto_scalarmult/curve25519/ref10/$(am__dirstamp) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/curve25519/ref10/$(DEPDIR) - @: > crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/curve25519/ref10/libsodium_la-x25519_ref10.lo: \ crypto_scalarmult/curve25519/ref10/$(am__dirstamp) \ crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/curve25519/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/curve25519 - @: > crypto_scalarmult/curve25519/$(am__dirstamp) + @: >>crypto_scalarmult/curve25519/$(am__dirstamp) crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/curve25519/$(DEPDIR) - @: > crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/curve25519/libsodium_la-scalarmult_curve25519.lo: \ crypto_scalarmult/curve25519/$(am__dirstamp) \ crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) crypto_secretbox/$(am__dirstamp): @$(MKDIR_P) crypto_secretbox - @: > crypto_secretbox/$(am__dirstamp) + @: >>crypto_secretbox/$(am__dirstamp) crypto_secretbox/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_secretbox/$(DEPDIR) - @: > crypto_secretbox/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_secretbox/$(DEPDIR)/$(am__dirstamp) crypto_secretbox/libsodium_la-crypto_secretbox.lo: \ crypto_secretbox/$(am__dirstamp) \ crypto_secretbox/$(DEPDIR)/$(am__dirstamp) @@ -1722,72 +1721,72 @@ crypto_secretbox/libsodium_la-crypto_secretbox_easy.lo: \ crypto_secretbox/$(DEPDIR)/$(am__dirstamp) crypto_secretbox/xsalsa20poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_secretbox/xsalsa20poly1305 - @: > crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) + @: >>crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_secretbox/xsalsa20poly1305/$(DEPDIR) - @: > crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_secretbox/xsalsa20poly1305/libsodium_la-secretbox_xsalsa20poly1305.lo: \ crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) \ crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_secretstream/xchacha20poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_secretstream/xchacha20poly1305 - @: > crypto_secretstream/xchacha20poly1305/$(am__dirstamp) + @: >>crypto_secretstream/xchacha20poly1305/$(am__dirstamp) crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_secretstream/xchacha20poly1305/$(DEPDIR) - @: > crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_secretstream/xchacha20poly1305/libsodium_la-secretstream_xchacha20poly1305.lo: \ crypto_secretstream/xchacha20poly1305/$(am__dirstamp) \ crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_shorthash/$(am__dirstamp): @$(MKDIR_P) crypto_shorthash - @: > crypto_shorthash/$(am__dirstamp) + @: >>crypto_shorthash/$(am__dirstamp) crypto_shorthash/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_shorthash/$(DEPDIR) - @: > crypto_shorthash/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_shorthash/$(DEPDIR)/$(am__dirstamp) crypto_shorthash/libsodium_la-crypto_shorthash.lo: \ crypto_shorthash/$(am__dirstamp) \ crypto_shorthash/$(DEPDIR)/$(am__dirstamp) crypto_shorthash/siphash24/$(am__dirstamp): @$(MKDIR_P) crypto_shorthash/siphash24 - @: > crypto_shorthash/siphash24/$(am__dirstamp) + @: >>crypto_shorthash/siphash24/$(am__dirstamp) crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_shorthash/siphash24/$(DEPDIR) - @: > crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) crypto_shorthash/siphash24/libsodium_la-shorthash_siphash24.lo: \ crypto_shorthash/siphash24/$(am__dirstamp) \ crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) crypto_shorthash/siphash24/ref/$(am__dirstamp): @$(MKDIR_P) crypto_shorthash/siphash24/ref - @: > crypto_shorthash/siphash24/ref/$(am__dirstamp) + @: >>crypto_shorthash/siphash24/ref/$(am__dirstamp) crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_shorthash/siphash24/ref/$(DEPDIR) - @: > crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) crypto_shorthash/siphash24/ref/libsodium_la-shorthash_siphash24_ref.lo: \ crypto_shorthash/siphash24/ref/$(am__dirstamp) \ crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) crypto_sign/$(am__dirstamp): @$(MKDIR_P) crypto_sign - @: > crypto_sign/$(am__dirstamp) + @: >>crypto_sign/$(am__dirstamp) crypto_sign/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_sign/$(DEPDIR) - @: > crypto_sign/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_sign/$(DEPDIR)/$(am__dirstamp) crypto_sign/libsodium_la-crypto_sign.lo: crypto_sign/$(am__dirstamp) \ crypto_sign/$(DEPDIR)/$(am__dirstamp) crypto_sign/ed25519/$(am__dirstamp): @$(MKDIR_P) crypto_sign/ed25519 - @: > crypto_sign/ed25519/$(am__dirstamp) + @: >>crypto_sign/ed25519/$(am__dirstamp) crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_sign/ed25519/$(DEPDIR) - @: > crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) crypto_sign/ed25519/libsodium_la-sign_ed25519.lo: \ crypto_sign/ed25519/$(am__dirstamp) \ crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) crypto_sign/ed25519/ref10/$(am__dirstamp): @$(MKDIR_P) crypto_sign/ed25519/ref10 - @: > crypto_sign/ed25519/ref10/$(am__dirstamp) + @: >>crypto_sign/ed25519/ref10/$(am__dirstamp) crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_sign/ed25519/ref10/$(DEPDIR) - @: > crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_sign/ed25519/ref10/libsodium_la-keypair.lo: \ crypto_sign/ed25519/ref10/$(am__dirstamp) \ crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) @@ -1799,71 +1798,71 @@ crypto_sign/ed25519/ref10/libsodium_la-sign.lo: \ crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_stream/chacha20/$(am__dirstamp): @$(MKDIR_P) crypto_stream/chacha20 - @: > crypto_stream/chacha20/$(am__dirstamp) + @: >>crypto_stream/chacha20/$(am__dirstamp) crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/chacha20/$(DEPDIR) - @: > crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) crypto_stream/chacha20/libsodium_la-stream_chacha20.lo: \ crypto_stream/chacha20/$(am__dirstamp) \ crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) crypto_stream/chacha20/ref/$(am__dirstamp): @$(MKDIR_P) crypto_stream/chacha20/ref - @: > crypto_stream/chacha20/ref/$(am__dirstamp) + @: >>crypto_stream/chacha20/ref/$(am__dirstamp) crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/chacha20/ref/$(DEPDIR) - @: > crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) crypto_stream/chacha20/ref/libsodium_la-chacha20_ref.lo: \ crypto_stream/chacha20/ref/$(am__dirstamp) \ crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) crypto_stream/$(am__dirstamp): @$(MKDIR_P) crypto_stream - @: > crypto_stream/$(am__dirstamp) + @: >>crypto_stream/$(am__dirstamp) crypto_stream/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/$(DEPDIR) - @: > crypto_stream/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/$(DEPDIR)/$(am__dirstamp) crypto_stream/libsodium_la-crypto_stream.lo: \ crypto_stream/$(am__dirstamp) \ crypto_stream/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20 - @: > crypto_stream/salsa20/$(am__dirstamp) + @: >>crypto_stream/salsa20/$(am__dirstamp) crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20/$(DEPDIR) - @: > crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/libsodium_la-stream_salsa20.lo: \ crypto_stream/salsa20/$(am__dirstamp) \ crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) crypto_stream/xsalsa20/$(am__dirstamp): @$(MKDIR_P) crypto_stream/xsalsa20 - @: > crypto_stream/xsalsa20/$(am__dirstamp) + @: >>crypto_stream/xsalsa20/$(am__dirstamp) crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/xsalsa20/$(DEPDIR) - @: > crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) crypto_stream/xsalsa20/libsodium_la-stream_xsalsa20.lo: \ crypto_stream/xsalsa20/$(am__dirstamp) \ crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) crypto_verify/$(am__dirstamp): @$(MKDIR_P) crypto_verify - @: > crypto_verify/$(am__dirstamp) + @: >>crypto_verify/$(am__dirstamp) crypto_verify/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_verify/$(DEPDIR) - @: > crypto_verify/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_verify/$(DEPDIR)/$(am__dirstamp) crypto_verify/libsodium_la-verify.lo: crypto_verify/$(am__dirstamp) \ crypto_verify/$(DEPDIR)/$(am__dirstamp) randombytes/$(am__dirstamp): @$(MKDIR_P) randombytes - @: > randombytes/$(am__dirstamp) + @: >>randombytes/$(am__dirstamp) randombytes/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) randombytes/$(DEPDIR) - @: > randombytes/$(DEPDIR)/$(am__dirstamp) + @: >>randombytes/$(DEPDIR)/$(am__dirstamp) randombytes/libsodium_la-randombytes.lo: randombytes/$(am__dirstamp) \ randombytes/$(DEPDIR)/$(am__dirstamp) sodium/$(am__dirstamp): @$(MKDIR_P) sodium - @: > sodium/$(am__dirstamp) + @: >>sodium/$(am__dirstamp) sodium/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) sodium/$(DEPDIR) - @: > sodium/$(DEPDIR)/$(am__dirstamp) + @: >>sodium/$(DEPDIR)/$(am__dirstamp) sodium/libsodium_la-codecs.lo: sodium/$(am__dirstamp) \ sodium/$(DEPDIR)/$(am__dirstamp) sodium/libsodium_la-core.lo: sodium/$(am__dirstamp) \ @@ -1876,10 +1875,10 @@ sodium/libsodium_la-version.lo: sodium/$(am__dirstamp) \ sodium/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/xmm6/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20/xmm6 - @: > crypto_stream/salsa20/xmm6/$(am__dirstamp) + @: >>crypto_stream/salsa20/xmm6/$(am__dirstamp) crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20/xmm6/$(DEPDIR) - @: > crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6-asm.lo: \ crypto_stream/salsa20/xmm6/$(am__dirstamp) \ crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) @@ -1888,19 +1887,19 @@ crypto_stream/salsa20/xmm6/libsodium_la-salsa20_xmm6.lo: \ crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/ref/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20/ref - @: > crypto_stream/salsa20/ref/$(am__dirstamp) + @: >>crypto_stream/salsa20/ref/$(am__dirstamp) crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa20/ref/$(DEPDIR) - @: > crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa20/ref/libsodium_la-salsa20_ref.lo: \ crypto_stream/salsa20/ref/$(am__dirstamp) \ crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/curve25519/sandy2x - @: > crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) + @: >>crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR) - @: > crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/curve25519/sandy2x/libsodium_la-curve25519_sandy2x.lo: \ crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) \ crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) @@ -1915,10 +1914,10 @@ crypto_scalarmult/curve25519/sandy2x/libsodium_la-sandy2x.lo: \ crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) crypto_box/curve25519xchacha20poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_box/curve25519xchacha20poly1305 - @: > crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) + @: >>crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_box/curve25519xchacha20poly1305/$(DEPDIR) - @: > crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_box/curve25519xchacha20poly1305/libsodium_la-box_curve25519xchacha20poly1305.lo: \ crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) \ crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) @@ -1927,10 +1926,10 @@ crypto_box/curve25519xchacha20poly1305/libsodium_la-box_seal_curve25519xchacha20 crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_core/ed25519/$(am__dirstamp): @$(MKDIR_P) crypto_core/ed25519 - @: > crypto_core/ed25519/$(am__dirstamp) + @: >>crypto_core/ed25519/$(am__dirstamp) crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_core/ed25519/$(DEPDIR) - @: > crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) crypto_core/ed25519/libsodium_la-core_ed25519.lo: \ crypto_core/ed25519/$(am__dirstamp) \ crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) @@ -1939,10 +1938,10 @@ crypto_core/ed25519/libsodium_la-core_ristretto255.lo: \ crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256 - @: > crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) + @: >>crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR) - @: > crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/libsodium_la-crypto_scrypt-common.lo: \ crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) \ crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) @@ -1957,37 +1956,37 @@ crypto_pwhash/scryptsalsa208sha256/libsodium_la-pwhash_scryptsalsa208sha256.lo: crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/nosse - @: > crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) + @: >>crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR) - @: > crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/nosse/libsodium_la-pwhash_scryptsalsa208sha256_nosse.lo: \ crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) \ crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/ed25519/ref10/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/ed25519/ref10 - @: > crypto_scalarmult/ed25519/ref10/$(am__dirstamp) + @: >>crypto_scalarmult/ed25519/ref10/$(am__dirstamp) crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/ed25519/ref10/$(DEPDIR) - @: > crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/ed25519/ref10/libsodium_la-scalarmult_ed25519_ref10.lo: \ crypto_scalarmult/ed25519/ref10/$(am__dirstamp) \ crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/ristretto255/ref10/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/ristretto255/ref10 - @: > crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) + @: >>crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_scalarmult/ristretto255/ref10/$(DEPDIR) - @: > crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) crypto_scalarmult/ristretto255/ref10/libsodium_la-scalarmult_ristretto255_ref10.lo: \ crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) \ crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) crypto_secretbox/xchacha20poly1305/$(am__dirstamp): @$(MKDIR_P) crypto_secretbox/xchacha20poly1305 - @: > crypto_secretbox/xchacha20poly1305/$(am__dirstamp) + @: >>crypto_secretbox/xchacha20poly1305/$(am__dirstamp) crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_secretbox/xchacha20poly1305/$(DEPDIR) - @: > crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) crypto_secretbox/xchacha20poly1305/libsodium_la-secretbox_xchacha20poly1305.lo: \ crypto_secretbox/xchacha20poly1305/$(am__dirstamp) \ crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) @@ -2002,55 +2001,55 @@ crypto_sign/ed25519/ref10/libsodium_la-obsolete.lo: \ crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa2012/ref/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa2012/ref - @: > crypto_stream/salsa2012/ref/$(am__dirstamp) + @: >>crypto_stream/salsa2012/ref/$(am__dirstamp) crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa2012/ref/$(DEPDIR) - @: > crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa2012/ref/libsodium_la-stream_salsa2012_ref.lo: \ crypto_stream/salsa2012/ref/$(am__dirstamp) \ crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa2012/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa2012 - @: > crypto_stream/salsa2012/$(am__dirstamp) + @: >>crypto_stream/salsa2012/$(am__dirstamp) crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa2012/$(DEPDIR) - @: > crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa2012/libsodium_la-stream_salsa2012.lo: \ crypto_stream/salsa2012/$(am__dirstamp) \ crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa208/ref/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa208/ref - @: > crypto_stream/salsa208/ref/$(am__dirstamp) + @: >>crypto_stream/salsa208/ref/$(am__dirstamp) crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa208/ref/$(DEPDIR) - @: > crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa208/ref/libsodium_la-stream_salsa208_ref.lo: \ crypto_stream/salsa208/ref/$(am__dirstamp) \ crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa208/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa208 - @: > crypto_stream/salsa208/$(am__dirstamp) + @: >>crypto_stream/salsa208/$(am__dirstamp) crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/salsa208/$(DEPDIR) - @: > crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) crypto_stream/salsa208/libsodium_la-stream_salsa208.lo: \ crypto_stream/salsa208/$(am__dirstamp) \ crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) crypto_stream/xchacha20/$(am__dirstamp): @$(MKDIR_P) crypto_stream/xchacha20 - @: > crypto_stream/xchacha20/$(am__dirstamp) + @: >>crypto_stream/xchacha20/$(am__dirstamp) crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_stream/xchacha20/$(DEPDIR) - @: > crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) crypto_stream/xchacha20/libsodium_la-stream_xchacha20.lo: \ crypto_stream/xchacha20/$(am__dirstamp) \ crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) randombytes/sysrandom/$(am__dirstamp): @$(MKDIR_P) randombytes/sysrandom - @: > randombytes/sysrandom/$(am__dirstamp) + @: >>randombytes/sysrandom/$(am__dirstamp) randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) randombytes/sysrandom/$(DEPDIR) - @: > randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) + @: >>randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) randombytes/sysrandom/libsodium_la-randombytes_sysrandom.lo: \ randombytes/sysrandom/$(am__dirstamp) \ randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) @@ -2059,19 +2058,19 @@ libsodium.la: $(libsodium_la_OBJECTS) $(libsodium_la_DEPENDENCIES) $(EXTRA_libso $(AM_V_CCLD)$(libsodium_la_LINK) -rpath $(libdir) $(libsodium_la_OBJECTS) $(libsodium_la_LIBADD) $(LIBS) crypto_onetimeauth/poly1305/sse2/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth/poly1305/sse2 - @: > crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) + @: >>crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_onetimeauth/poly1305/sse2/$(DEPDIR) - @: > crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) crypto_onetimeauth/poly1305/sse2/libsse2_la-poly1305_sse2.lo: \ crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) \ crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/sse - @: > crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) + @: >>crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR) - @: > crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) + @: >>crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) crypto_pwhash/scryptsalsa208sha256/sse/libsse2_la-pwhash_scryptsalsa208sha256_sse.lo: \ crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) \ crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) @@ -2384,7 +2383,7 @@ distclean-compile: $(am__depfiles_remade): @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + @: >>$@ am--depfiles: $(am__depfiles_remade) @@ -3573,165 +3572,165 @@ install-strip: mostlyclean-generic: clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + -$(am__rm_f) $(CLEANFILES) distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -rm -f crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_aead/aegis128l/$(am__dirstamp) - -rm -f crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_aead/aegis256/$(am__dirstamp) - -rm -f crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_aead/aes256gcm/$(am__dirstamp) - -rm -f crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_aead/aes256gcm/aesni/$(am__dirstamp) - -rm -f crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_aead/aes256gcm/armcrypto/$(am__dirstamp) - -rm -f crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_aead/chacha20poly1305/$(am__dirstamp) - -rm -f crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_aead/xchacha20poly1305/$(am__dirstamp) - -rm -f crypto_auth/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_auth/$(am__dirstamp) - -rm -f crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_auth/hmacsha256/$(am__dirstamp) - -rm -f crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_auth/hmacsha512/$(am__dirstamp) - -rm -f crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_auth/hmacsha512256/$(am__dirstamp) - -rm -f crypto_box/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_box/$(am__dirstamp) - -rm -f crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) - -rm -f crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) - -rm -f crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_core/ed25519/$(am__dirstamp) - -rm -f crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_core/ed25519/ref10/$(am__dirstamp) - -rm -f crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_core/hchacha20/$(am__dirstamp) - -rm -f crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_core/hsalsa20/$(am__dirstamp) - -rm -f crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_core/hsalsa20/ref2/$(am__dirstamp) - -rm -f crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_core/salsa/ref/$(am__dirstamp) - -rm -f crypto_core/softaes/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_core/softaes/$(am__dirstamp) - -rm -f crypto_generichash/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_generichash/$(am__dirstamp) - -rm -f crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_generichash/blake2b/$(am__dirstamp) - -rm -f crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_generichash/blake2b/ref/$(am__dirstamp) - -rm -f crypto_hash/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_hash/$(am__dirstamp) - -rm -f crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_hash/sha256/$(am__dirstamp) - -rm -f crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_hash/sha256/cp/$(am__dirstamp) - -rm -f crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_hash/sha512/$(am__dirstamp) - -rm -f crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_hash/sha512/cp/$(am__dirstamp) - -rm -f crypto_kdf/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_kdf/$(am__dirstamp) - -rm -f crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_kdf/blake2b/$(am__dirstamp) - -rm -f crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_kdf/hkdf/$(am__dirstamp) - -rm -f crypto_kx/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_kx/$(am__dirstamp) - -rm -f crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_onetimeauth/$(am__dirstamp) - -rm -f crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_onetimeauth/poly1305/$(am__dirstamp) - -rm -f crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_onetimeauth/poly1305/donna/$(am__dirstamp) - -rm -f crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) - -rm -f crypto_pwhash/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_pwhash/$(am__dirstamp) - -rm -f crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_pwhash/argon2/$(am__dirstamp) - -rm -f crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) - -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) - -rm -f crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) - -rm -f crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_scalarmult/$(am__dirstamp) - -rm -f crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_scalarmult/curve25519/$(am__dirstamp) - -rm -f crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_scalarmult/curve25519/ref10/$(am__dirstamp) - -rm -f crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) - -rm -f crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_scalarmult/ed25519/ref10/$(am__dirstamp) - -rm -f crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) - -rm -f crypto_secretbox/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_secretbox/$(am__dirstamp) - -rm -f crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_secretbox/xchacha20poly1305/$(am__dirstamp) - -rm -f crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) - -rm -f crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_secretstream/xchacha20poly1305/$(am__dirstamp) - -rm -f crypto_shorthash/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_shorthash/$(am__dirstamp) - -rm -f crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_shorthash/siphash24/$(am__dirstamp) - -rm -f crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_shorthash/siphash24/ref/$(am__dirstamp) - -rm -f crypto_sign/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_sign/$(am__dirstamp) - -rm -f crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_sign/ed25519/$(am__dirstamp) - -rm -f crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_sign/ed25519/ref10/$(am__dirstamp) - -rm -f crypto_stream/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/$(am__dirstamp) - -rm -f crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/chacha20/$(am__dirstamp) - -rm -f crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/chacha20/dolbeau/$(am__dirstamp) - -rm -f crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/chacha20/ref/$(am__dirstamp) - -rm -f crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa20/$(am__dirstamp) - -rm -f crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa20/ref/$(am__dirstamp) - -rm -f crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa20/xmm6/$(am__dirstamp) - -rm -f crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa20/xmm6int/$(am__dirstamp) - -rm -f crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa2012/$(am__dirstamp) - -rm -f crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa2012/ref/$(am__dirstamp) - -rm -f crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa208/$(am__dirstamp) - -rm -f crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/salsa208/ref/$(am__dirstamp) - -rm -f crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/xchacha20/$(am__dirstamp) - -rm -f crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_stream/xsalsa20/$(am__dirstamp) - -rm -f crypto_verify/$(DEPDIR)/$(am__dirstamp) - -rm -f crypto_verify/$(am__dirstamp) - -rm -f randombytes/$(DEPDIR)/$(am__dirstamp) - -rm -f randombytes/$(am__dirstamp) - -rm -f randombytes/internal/$(DEPDIR)/$(am__dirstamp) - -rm -f randombytes/internal/$(am__dirstamp) - -rm -f randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) - -rm -f randombytes/sysrandom/$(am__dirstamp) - -rm -f sodium/$(DEPDIR)/$(am__dirstamp) - -rm -f sodium/$(am__dirstamp) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) crypto_aead/aegis128l/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aegis128l/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aegis256/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aegis256/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aes256gcm/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aes256gcm/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aes256gcm/aesni/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aes256gcm/aesni/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aes256gcm/armcrypto/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_aead/aes256gcm/armcrypto/$(am__dirstamp) + -$(am__rm_f) crypto_aead/chacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_aead/chacha20poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_aead/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_aead/xchacha20poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_auth/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_auth/$(am__dirstamp) + -$(am__rm_f) crypto_auth/hmacsha256/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_auth/hmacsha256/$(am__dirstamp) + -$(am__rm_f) crypto_auth/hmacsha512/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_auth/hmacsha512/$(am__dirstamp) + -$(am__rm_f) crypto_auth/hmacsha512256/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_auth/hmacsha512256/$(am__dirstamp) + -$(am__rm_f) crypto_box/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_box/$(am__dirstamp) + -$(am__rm_f) crypto_box/curve25519xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_box/curve25519xchacha20poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_box/curve25519xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_box/curve25519xsalsa20poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_core/ed25519/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_core/ed25519/$(am__dirstamp) + -$(am__rm_f) crypto_core/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_core/ed25519/ref10/$(am__dirstamp) + -$(am__rm_f) crypto_core/hchacha20/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_core/hchacha20/$(am__dirstamp) + -$(am__rm_f) crypto_core/hsalsa20/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_core/hsalsa20/$(am__dirstamp) + -$(am__rm_f) crypto_core/hsalsa20/ref2/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_core/hsalsa20/ref2/$(am__dirstamp) + -$(am__rm_f) crypto_core/salsa/ref/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_core/salsa/ref/$(am__dirstamp) + -$(am__rm_f) crypto_core/softaes/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_core/softaes/$(am__dirstamp) + -$(am__rm_f) crypto_generichash/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_generichash/$(am__dirstamp) + -$(am__rm_f) crypto_generichash/blake2b/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_generichash/blake2b/$(am__dirstamp) + -$(am__rm_f) crypto_generichash/blake2b/ref/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_generichash/blake2b/ref/$(am__dirstamp) + -$(am__rm_f) crypto_hash/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_hash/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha256/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha256/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha256/cp/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha256/cp/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha512/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha512/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha512/cp/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_hash/sha512/cp/$(am__dirstamp) + -$(am__rm_f) crypto_kdf/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_kdf/$(am__dirstamp) + -$(am__rm_f) crypto_kdf/blake2b/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_kdf/blake2b/$(am__dirstamp) + -$(am__rm_f) crypto_kdf/hkdf/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_kdf/hkdf/$(am__dirstamp) + -$(am__rm_f) crypto_kx/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_kx/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/poly1305/donna/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/poly1305/donna/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/poly1305/sse2/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_onetimeauth/poly1305/sse2/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/argon2/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/argon2/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/scryptsalsa208sha256/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/scryptsalsa208sha256/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/scryptsalsa208sha256/nosse/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/scryptsalsa208sha256/nosse/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/scryptsalsa208sha256/sse/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_pwhash/scryptsalsa208sha256/sse/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/curve25519/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/curve25519/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/curve25519/ref10/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/curve25519/ref10/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/curve25519/sandy2x/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/curve25519/sandy2x/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/ed25519/ref10/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/ristretto255/ref10/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_scalarmult/ristretto255/ref10/$(am__dirstamp) + -$(am__rm_f) crypto_secretbox/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_secretbox/$(am__dirstamp) + -$(am__rm_f) crypto_secretbox/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_secretbox/xchacha20poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_secretbox/xsalsa20poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_secretbox/xsalsa20poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_secretstream/xchacha20poly1305/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_secretstream/xchacha20poly1305/$(am__dirstamp) + -$(am__rm_f) crypto_shorthash/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_shorthash/$(am__dirstamp) + -$(am__rm_f) crypto_shorthash/siphash24/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_shorthash/siphash24/$(am__dirstamp) + -$(am__rm_f) crypto_shorthash/siphash24/ref/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_shorthash/siphash24/ref/$(am__dirstamp) + -$(am__rm_f) crypto_sign/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_sign/$(am__dirstamp) + -$(am__rm_f) crypto_sign/ed25519/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_sign/ed25519/$(am__dirstamp) + -$(am__rm_f) crypto_sign/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_sign/ed25519/ref10/$(am__dirstamp) + -$(am__rm_f) crypto_stream/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/$(am__dirstamp) + -$(am__rm_f) crypto_stream/chacha20/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/chacha20/$(am__dirstamp) + -$(am__rm_f) crypto_stream/chacha20/dolbeau/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/chacha20/dolbeau/$(am__dirstamp) + -$(am__rm_f) crypto_stream/chacha20/ref/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/chacha20/ref/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/ref/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/ref/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/xmm6/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/xmm6/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/xmm6int/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa20/xmm6int/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa2012/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa2012/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa2012/ref/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa2012/ref/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa208/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa208/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa208/ref/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/salsa208/ref/$(am__dirstamp) + -$(am__rm_f) crypto_stream/xchacha20/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/xchacha20/$(am__dirstamp) + -$(am__rm_f) crypto_stream/xsalsa20/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_stream/xsalsa20/$(am__dirstamp) + -$(am__rm_f) crypto_verify/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) crypto_verify/$(am__dirstamp) + -$(am__rm_f) randombytes/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) randombytes/$(am__dirstamp) + -$(am__rm_f) randombytes/internal/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) randombytes/internal/$(am__dirstamp) + -$(am__rm_f) randombytes/sysrandom/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) randombytes/sysrandom/$(am__dirstamp) + -$(am__rm_f) sodium/$(DEPDIR)/$(am__dirstamp) + -$(am__rm_f) sodium/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -3742,7 +3741,7 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-recursive - -rm -f crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo + -rm -f crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo -rm -f crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Plo -rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Plo -rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Plo @@ -3908,7 +3907,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive - -rm -f crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo + -rm -f crypto_aead/aegis128l/$(DEPDIR)/libaesni_la-aegis128l_aesni.Plo -rm -f crypto_aead/aegis128l/$(DEPDIR)/libarmcrypto_la-aegis128l_armcrypto.Plo -rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aead_aegis128l.Plo -rm -f crypto_aead/aegis128l/$(DEPDIR)/libsodium_la-aegis128l_soft.Plo @@ -4073,3 +4072,10 @@ uninstall-am: uninstall-defexecDATA uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/src/libsodium/include/Makefile.in b/src/libsodium/include/Makefile.in index 118bcdd5..39794676 100644 --- a/src/libsodium/include/Makefile.in +++ b/src/libsodium/include/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -70,6 +70,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -151,10 +153,9 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ + { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } am__installdirs = "$(DESTDIR)$(includedir)" "$(DESTDIR)$(includedir)" HEADERS = $(nobase_include_HEADERS) $(nobase_nodist_include_HEADERS) @@ -296,8 +297,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -623,8 +626,8 @@ mostlyclean-generic: clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -721,3 +724,10 @@ uninstall-am: uninstall-nobase_includeHEADERS \ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/test/Makefile.in b/test/Makefile.in index a03365f8..b6377965 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -69,6 +69,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -307,8 +309,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -587,8 +591,8 @@ mostlyclean-generic: clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -680,3 +684,10 @@ uninstall-am: # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.% diff --git a/test/default/Makefile.in b/test/default/Makefile.in index cc98c05b..0d74568c 100644 --- a/test/default/Makefile.in +++ b/test/default/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.16.5 from Makefile.am. +# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2021 Free Software Foundation, Inc. +# Copyright (C) 1994-2024 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -69,6 +69,8 @@ am__make_running_with_option = \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +am__rm_f = rm -f $(am__rm_f_notfound) +am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -584,10 +586,9 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ + { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* @@ -675,6 +676,7 @@ am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ + $$am__collect_skipped_logs \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the @@ -699,6 +701,11 @@ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ +if test -n '$(IGNORE_SKIPPED_LOGS)'; then \ + am__collect_skipped_logs='--collect-skipped-logs no'; \ +else \ + am__collect_skipped_logs=''; \ +fi; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ @@ -868,8 +875,10 @@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ +am__xargs_n = @am__xargs_n@ ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ @@ -1309,13 +1318,8 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__aclocal_m4_deps): clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ - echo " rm -f" $$list; \ - rm -f $$list || exit $$?; \ - test -n "$(EXEEXT)" || exit 0; \ - list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f" $$list; \ - rm -f $$list + $(am__rm_f) $(check_PROGRAMS) + test -z "$(EXEEXT)" || $(am__rm_f) $(check_PROGRAMS:$(EXEEXT)=) aead_aegis128l$(EXEEXT): $(aead_aegis128l_OBJECTS) $(aead_aegis128l_DEPENDENCIES) $(EXTRA_aead_aegis128l_DEPENDENCIES) @rm -f aead_aegis128l$(EXEEXT) @@ -1726,7 +1730,7 @@ distclean-compile: $(am__depfiles_remade): @$(MKDIR_P) $(@D) - @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + @: >>$@ am--depfiles: $(am__depfiles_remade) @@ -1825,7 +1829,6 @@ distclean-tags: am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: - $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ @@ -1901,10 +1904,37 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ + output_system_information () \ + { \ + echo; \ + { uname -a | $(AWK) '{ \ + printf "System information (uname -a):"; \ + for (i = 1; i < NF; ++i) \ + { \ + if (i != 2) \ + printf " %s", $$i; \ + } \ + printf "\n"; \ +}'; } 2>&1; \ + if test -r /etc/os-release; then \ + echo "Distribution information (/etc/os-release):"; \ + sed 8q /etc/os-release; \ + elif test -r /etc/issue; then \ + echo "Distribution information (/etc/issue):"; \ + cat /etc/issue; \ + fi; \ + }; \ + please_report () \ + { \ +echo "Some test(s) failed. Please report this to $(PACKAGE_BUGREPORT),"; \ +echo "together with the test-suite.log file (gzipped) and your system"; \ +echo "information. Thanks."; \ + }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ + output_system_information; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ @@ -1924,26 +1954,25 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ - echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG) for debugging.$${std}";\ if test -n "$(PACKAGE_BUGREPORT)"; then \ - echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + please_report | sed -e "s/^/$${col}/" -e s/'$$'/"$${std}"/; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: $(check_PROGRAMS) - @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list - @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @$(am__rm_f) $(RECHECK_LOGS) + @$(am__rm_f) $(RECHECK_LOGS:.log=.trs) + @$(am__rm_f) $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ - trs_list=`for i in $$bases; do echo $$i.trs; done`; \ - log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ + log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all $(check_PROGRAMS) - @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @$(am__rm_f) $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ @@ -2586,16 +2615,16 @@ install-strip: "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: - -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) - -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) - -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + -$(am__rm_f) $(TEST_LOGS) + -$(am__rm_f) $(TEST_LOGS:.log=.trs) + -$(am__rm_f) $(TEST_SUITE_LOG) clean-generic: distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + -$(am__rm_f) $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) + -$(am__rm_f) $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -2606,7 +2635,7 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ mostlyclean-am distclean: distclean-am - -rm -f ./$(DEPDIR)/aead_aegis128l.Po + -rm -f ./$(DEPDIR)/aead_aegis128l.Po -rm -f ./$(DEPDIR)/aead_aegis256.Po -rm -f ./$(DEPDIR)/aead_aes256gcm.Po -rm -f ./$(DEPDIR)/aead_aes256gcm2.Po @@ -2731,7 +2760,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -f ./$(DEPDIR)/aead_aegis128l.Po + -rm -f ./$(DEPDIR)/aead_aegis128l.Po -rm -f ./$(DEPDIR)/aead_aegis256.Po -rm -f ./$(DEPDIR)/aead_aes256gcm.Po -rm -f ./$(DEPDIR)/aead_aes256gcm2.Po @@ -2855,3 +2884,10 @@ verify: check # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# Tell GNU make to disable its built-in pattern rules. +%:: %,v +%:: RCS/%,v +%:: RCS/% +%:: s.% +%:: SCCS/s.%