diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-06-20 12:45:32 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-06-20 13:48:40 +0200 |
commit | 69cc315ac143b3dc4ba971f3c3e0cb0e4a4cb3b5 (patch) | |
tree | 33faae756db80d573f14fc289f3a5efb50db50f3 /configure.ac | |
parent | 9cf66da0c66f848c4c8929dbe727f88f5add2486 (diff) | |
download | experiment-player-69cc315ac143b3dc4ba971f3c3e0cb0e4a4cb3b5.tar.gz |
fixed receiving click events on the gtk-player-widget on Windows
a workaround was necessary: after playing a movie, poll every 100ms for
the availability of the event window created by libVLC (in another
thread!) and disable it when found (stopping the g_timeout)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a6fc718..0b0c309 100644 --- a/configure.ac +++ b/configure.ac @@ -131,7 +131,7 @@ case $host in AC_CHECK_HEADERS([windows.h], , [ AC_MSG_ERROR([Missing Windows headers!]) ]) - AC_CHECK_HEADERS([shellapi.h], , [ + AC_CHECK_HEADERS([shellapi.h winuser.h], , [ AC_MSG_ERROR([Missing Windows headers!]) ], [ #include <windows.h> |