summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure2
-rw-r--r--libvo/video_out.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 06a79e924c..8bae568a24 100755
--- a/configure
+++ b/configure
@@ -2548,7 +2548,7 @@ if test "$_directfb" = yes ; then
_vomodules="directfb $_vomodules"
_ld_directfb='-ldirectfb'
- if test "$_directfb_version" -ge 914; then
+ if test "$_directfb_version" -ge 915; then
_vosrc="$_vosrc vo_dfbmga.c"
_vomodules="dfbmga $_vomodules"
fi
diff --git a/libvo/video_out.c b/libvo/video_out.c
index e287563cf8..fb5dfed516 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -93,7 +93,7 @@ extern vo_functions_t video_out_vesa;
#endif
#ifdef HAVE_DIRECTFB
extern vo_functions_t video_out_directfb;
-#if DIRECTFBVERSION >= 914
+#if DIRECTFBVERSION >= 915
extern vo_functions_t video_out_dfbmga;
#endif
#endif
@@ -190,7 +190,7 @@ vo_functions_t* video_out_drivers[] =
#endif
#ifdef HAVE_DIRECTFB
&video_out_directfb,
-#if DIRECTFBVERSION >= 914
+#if DIRECTFBVERSION >= 915
&video_out_dfbmga,
#endif
#endif