comparison configure @ 21435:d4f3d52bedbf

Use fallback XAnim and Real codecs directories when autodetection is skipped.
author diego
date Sat, 02 Dec 2006 20:54:51 +0000
parents efa3a5d013fe
children edfd292bbf9e
comparison
equal deleted inserted replaced
21434:efa3a5d013fe 21435:d4f3d52bedbf
5964 echocheck "XAnim codecs" 5964 echocheck "XAnim codecs"
5965 if test "$_xanim" = auto ; then 5965 if test "$_xanim" = auto ; then
5966 _xanim=no 5966 _xanim=no
5967 _res_comment="dynamic loader support needed" 5967 _res_comment="dynamic loader support needed"
5968 if test "$_dl" = yes ; then 5968 if test "$_dl" = yes ; then
5969 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
5970 _xanim=yes 5969 _xanim=yes
5971 fi 5970 fi
5972 fi 5971 fi
5973 if test "$_xanim" = yes ; then 5972 if test "$_xanim" = yes ; then
5973 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
5974 _def_xanim='#define USE_XANIM 1' 5974 _def_xanim='#define USE_XANIM 1'
5975 _def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\"" 5975 _def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
5976 _codecmodules="xanim $_codecmodules" 5976 _codecmodules="xanim $_codecmodules"
5977 _res_comment="using $_xanimcodecsdir" 5977 _res_comment="using $_xanimcodecsdir"
5978 else 5978 else
5987 if test "$_real" = auto ; then 5987 if test "$_real" = auto ; then
5988 _real=no 5988 _real=no
5989 _res_comment="dynamic loader support needed" 5989 _res_comment="dynamic loader support needed"
5990 if test "$_dl" = yes || test "$_win32" = yes && 5990 if test "$_dl" = yes || test "$_win32" = yes &&
5991 (linux || freebsd || netbsd || win32 || darwin) ; then 5991 (linux || freebsd || netbsd || win32 || darwin) ; then
5992 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
5993 _real=yes 5992 _real=yes
5994 fi 5993 fi
5995 fi 5994 fi
5996 if test "$_real" = yes ; then 5995 if test "$_real" = yes ; then
5996 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
5997 _def_real='#define USE_REALCODECS 1' 5997 _def_real='#define USE_REALCODECS 1'
5998 _def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\"" 5998 _def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
5999 _codecmodules="real $_codecmodules" 5999 _codecmodules="real $_codecmodules"
6000 _res_comment="using $_realcodecsdir" 6000 _res_comment="using $_realcodecsdir"
6001 else 6001 else