Skip to content

Commit

Permalink
Fixes building SDL on Ubuntu 16.04 with Mir headers installed
Browse files Browse the repository at this point in the history
  • Loading branch information
gabomdq committed Sep 1, 2016
1 parent f11a440 commit 1428bab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions configure
Expand Up @@ -18975,6 +18975,7 @@ main ()
{

MirPointerButton button = mir_pointer_button_primary;
MirPointerConfinementState confined = mir_pointer_unconfined;

;
return 0;
Expand Down
3 changes: 2 additions & 1 deletion configure.in
Expand Up @@ -1291,11 +1291,12 @@ AC_HELP_STRING([--enable-video-mir], [use Mir video driver [[default=yes]]]),
save_CFLAGS="$CFLAGS"
CFLAGS="$save_CFLAGS $MIR_CFLAGS"

dnl This will disable Mir on Ubuntu < 15.04 (Mir should be 0.14 at this point)
dnl This will disable Mir if >= v0.24 is not available
AC_TRY_COMPILE([
#include <mir_toolkit/mir_client_library.h>
],[
MirPointerButton button = mir_pointer_button_primary;
MirPointerConfinementState confined = mir_pointer_unconfined;
],[
video_mir=yes
])
Expand Down

0 comments on commit 1428bab

Please sign in to comment.