diff options
author | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-16 11:35:14 +0000 |
---|---|---|
committer | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-16 11:35:14 +0000 |
commit | 89721b691da059ca99b0d43d86b9d76ef0aec8bf (patch) | |
tree | a3818d5ca41afe5c2e77403403fbadb84ffb5258 | |
parent | e347eec90f8439166c87e23e384d8fae02d09a4c (diff) |
Patch by Adam Di Carlo <adam@onshore-devel.com>:
* configure: set _mtrr to no by default, is implied but not set like
similar settings; if we're building w/ css but not dvdauth, we need
-lcss
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3521 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -422,6 +422,7 @@ if x86 ; then _mmx2=no _sse=no _sse2=no + _mtrr=no for i in $pparam ; do case "$i" in @@ -2024,6 +2025,7 @@ if test "$_dvdread" = yes ; then elif test "$_css" = yes ; then _def_dvdread='#undef USE_DVDREAD' _def_css='#define HAVE_LIBCSS 1' + _ld_css='-lcss' test "$_csslibdir" && _ld_css="-L${_csslibdir} $_ld_css" _inputmodules="dvdcss $_inputmodules" echores "libcss" |