Skip to content

Commit eb30e73

Browse files
Run "autoreconf --install" on an Ubuntu 24.04 to regenerate autotools files.
1 parent 4c1306f commit eb30e73

File tree

9 files changed

+184
-107
lines changed

9 files changed

+184
-107
lines changed

Makefile.in

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ libcoredumper_la_LIBADD =
149149
am__dirstamp = $(am__leading_dot)dirstamp
150150
am__objects_1 =
151151
am_libcoredumper_la_OBJECTS = src/coredumper.lo src/thread_lister.lo \
152-
src/elfcore.lo src/linuxthreads.lo $(am__objects_1)
152+
src/elfcore.lo src/linuxthreads.lo src/corepoint.lo \
153+
$(am__objects_1)
153154
libcoredumper_la_OBJECTS = $(am_libcoredumper_la_OBJECTS)
154155
AM_V_lt = $(am__v_lt_@AM_V@)
155156
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
@@ -184,7 +185,8 @@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src
184185
depcomp = $(SHELL) $(top_srcdir)/depcomp
185186
am__maybe_remake_depfiles = depfiles
186187
am__depfiles_remade = src/$(DEPDIR)/coredumper.Plo \
187-
src/$(DEPDIR)/coredumper_unittest.Po src/$(DEPDIR)/elfcore.Plo \
188+
src/$(DEPDIR)/coredumper_unittest.Po \
189+
src/$(DEPDIR)/corepoint.Plo src/$(DEPDIR)/elfcore.Plo \
188190
src/$(DEPDIR)/linux_syscall_support_unittest.Po \
189191
src/$(DEPDIR)/linuxthreads.Plo src/$(DEPDIR)/thread_lister.Plo
190192
am__mv = mv -f
@@ -603,12 +605,13 @@ man3_MANS = man/GetCoreDump.man man/WriteCoreDump.man \
603605

604606
LIBCOREDUMPER_INCLUDES = src/google/coredumper.h src/elfcore.h \
605607
src/linux_syscall_support.h src/linuxthreads.h \
606-
src/thread_lister.h
608+
src/thread_lister.h src/corepoint.h
607609

608610
libcoredumper_la_SOURCES = src/coredumper.c \
609611
src/thread_lister.c \
610612
src/elfcore.c \
611613
src/linuxthreads.c \
614+
src/corepoint.c \
612615
$(LIBCOREDUMPER_INCLUDES)
613616

614617
libcoredumper_la_LDFLAGS = -export-symbols $(top_srcdir)/src/libcoredumper.sym \
@@ -732,6 +735,7 @@ src/thread_lister.lo: src/$(am__dirstamp) \
732735
src/$(DEPDIR)/$(am__dirstamp)
733736
src/elfcore.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
734737
src/linuxthreads.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
738+
src/corepoint.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
735739

736740
libcoredumper.la: $(libcoredumper_la_OBJECTS) $(libcoredumper_la_DEPENDENCIES) $(EXTRA_libcoredumper_la_DEPENDENCIES)
737741
$(AM_V_CCLD)$(libcoredumper_la_LINK) -rpath $(libdir) $(libcoredumper_la_OBJECTS) $(libcoredumper_la_LIBADD) $(LIBS)
@@ -758,6 +762,7 @@ distclean-compile:
758762

759763
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/coredumper.Plo@am__quote@ # am--include-marker
760764
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/coredumper_unittest.Po@am__quote@ # am--include-marker
765+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/corepoint.Plo@am__quote@ # am--include-marker
761766
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/elfcore.Plo@am__quote@ # am--include-marker
762767
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/linux_syscall_support_unittest.Po@am__quote@ # am--include-marker
763768
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/linuxthreads.Plo@am__quote@ # am--include-marker
@@ -1365,6 +1370,7 @@ distclean: distclean-am
13651370
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
13661371
-rm -f src/$(DEPDIR)/coredumper.Plo
13671372
-rm -f src/$(DEPDIR)/coredumper_unittest.Po
1373+
-rm -f src/$(DEPDIR)/corepoint.Plo
13681374
-rm -f src/$(DEPDIR)/elfcore.Plo
13691375
-rm -f src/$(DEPDIR)/linux_syscall_support_unittest.Po
13701376
-rm -f src/$(DEPDIR)/linuxthreads.Plo
@@ -1420,6 +1426,7 @@ maintainer-clean: maintainer-clean-am
14201426
-rm -rf $(top_srcdir)/autom4te.cache
14211427
-rm -f src/$(DEPDIR)/coredumper.Plo
14221428
-rm -f src/$(DEPDIR)/coredumper_unittest.Po
1429+
-rm -f src/$(DEPDIR)/corepoint.Plo
14231430
-rm -f src/$(DEPDIR)/elfcore.Plo
14241431
-rm -f src/$(DEPDIR)/linux_syscall_support_unittest.Po
14251432
-rm -f src/$(DEPDIR)/linuxthreads.Plo

config.guess

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#! /bin/sh
22
# Attempt to guess a canonical system name.
3-
# Copyright 1992-2021 Free Software Foundation, Inc.
3+
# Copyright 1992-2022 Free Software Foundation, Inc.
44

