Skip to content

Commit b6e1bb1

Browse files
committed
regenerate with current autotools versions
1 parent 61b4d94 commit b6e1bb1

File tree

36 files changed

+4351
-2287
lines changed

36 files changed

+4351
-2287
lines changed

Makefile.in

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.16.5 from Makefile.am.
1+
# Makefile.in generated by automake 1.17 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2024 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -76,6 +76,8 @@ am__make_running_with_option = \
7676
test $$has_opt = yes
7777
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
7878
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
79+
am__rm_f = rm -f $(am__rm_f_notfound)
80+
am__rm_rf = rm -rf $(am__rm_f_notfound)
7981
pkglibdir = $(libdir)/@PACKAGE@
8082
pkglibexecdir = $(libexecdir)/@PACKAGE@
8183
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
@@ -154,10 +156,9 @@ am__base_list = \
154156
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
155157
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
156158
am__uninstall_files_from_dir = { \
157-
test -z "$$files" \
158-
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
159-
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
160-
$(am__cd) "$$dir" && rm -f $$files; }; \
159+
{ test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
160+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
161+
$(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \
161162
}
162163
am__installdirs = "$(DESTDIR)$(pkgconfiglibdir)"
163164
DATA = $(pkgconfiglib_DATA)
@@ -292,8 +293,10 @@ ac_ct_PKG_CONFIG = @ac_ct_PKG_CONFIG@
292293
am__include = @am__include@
293294
am__leading_dot = @am__leading_dot@
294295
am__quote = @am__quote@
296+
am__rm_f_notfound = @am__rm_f_notfound@
295297
am__tar = @am__tar@
296298
am__untar = @am__untar@
299+
am__xargs_n = @am__xargs_n@
297300
bindir = @bindir@
298301
build = @build@
299302
build_alias = @build_alias@
@@ -573,8 +576,8 @@ mostlyclean-generic:
573576
clean-generic:
574577

575578
distclean-generic:
576-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
577-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
579+
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
580+
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
578581

579582
maintainer-clean-generic:
580583
@echo "This command is intended for maintainers to use"
@@ -770,3 +773,10 @@ uninstall-local: uninstall-doc uninstall-doxygen-docs
770773
# Tell versions [3.59,3.63) of GNU make to not export all variables.
771774
# Otherwise a system limit (for SysV at least) may be exceeded.
772775
.NOEXPORT:
776+
777+
# Tell GNU make to disable its built-in pattern rules.
778+
%:: %,v
779+
%:: RCS/%,v
780+
%:: RCS/%
781+
%:: s.%
782+
%:: SCCS/s.%

ar-lib

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Wrapper for Microsoft lib.exe
33

44
me=ar-lib
5-
scriptversion=2019-07-04.01; # UTC
5+
scriptversion=2024-06-19.01; # UTC
66

7-
# Copyright (C) 2010-2021 Free Software Foundation, Inc.
7+
# Copyright (C) 2010-2024 Free Software Foundation, Inc.
88
# Written by Peter Rosin <peda@lysator.liu.se>.
99
#
1010
# This program is free software; you can redistribute it and/or modify
@@ -105,11 +105,15 @@ case $1 in
105105
Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
106106
107107
Members may be specified in a file named with @FILE.
108+
109+
Report bugs to <bug-automake@gnu.org>.
110+
GNU Automake home page: <https://www.gnu.org/software/automake/>.
111+
General help using GNU software: <https://www.gnu.org/gethelp/>.
108112
EOF
109113
exit $?
110114
;;
111115
-v | --v*)
112-
echo "$me, version $scriptversion"
116+
echo "$me (GNU Automake) $scriptversion"
113117
exit $?
114118
;;
115119
esac
@@ -135,6 +139,10 @@ do
135139
AR="$AR $1"
136140
shift
137141
;;
142+
-nologo | -NOLOGO)
143+
# We always invoke AR with -nologo, so don't need to add it again.
144+
shift
145+
;;
138146
*)
139147
action=$1
140148
shift

compile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#! /bin/sh
22
# Wrapper for compilers which do not understand '-c -o'.
33

4-
scriptversion=2018-03-07.03; # UTC
4+
scriptversion=2024-06-19.01; # UTC
55

6-
# Copyright (C) 1999-2021 Free Software Foundation, Inc.
6+
# Copyright (C) 1999-2024 Free Software Foundation, Inc.
77
# Written by Tom Tromey <tromey@cygnus.com>.
88
#
99
# This program is free software; you can redistribute it and/or modify
@@ -146,7 +146,7 @@ func_cl_wrapper ()
146146
# configure might choose to run compile as 'compile cc -o foo foo.c'.
147147
eat=1
148148
case $2 in
149-
*.o | *.[oO][bB][jJ])
149+
*.o | *.lo | *.[oO][bB][jJ])
150150
func_file_conv "$2"
151151
set x "$@" -Fo"$file"
152152
shift
@@ -283,14 +283,17 @@ If you are trying to build a whole package this is not the
283283
right script to run: please start by reading the file 'INSTALL'.
284284
285285
Report bugs to <bug-automake@gnu.org>.
286+
GNU Automake home page: <https://www.gnu.org/software/automake/>.
287+
General help using GNU software: <https://www.gnu.org/gethelp/>.
286288
EOF
287289
exit $?
288290
;;
289291
-v | --v*)
290-
echo "compile $scriptversion"
292+
echo "compile (GNU Automake) $scriptversion"
291293
exit $?
292294
;;
293295
cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
296+
clang-cl | *[/\\]clang-cl | clang-cl.exe | *[/\\]clang-cl.exe | \
294297
icl | *[/\\]icl | icl.exe | *[/\\]icl.exe | \
295298
ifort | *[/\\]ifort | ifort.exe | *[/\\]ifort.exe )
296299
func_cl_wrapper "$@" # Doesn't return...

0 commit comments

Comments
 (0)