mirror of
https://github.com/mpv-player/mpv
synced 2024-12-28 06:03:45 +01:00
completed the summary displayed after running configure
(todo: optimization option to add) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3170 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
d776382012
commit
49df6450b9
19
configure
vendored
19
configure
vendored
@ -1892,11 +1892,13 @@ if test "$_dvdread" = yes ; then
|
||||
_def_dvdread='#define USE_DVDREAD 1'
|
||||
_def_css='#undef HAVE_LIBCSS'
|
||||
_ld_css='-ldvdread'
|
||||
_inputmodules="dvdread $_inputmodules"
|
||||
echores "libdvdread"
|
||||
elif test "$_css" = yes ; then
|
||||
_def_dvdread='#undef USE_DVDREAD'
|
||||
_def_css='#define HAVE_LIBCSS 1'
|
||||
test "$_csslibdir" && _ld_css="-L${_csslibdir} $_ld_css"
|
||||
_inputmodules="dvdcss $_inputmodules"
|
||||
echores "libcss"
|
||||
else
|
||||
_def_dvdread='#undef USE_DVDREAD'
|
||||
@ -1999,6 +2001,7 @@ if test "$_win32" = yes ; then
|
||||
_def_win32='#define USE_WIN32DLL 1'
|
||||
_ld_win32='-Lloader -lloader'
|
||||
_dep_win32='loader/libloader.a'
|
||||
_codecmodules="win32 $_codecmodules"
|
||||
else
|
||||
_def_win32='#undef USE_WIN32DLL'
|
||||
fi
|
||||
@ -2048,6 +2051,7 @@ if test "$_dshow" = yes ; then
|
||||
_def_dshow='#define USE_DIRECTSHOW 1'
|
||||
_ld_dshow='-Lloader/DirectShow -lDS_Filter -lstdc++'
|
||||
_dep_dshow='loader/DirectShow/libDS_Filter.a'
|
||||
_codecmodules="directshow $_codecmodules"
|
||||
else
|
||||
_def_dshow='#undef USE_DIRECTSHOW'
|
||||
fi
|
||||
@ -2080,6 +2084,7 @@ fi
|
||||
if test "$_xanim" = yes ; then
|
||||
_def_xanim='#define USE_XANIM 1'
|
||||
_def_xanim_path="#define XACODEC_PATH \"$_xanimlibdir\""
|
||||
_codecmodules="xanim $_codecmodules"
|
||||
else
|
||||
_def_xanim='#undef USE_XANIM'
|
||||
_def_xanim_path='#undef XACODEC_PATH'
|
||||
@ -2165,11 +2170,13 @@ if test "$_libavcodec" = yes ; then
|
||||
_ld_libavcodec='-Llibavcodec -lavcodec'
|
||||
_dep_libavcodec='libavcodec/libavcodec.a'
|
||||
_def_ffpostprocess='#define FF_POSTPROCESS 1'
|
||||
_codecmodules="libavcodec $_codecmodules"
|
||||
echores "static libavcodec"
|
||||
elif test "$_libavcodecso" = yes ; then
|
||||
_def_libavcodecso='#define USE_LIBAVCODEC_SO 1'
|
||||
_ld_libavcodec='-lffmpeg'
|
||||
_def_ffpostprocess='#define FF_POSTPROCESS 1'
|
||||
_codecmodules="libavcodec.so $_codecmodules"
|
||||
echores "dynamic libffmpeg.so"
|
||||
else
|
||||
echores "not found"
|
||||
@ -2198,6 +2205,7 @@ _ld_decore='-Lopendivx -ldecore'
|
||||
if test "$_divx4linux_decore" = yes ; then
|
||||
_def_decore='#define NEW_DECORE 1'
|
||||
_ld_decore='-ldivxdecore opendivx/postprocess.o'
|
||||
_codecmodules="divx4linux $_codecmodules"
|
||||
fi
|
||||
|
||||
|
||||
@ -2264,6 +2272,7 @@ echocheck "streaming"
|
||||
# FIXME streaming check
|
||||
if test "$_streaming" = yes ; then
|
||||
_def_streaming='#define STREAMING 1'
|
||||
_inputmodules="network $_inputmodules"
|
||||
# FIXME _streamingsrcs='asf_streaming.c network.c url.c http.c'
|
||||
else
|
||||
_def_streaming='#undef STREAMING'
|
||||
@ -2804,17 +2813,17 @@ EOF
|
||||
|
||||
#############################################################################
|
||||
|
||||
#FIXME: add something like "Optimizing for: i686 mmx mmx2 sse"
|
||||
cat << EOF
|
||||
|
||||
Config files successfully generated by ./configure !
|
||||
|
||||
Install prefix: $_prefix
|
||||
Data directory: $_datadir
|
||||
Optimizing for: [TODO - do NOT bugreport this !]
|
||||
Input: [TODO - do NOT bugreport this !]
|
||||
Codecs: [TODO - do NOT bugreport this !]
|
||||
Audio output drivers: $_aomodules
|
||||
Video output drivers: $_vomodules
|
||||
Input: vcd $_inputmodules
|
||||
Codecs: $_codecmodules
|
||||
Audio output drivers: null $_aomodules
|
||||
Video output drivers: null $_vomodules
|
||||
|
||||
'config.h' and 'config.mak' contain your configuration options.
|
||||
Note: if you alter theses files (for instance CFLAGS) MPlayer may no longer
|
||||
|
Loading…
Reference in New Issue
Block a user