Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
71355d6f
Commit
71355d6f
authored
Oct 18, 2007
by
Jean-Paul Saman
Browse files
Bail out if ffmpeg/avformat.h and ffmpeg/avutil.h doesn't exist.
parent
7c357878
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
71355d6f
...
...
@@ -3062,8 +3062,8 @@ dnl Trying with pkg-config
CPPFLAGS="${CPPFLAGS} ${FFMPEG_CFLAGS}"
CFLAGS="${CFLAGS} ${FFMPEG_CFLAGS}"
AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
AC_CHECK_HEADERS(ffmpeg/avformat.h)
AC_CHECK_HEADERS(ffmpeg/avutil.h)
AC_CHECK_HEADERS(ffmpeg/avformat.h
, [], [AC_MSG_ERROR([Missing header file ffmpeg/avformat.h.])]
)
AC_CHECK_HEADERS(ffmpeg/avutil.h
, [], [AC_MSG_ERROR([Missing header file ffmpeg/avutil.h.])]
)
dnl newer ffmpeg have a separate libpostproc
PKG_CHECK_MODULES(POSTPROC, libpostproc,[
VLC_ADD_CFLAGS([ffmpeg],[${POSTPROC_CFLAGS}])
...
...
Write
Preview
Supports
Markdown
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