Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ffmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Luma Media Server
ffmpeg
Commits
0dbe81bb
Commit
0dbe81bb
authored
18 years ago
by
Måns Rullgård
Browse files
Options
Downloads
Patches
Plain Diff
make shell test work with Solaris /bin/sh
Originally committed as revision 7251 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
6c81ca99
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure
+10
-3
10 additions, 3 deletions
configure
with
10 additions
and
3 deletions
configure
+
10
−
3
View file @
0dbe81bb
...
@@ -11,12 +11,19 @@
...
@@ -11,12 +11,19 @@
# try to make this part work with most shells
# try to make this part work with most shells
try_exec
(){
try_exec
(){
echo
"Trying shell
$1
"
type
"
$1
"
>
/dev/null 2>&1
&&
exec
"
$@
"
type
"
$1
"
>
/dev/null 2>&1
&&
exec
"
$@
"
}
}
unset
foo
unset
foo
(
:
${
foo
%%bar
}
)
2>/dev/null
&&
!
(
:
${
foo
?
}
)
2>/dev/null
(
:
${
foo
%%bar
}
)
2>/dev/null
if
test
"
$?
"
!=
0
;
then
E1
=
"
$?
"
(
:
${
foo
?
}
)
2>/dev/null
E2
=
"
$?
"
if
test
"
$E1
"
!=
0
||
test
"
$E2
"
=
0
;
then
echo
"Broken shell detected. Trying alternatives."
export
FF_CONF_EXEC
export
FF_CONF_EXEC
if
test
"0
$FF_CONF_EXEC
"
-lt
1
;
then
if
test
"0
$FF_CONF_EXEC
"
-lt
1
;
then
FF_CONF_EXEC
=
1
FF_CONF_EXEC
=
1
...
@@ -339,7 +346,7 @@ check_header(){
...
@@ -339,7 +346,7 @@ check_header(){
int x;
int x;
EOF
EOF
err
=
$?
err
=
$?
var
=
`
echo
$header
|
sed
's/[^
[:alnum:]
]/_/g'
`
var
=
`
echo
$header
|
sed
's/[^
A-Za-z0-9_
]/_/g'
`
test
"
$err
"
=
0
&&
enable
$var
||
disable
$var
test
"
$err
"
=
0
&&
enable
$var
||
disable
$var
return
$err
return
$err
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment