Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
50e52624
Commit
50e52624
authored
May 20, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./configure.in: tried to fix the -lavcodec detection.
parent
ff4bf779
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
configure
configure
+3
-3
configure.in
configure.in
+3
-3
No files found.
configure
View file @
50e52624
...
...
@@ -6513,7 +6513,7 @@ echo "configure:6506: checking for libavcodec.a in ${with_ffmpeg_tree}" >&5
then
echo
"
$ac_t
""
${
real_ffmpeg_tree
}
/libavcodec/libavcodec.a"
1>&6
BUILTINS
=
"
${
BUILTINS
}
ffmpeg"
ffmpeg_LDFLAGS
=
"
${
ffmpeg_LDFLAGS
}
${
real_ffmpeg_tree
}
/libavcodec/libavcodec.a"
ffmpeg_LDFLAGS
=
"
${
ffmpeg_LDFLAGS
}
${
real_ffmpeg_tree
}
/libavcodec/libavcodec.a
-lm
"
ffmpeg_CFLAGS
=
"
${
ffmpeg_CFLAGS
}
-I
${
real_ffmpeg_tree
}
/libavcodec"
else
echo
"
$ac_t
""no"
1>&6
...
...
@@ -6523,7 +6523,7 @@ echo "configure:6506: checking for libavcodec.a in ${with_ffmpeg_tree}" >&5
save_CFLAGS
=
$CFLAGS
save_LDFLAGS
=
$LDFLAGS
CFLAGS
=
"
$CFLAGS
$ffmpeg_CFLAGS
"
LDFLAGS
=
"
$LDFLAGS
$ffmpeg_LDFLAGS
"
LDFLAGS
=
"
$LDFLAGS
$ffmpeg_LDFLAGS
-lm
"
echo
$ac_n
"checking for avcodec_init in -lavcodec""...
$ac_c
"
1>&6
echo
"configure:6529: checking for avcodec_init in -lavcodec"
>
&5
ac_lib_var
=
`
echo
avcodec
'_'
avcodec_init |
sed
'y%./+-%__p_%'
`
...
...
@@ -6561,7 +6561,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
echo
"
$ac_t
""yes"
1>&6
BUILTINS
=
"
${
BUILTINS
}
ffmpeg"
ffmpeg_LDFLAGS
=
"
${
ffmpeg_LDFLAGS
}
-lavcodec"
ffmpeg_LDFLAGS
=
"
${
ffmpeg_LDFLAGS
}
-lavcodec
-lm
"
else
echo
"
$ac_t
""no"
1>&6
{
echo
"configure: error: Cannot find libavcodec library..."
1>&2
;
exit
1
;
}
...
...
configure.in
View file @
50e52624
...
...
@@ -902,7 +902,7 @@ then
dnl Use a custom libffmpeg
AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
BUILTINS="${BUILTINS} ffmpeg"
ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} ${real_ffmpeg_tree}/libavcodec/libavcodec.a"
ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} ${real_ffmpeg_tree}/libavcodec/libavcodec.a
-lm
"
ffmpeg_CFLAGS="${ffmpeg_CFLAGS} -I${real_ffmpeg_tree}/libavcodec"
else
dnl The given libavcodec wasn't built
...
...
@@ -913,10 +913,10 @@ then
save_CFLAGS=$CFLAGS
save_LDFLAGS=$LDFLAGS
CFLAGS="$CFLAGS $ffmpeg_CFLAGS"
LDFLAGS="$LDFLAGS $ffmpeg_LDFLAGS"
LDFLAGS="$LDFLAGS $ffmpeg_LDFLAGS
-lm
"
AC_CHECK_LIB(avcodec, avcodec_init, [
BUILTINS="${BUILTINS} ffmpeg"
ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lavcodec" ],
ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lavcodec
-lm
" ],
[ AC_MSG_ERROR([Cannot find libavcodec library...]) ])
CFLAGS=$save_CFLAGS
LDFLAGS=$save_LDFLAGS
...
...
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