git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83d8988
)
More strict detection for swscale. Patch by ILEoo and ALexis Ballier
author
Christophe Mutricy
<xtophe@videolan.org>
Thu, 7 Jun 2007 22:57:53 +0000
(22:57 +0000)
committer
Christophe Mutricy
<xtophe@videolan.org>
Thu, 7 Jun 2007 22:57:53 +0000
(22:57 +0000)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
023833d
..
8ae3a4f
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-3080,7
+3080,8
@@
dnl Trying with pkg-config
PKG_CHECK_MODULES(SWSCALE, libswscale,[
VLC_ADD_CFLAGS([ffmpeg],[${SWSCALE_CFLAGS}])
VLC_ADD_LDFLAGS([ffmpeg],[${SWSCALE_LIBS}])
- AC_CHECK_HEADERS(ffmpeg/swscale.h)
+ AC_CHECK_LIB(swscale, sws_getContext,
+ [AC_CHECK_HEADERS(ffmpeg/swscale.h)],[])
],[ true ])
VLC_RESTORE_FLAGS
],[