forked from rurban/pcre
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove files that are not in the upstream repo update chartables update config files
- Loading branch information
1 parent
8be051d
commit c90ed0d
Showing
28 changed files
with
9,257 additions
and
9,647 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
# Wrapper for Microsoft lib.exe | ||
|
||
me=ar-lib | ||
scriptversion=2012-03-01.08; # UTC | ||
scriptversion=2024-06-19.01; # UTC | ||
|
||
# Copyright (C) 2010-2018 Free Software Foundation, Inc. | ||
# Copyright (C) 2010-2024 Free Software Foundation, Inc. | ||
# Written by Peter Rosin <[email protected]>. | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
|
@@ -53,7 +53,7 @@ func_file_conv () | |
MINGW*) | ||
file_conv=mingw | ||
;; | ||
CYGWIN*) | ||
CYGWIN* | MSYS*) | ||
file_conv=cygwin | ||
;; | ||
*) | ||
|
@@ -65,7 +65,7 @@ func_file_conv () | |
mingw) | ||
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` | ||
;; | ||
cygwin) | ||
cygwin | msys) | ||
file=`cygpath -m "$file" || echo "$file"` | ||
;; | ||
wine) | ||
|
@@ -105,11 +105,15 @@ case $1 in | |
Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...] | ||
Members may be specified in a file named with @FILE. | ||
Report bugs to <[email protected]>. | ||
GNU Automake home page: <https://www.gnu.org/software/automake/>. | ||
General help using GNU software: <https://www.gnu.org/gethelp/>. | ||
EOF | ||
exit $? | ||
;; | ||
-v | --v*) | ||
echo "$me, version $scriptversion" | ||
echo "$me (GNU Automake) $scriptversion" | ||
exit $? | ||
;; | ||
esac | ||
|
@@ -135,6 +139,10 @@ do | |
AR="$AR $1" | ||
shift | ||
;; | ||
-nologo | -NOLOGO) | ||
# We always invoke AR with -nologo, so don't need to add it again. | ||
shift | ||
;; | ||
*) | ||
action=$1 | ||
shift | ||
|
@@ -224,10 +232,11 @@ elif test -n "$extract"; then | |
esac | ||
done | ||
else | ||
$AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member | ||
do | ||
$AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? | ||
done | ||
$AR -NOLOGO -LIST "$archive" | tr -d '\r' | sed -e 's/\\/\\\\/g' \ | ||
| while read member | ||
do | ||
$AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $? | ||
done | ||
fi | ||
|
||
elif test -n "$quick$replace"; then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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-2018 Free Software Foundation, Inc. | ||
# Copyright (C) 1999-2024 Free Software Foundation, Inc. | ||
# Written by Tom Tromey <[email protected]>. | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
|
@@ -53,7 +53,7 @@ func_file_conv () | |
MINGW*) | ||
file_conv=mingw | ||
;; | ||
CYGWIN*) | ||
CYGWIN* | MSYS*) | ||
file_conv=cygwin | ||
;; | ||
*) | ||
|
@@ -67,7 +67,7 @@ func_file_conv () | |
mingw/*) | ||
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` | ||
;; | ||
cygwin/*) | ||
cygwin/* | msys/*) | ||
file=`cygpath -m "$file" || echo "$file"` | ||
;; | ||
wine/*) | ||
|
@@ -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 <[email protected]>. | ||
GNU Automake home page: <https://www.gnu.org/software/automake/>. | ||
General help using GNU software: <https://www.gnu.org/gethelp/>. | ||
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... | ||
;; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#! /bin/sh | ||
# Attempt to guess a canonical system name. | ||
# Copyright 1992-2022 Free Software Foundation, Inc. | ||
# Copyright 1992-2024 Free Software Foundation, Inc. | ||
|
||
# shellcheck disable=SC2006,SC2268 # see below for rationale | ||
|
||
timestamp='2022-09-17' | ||
timestamp='2024-01-01' | ||
|
||
# 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 | ||
|
@@ -47,7 +47,7 @@ me=`echo "$0" | sed -e 's,.*/,,'` | |
usage="\ | ||
Usage: $0 [OPTION] | ||
Output the configuration name of the system \`$me' is run on. | ||
Output the configuration name of the system '$me' is run on. | ||
Options: | ||
-h, --help print this help, then exit | ||
|
@@ -60,13 +60,13 @@ version="\ | |
GNU config.guess ($timestamp) | ||
Originally written by Per Bothner. | ||
Copyright 1992-2022 Free Software Foundation, Inc. | ||
Copyright 1992-2024 Free Software Foundation, Inc. | ||
This is free software; see the source for copying conditions. There is NO | ||
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." | ||
|
||
help=" | ||
Try \`$me --help' for more information." | ||
Try '$me --help' for more information." | ||
|
||
# Parse command line | ||
while test $# -gt 0 ; do | ||
|
@@ -102,8 +102,8 @@ GUESS= | |
# temporary files to be created and, as you can see below, it is a | ||
# headache to deal with in a portable fashion. | ||
|
||
# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still | ||
# use `HOST_CC' if defined, but it is deprecated. | ||
# Historically, 'CC_FOR_BUILD' used to be named 'HOST_CC'. We still | ||
# use 'HOST_CC' if defined, but it is deprecated. | ||
|
||
# Portable tmp directory creation inspired by the Autoconf team. | ||
|
||
|
@@ -155,20 +155,26 @@ Linux|GNU|GNU/*) | |
|
||
set_cc_for_build | ||
cat <<-EOF > "$dummy.c" | ||
#if defined(__ANDROID__) | ||
LIBC=android | ||
#else | ||
#include <features.h> | ||
#if defined(__UCLIBC__) | ||
LIBC=uclibc | ||
#elif defined(__dietlibc__) | ||
LIBC=dietlibc | ||
#elif defined(__GLIBC__) | ||
LIBC=gnu | ||
#elif defined(__LLVM_LIBC__) | ||
LIBC=llvm | ||
#else | ||
#include <stdarg.h> | ||
/* First heuristic to detect musl libc. */ | ||
#ifdef __DEFINED_va_list | ||
LIBC=musl | ||
#endif | ||
#endif | ||
#endif | ||
EOF | ||
cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` | ||
eval "$cc_set_libc" | ||
|
@@ -459,7 +465,7 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in | |
UNAME_RELEASE=`uname -v` | ||
;; | ||
esac | ||
# Japanese Language versions have a version number like `4.1.3-JL'. | ||
# Japanese Language versions have a version number like '4.1.3-JL'. | ||
SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/'` | ||
GUESS=sparc-sun-sunos$SUN_REL | ||
;; | ||
|
@@ -904,7 +910,7 @@ EOF | |
fi | ||
;; | ||
*:FreeBSD:*:*) | ||
UNAME_PROCESSOR=`/usr/bin/uname -p` | ||
UNAME_PROCESSOR=`uname -p` | ||
case $UNAME_PROCESSOR in | ||
amd64) | ||
UNAME_PROCESSOR=x86_64 ;; | ||
|
@@ -976,7 +982,27 @@ EOF | |
GUESS=$UNAME_MACHINE-unknown-minix | ||
;; | ||
aarch64:Linux:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-linux-$LIBC | ||
set_cc_for_build | ||
CPU=$UNAME_MACHINE | ||
LIBCABI=$LIBC | ||
if test "$CC_FOR_BUILD" != no_compiler_found; then | ||
ABI=64 | ||
sed 's/^ //' << EOF > "$dummy.c" | ||
#ifdef __ARM_EABI__ | ||
#ifdef __ARM_PCS_VFP | ||
ABI=eabihf | ||
#else | ||
ABI=eabi | ||
#endif | ||
#endif | ||
EOF | ||
cc_set_abi=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^ABI' | sed 's, ,,g'` | ||
eval "$cc_set_abi" | ||
case $ABI in | ||
eabi | eabihf) CPU=armv8l; LIBCABI=$LIBC$ABI ;; | ||
esac | ||
fi | ||
GUESS=$CPU-unknown-linux-$LIBCABI | ||
;; | ||
aarch64_be:Linux:*:*) | ||
UNAME_MACHINE=aarch64_be | ||
|
@@ -1042,6 +1068,15 @@ EOF | |
k1om:Linux:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-linux-$LIBC | ||
;; | ||
kvx:Linux:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-linux-$LIBC | ||
;; | ||
kvx:cos:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-cos | ||
;; | ||
kvx:mbr:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-mbr | ||
;; | ||
loongarch32:Linux:*:* | loongarch64:Linux:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-linux-$LIBC | ||
;; | ||
|
@@ -1197,7 +1232,7 @@ EOF | |
GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION | ||
;; | ||
i*86:OS/2:*:*) | ||
# If we were able to find `uname', then EMX Unix compatibility | ||
# If we were able to find 'uname', then EMX Unix compatibility | ||
# is probably installed. | ||
GUESS=$UNAME_MACHINE-pc-os2-emx | ||
;; | ||
|
@@ -1338,7 +1373,7 @@ EOF | |
GUESS=ns32k-sni-sysv | ||
fi | ||
;; | ||
PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort | ||
PENTIUM:*:4.0*:*) # Unisys 'ClearPath HMP IX 4000' SVR4/MP effort | ||
# says <[email protected]> | ||
GUESS=i586-unisys-sysv4 | ||
;; | ||
|
@@ -1560,6 +1595,9 @@ EOF | |
*:Unleashed:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-unleashed$UNAME_RELEASE | ||
;; | ||
*:Ironclad:*:*) | ||
GUESS=$UNAME_MACHINE-unknown-ironclad | ||
;; | ||
esac | ||
|
||
# Do we have a guess based on uname results? | ||
|
Oops, something went wrong.