55
# shellcheck disable=SC2006,SC2268 # see below for rationale
66

7-
timestamp='2021-06-03'
7+
timestamp='2022-01-09'
88

99
# This file is free software; you can redistribute it and/or modify it
1010
# under the terms of the GNU General Public License as published by
11-
# the Free Software Foundation; either version 3 of the License, or
11+
# the Free Software Foundation, either version 3 of the License, or
1212
# (at your option) any later version.
1313
#
1414
# This program is distributed in the hope that it will be useful, but
@@ -60,7 +60,7 @@ version="\
6060
GNU config.guess ($timestamp)
6161
6262
Originally written by Per Bothner.
63-
Copyright 1992-2021 Free Software Foundation, Inc.
63+
Copyright 1992-2022 Free Software Foundation, Inc.
6464
6565
This is free software; see the source for copying conditions. There is NO
6666
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -437,7 +437,7 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in
437437
# This test works for both compilers.
438438
if test "$CC_FOR_BUILD" != no_compiler_found; then
439439
if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
440-
(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
440+
(CCOPTS="" $CC_FOR_BUILD -m64 -E - 2>/dev/null) | \
441441
grep IS_64BIT_ARCH >/dev/null
442442
then
443443
SUN_ARCH=x86_64
@@ -929,6 +929,9 @@ EOF
929929
i*:PW*:*)
930930
GUESS=$UNAME_MACHINE-pc-pw32
931931
;;
932+
*:SerenityOS:*:*)
933+
GUESS=$UNAME_MACHINE-pc-serenity
934+
;;
932935
*:Interix*:*)
933936
case $UNAME_MACHINE in
934937
x86)
@@ -1522,6 +1525,9 @@ EOF
15221525
i*86:rdos:*:*)
15231526
GUESS=$UNAME_MACHINE-pc-rdos
15241527
;;
1528+
i*86:Fiwix:*:*)
1529+
GUESS=$UNAME_MACHINE-pc-fiwix
1530+
;;
15251531
*:AROS:*:*)
15261532
GUESS=$UNAME_MACHINE-unknown-aros
15271533
;;
@@ -1746,4 +1752,3 @@ exit 1
17461752
# time-stamp-format: "%:y-%02m-%02d"
17471753
# time-stamp-end: "'"
17481754
# End:
1749-

config.sub

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#! /bin/sh
22
# Configuration validation subroutine script.
3-
# Copyright 1992-2021 Free Software Foundation, Inc.
3+
# Copyright 1992-2022 Free Software Foundation, Inc.
44

55
# shellcheck disable=SC2006,SC2268 # see below for rationale
66

7-
timestamp='2021-08-14'
7+
timestamp='2022-01-03'
88

99
# This file is free software; you can redistribute it and/or modify it
1010
# under the terms of the GNU General Public License as published by
11-
# the Free Software Foundation; either version 3 of the License, or
11+
# the Free Software Foundation, either version 3 of the License, or
1212
# (at your option) any later version.
1313
#
1414
# This program is distributed in the hope that it will be useful, but
@@ -76,7 +76,7 @@ Report bugs and patches to <config-patches@gnu.org>."
7676
version="\
7777
GNU config.sub ($timestamp)
7878
79-
Copyright 1992-2021 Free Software Foundation, Inc.
79+
Copyright 1992-2022 Free Software Foundation, Inc.
8080
8181
This is free software; see the source for copying conditions. There is NO
8282
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -1020,6 +1020,11 @@ case $cpu-$vendor in
10201020
;;
10211021

10221022
# Here we normalize CPU types with a missing or matching vendor
1023+
armh-unknown | armh-alt)
1024+
cpu=armv7l
1025+
vendor=alt
1026+
basic_os=${basic_os:-linux-gnueabihf}
1027+
;;
10231028
dpx20-unknown | dpx20-bull)
10241029
cpu=rs6000
10251030
vendor=bull
@@ -1121,7 +1126,7 @@ case $cpu-$vendor in
11211126
xscale-* | xscalee[bl]-*)
11221127
cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
11231128
;;
1124-
arm64-*)
1129+
arm64-* | aarch64le-*)
11251130
cpu=aarch64
11261131
;;
11271132

@@ -1304,7 +1309,7 @@ esac
13041309
if test x$basic_os != x
13051310
then
13061311

1307-
# First recognize some ad-hoc caes, or perhaps split kernel-os, or else just
1312+
# First recognize some ad-hoc cases, or perhaps split kernel-os, or else just
13081313
# set os.
13091314
case $basic_os in
13101315
gnu/linux*)
@@ -1748,7 +1753,8 @@ case $os in
17481753
| skyos* | haiku* | rdos* | toppers* | drops* | es* \
17491754
| onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
17501755
| midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \
1751-
| nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr*)
1756+
| nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \
1757+
| fiwix* )
17521758
;;
17531759
# This one is extra strict with allowed versions
17541760
sco3.2v2 | sco3.2v[4-9]* | sco5v6*)

0 commit comments

Comments
 (0)