diff options
author | theuni <theuni@svn> | 2010-05-12 16:11:56 +0000 |
---|---|---|
committer | theuni <theuni@svn> | 2010-05-12 16:11:56 +0000 |
commit | c8a42eeda432626d1138e3a2815a4d7eb95f0a99 (patch) | |
tree | 9fa3dc2b228fcd618281557b7807b933c6e9c3e1 /configure.in | |
parent | 60525e17d0dc37a579997e26ccea72b8d71a236e (diff) |
fixed: linux compile for a sleepy spiff
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30051 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 374d2dfa62..790d4ca402 100644 --- a/configure.in +++ b/configure.in @@ -1183,7 +1183,10 @@ fi if test "$use_external_libass" = "no"; then OUTPUT_FILES+=" \ lib/libass/xbmc/Makefile" - AC_DEFINE([USE_EXTERNAL_LIBASS], [1], [Whether to use external libass library.])], + USE_EXTERNAL_LIBASS=0 +else + AC_DEFINE([USE_EXTERNAL_LIBASS], [1], [Whether to use external libass library.]) + USE_EXTERNAL_LIBASS=1 fi # Line below is used so we can use AM_INIT_AUTOMAKE. The corresponding |