Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
0319c531
Commit
0319c531
authored
Oct 27, 2001
by
Nick Kurshev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shared objects support
Originally committed as revision 195 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0fd94442
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
configure
configure
+12
-1
No files found.
configure
View file @
0319c531
...
...
@@ -58,9 +58,11 @@ echo " --disable-mmx disable mmx usage"
echo
" --enable-gprof enable profiling with gprof [
$gprof
]"
echo
" --disable-grab disable audio/video grabbing code"
echo
" --enable-win32 enable win32 cross compile"
echo
" --enable-shared build shared libraries [default=no]"
exit
1
fi
lshared
=
no
for
opt
do
case
"
$opt
"
in
--prefix
=
*
)
prefix
=
`
echo
$opt
|
cut
-d
'='
-f
2
`
...
...
@@ -77,6 +79,8 @@ for opt do
;;
--enable-win32
)
win32
=
"yes"
;;
--enable-shared
=
*
)
lshared
=
`
echo
$opt
|
cut
-d
'='
-f
2
`
;;
esac
done
...
...
@@ -150,7 +154,14 @@ if [ "$gprof" = "yes" ] ; then
echo
"TARGET_GPROF=yes"
>>
config.mak
echo
"#define HAVE_GPROF 1"
>>
config.h
fi
if
[
"
$lshared
"
=
"yes"
]
;
then
echo
"BUILD_SHARED=yes"
>>
config.mak
else
echo
"BUILD_SHARED=no"
>>
config.mak
fi
echo
-n
"VERSION="
>>
config.mak
head
VERSION
>>
config.mak
echo
""
>>
config.mak
# if you do not want to use encoders, disable that.
echo
"#define CONFIG_ENCODERS 1"
>>
config.h
echo
"CONFIG_ENCODERS=yes"
>>
config.mak
...
...
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