diff options
author | elupus <elupus@svn> | 2010-04-06 23:03:57 +0000 |
---|---|---|
committer | elupus <elupus@svn> | 2010-04-06 23:03:57 +0000 |
commit | ca89bfe98507f9155ebee309e254934190171c3f (patch) | |
tree | 916fc878702943b535b24a7cc9b31de6352a5f21 /configure.in | |
parent | f6189aff7655baa6f4ca595d96d78476458b1dd6 (diff) |
fixed: need to link va-glx aswell
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29090 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d6940a1501..8455b193af 100644 --- a/configure.in +++ b/configure.in @@ -689,10 +689,13 @@ if test "$host_vendor" = "apple" ; then AC_MSG_NOTICE($vaapi_disabled) else if test "$use_vaapi" = "yes"; then - AC_CHECK_LIB([va], main,, use_vaapi=no;AC_MSG_RESULT($vaapi_not_found)) + AC_CHECK_LIB([va-glx], main,, use_vaapi=no;AC_MSG_RESULT($vaapi_not_found), -lva) else AC_MSG_NOTICE($vaapi_disabled) fi + if test "$use_vaapi" = "yes"; then + AC_CHECK_LIB([va] , main,, use_vaapi=no;AC_MSG_RESULT($vaapi_not_found)) + fi fi # CrystalHD |