Changeset 0192ffc2aef33b675179dfac06a97c014eaab30c
- Timestamp:
- 02/08/04 22:00:19
(5 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1076274019 +0000
- git-parent:
[6f50b235de1c17808ddafbbe68b2c10205b109a3]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1076274019 +0000
- Message:
Fail ./configure when ffmpeg/avcodec.h or postproc/postproc.h are not found and --disable-ffmpeg is not used.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6f50b23 |
r0192ffc |
|
| 1 | 1 | dnl Autoconf settings for vlc |
|---|
| 2 | | dnl $Id: configure.ac,v 1.171 2004/02/08 20:19:03 jpsaman Exp $ |
|---|
| | 2 | dnl $Id: configure.ac,v 1.172 2004/02/08 21:00:19 jpsaman Exp $ |
|---|
| 3 | 3 | |
|---|
| 4 | 4 | AC_INIT(vlc,0.7.1-cvs) |
|---|
| … | … | |
| 1804 | 1804 | CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}" |
|---|
| 1805 | 1805 | LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" |
|---|
| 1806 | | AC_CHECK_HEADERS(ffmpeg/avcodec.h postproc/postprocess.h) |
|---|
| | 1806 | AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] ) |
|---|
| | 1807 | AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] ) |
|---|
| 1807 | 1808 | AC_CHECK_LIB(avcodec, avcodec_init, [ |
|---|
| 1808 | 1809 | AX_ADD_BUILTINS([ffmpeg stream_out_transcode]) |
|---|