Commit ce09ec77 authored by Clément Stenac's avatar Clément Stenac

modules/control/joystick.c: Joystick control module (linux only)

disabled by default, use --enable-joystick & --extraintf joystick

actions are:
	left-right: variable speed seek
	up-down: browse the playlist
	button 1: play/pause
	button 2: fullscreen
parent d523d1af
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.36 2003/07/19 14:14:22 sigmunau Exp $
dnl $Id: configure.ac,v 1.37 2003/07/20 08:30:41 zorglub Exp $
AC_INIT(vlc,0.6.0)
......@@ -2897,6 +2897,19 @@ then
fi
fi
dnl
dnl Joystick plugin
dnl
AC_ARG_ENABLE(joystick,
[ --enable-joystick joystick control (default disabled)])
if test "${enable_joystick}" = "yes"
then
AC_CHECK_HEADER( linux/joystick.h,
[AX_ADD_PLUGINS([joystick])]
)
fi
dnl
dnl corba (ORBit) plugin
dnl
......
SOURCES_gestures = gestures.c
SOURCES_http = http.c
SOURCES_joystick = joystick.c
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment