Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
703afd07
Commit
703afd07
authored
Feb 11, 2007
by
Måns Rullgård
Browse files
rewrite some one-line if/then/fi using && and ||
Originally committed as revision 7917 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bc8ec47b
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure
View file @
703afd07
...
...
@@ -1273,9 +1273,7 @@ if test $targetos = Darwin; then
fi
fi
if
!
disabled optimize
;
then
add_cflags
"-fomit-frame-pointer"
fi
disabled optimize
||
add_cflags
-fomit-frame-pointer
# Can only do AltiVec on PowerPC
if
test
$altivec
=
"default"
;
then
...
...
@@ -1620,13 +1618,9 @@ elif check_func dlopen -ldl; then
ldl
=
-ldl
fi
if
test
"
$vhook
"
=
"default"
;
then
vhook
=
"
$dlopen
"
fi
test
"
$vhook
"
=
"default"
&&
vhook
=
"
$dlopen
"
if
enabled_any vhook liba52bin libfaadbin
;
then
add_extralibs
$ldl
fi
enabled_any vhook liba52bin libfaadbin
&&
add_extralibs
$ldl
if
test
"
$targetos
"
=
"CYGWIN"
&&
enabled lstatic
;
then
vhook
=
"no"
...
...
@@ -1641,9 +1635,7 @@ if enabled vhook; then
check_ldflags
-export-dynamic
fi
if
enabled audio_beos
;
then
add_extralibs
"-lmedia -lbe"
fi
enabled audio_beos
&&
add_extralibs
"-lmedia -lbe"
##########################################
# imlib check
...
...
Write
Preview
Markdown
is supported
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