-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
regenerate with current autotools versions
- Loading branch information
Showing
14 changed files
with
3,906 additions
and
1,984 deletions.
There are no files selected for viewing
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
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=2019-07-04.01; # UTC | ||
scriptversion=2024-06-19.01; # UTC | ||
|
||
# Copyright (C) 2010-2021 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 | ||
|
@@ -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 | ||
|
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-2021 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 | ||
|
@@ -146,7 +146,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 | ||
|
@@ -283,14 +283,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 | \ | ||
ifort | *[/\\]ifort | ifort.exe | *[/\\]ifort.exe ) | ||
func_cl_wrapper "$@" # Doesn't return... | ||
|
Oops, something went wrong.