Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
whizard
public
Commits
eea2feb1
Commit
eea2feb1
authored
Jun 03, 2021
by
Juergen Reuter
Browse files
a9ab39a Merge branch 'update_automake_files' into 'master'
parent
d610dd7c
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
config.guess
View file @
eea2feb1
This diff is collapsed.
Click to expand it.
config.sub
View file @
eea2feb1
This diff is collapsed.
Click to expand it.
depcomp
View file @
eea2feb1
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
scriptversion
=
201
3
-0
5-30
.0
7
;
# UTC
scriptversion
=
201
8
-0
3-07
.0
3
;
# UTC
# Copyright (C) 1999-20
15
Free Software Foundation, Inc.
# Copyright (C) 1999-20
20
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
...
...
@@ -16,7 +16,7 @@ scriptversion=2013-05-30.07; # UTC
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http
s
://www.gnu.org/licenses/>.
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
...
...
@@ -251,6 +251,41 @@ hp)
exit
1
;;
sgi
)
if
test
"
$libtool
"
=
yes
;
then
"
$@
"
"-Wp,-MDupdate,
$tmpdepfile
"
else
"
$@
"
-MDupdate
"
$tmpdepfile
"
fi
stat
=
$?
if
test
$stat
-ne
0
;
then
rm
-f
"
$tmpdepfile
"
exit
$stat
fi
rm
-f
"
$depfile
"
if
test
-f
"
$tmpdepfile
"
;
then
# yes, the sourcefile depend on other files
echo
"
$object
:
\\
"
>
"
$depfile
"
# Clip off the initial element (the dependent). Don't try to be
# clever and replace this with sed code, as IRIX sed won't handle
# lines with more than a fixed number of characters (4096 in
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
# the IRIX cc adds comments like '#:fec' to the end of the
# dependency line.
tr
' '
"
$nl
"
<
"
$tmpdepfile
"
\
|
sed
-e
's/^.*\.o://'
-e
's/#.*$//'
-e
'/^$/ d'
\
|
tr
"
$nl
"
' '
>>
"
$depfile
"
echo
>>
"
$depfile
"
# The second pass generates a dummy entry for each header file.
tr
' '
"
$nl
"
<
"
$tmpdepfile
"
\
|
sed
-e
's/^.*\.o://'
-e
's/#.*$//'
-e
'/^$/ d'
-e
's/$/:/'
\
>>
"
$depfile
"
else
make_dummy_depfile
fi
rm
-f
"
$tmpdepfile
"
;;
xlc
)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
...
...
@@ -748,9 +783,9 @@ exit 0
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook '
write-fil
e-hook
s
'time-stamp)
# eval: (add-hook '
before-sav
e-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-time-zone: "UTC"
# time-stamp-time-zone: "UTC
0
"
# time-stamp-end: "; # UTC"
# End:
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment