mirror of https://github.com/encounter/SDL.git
configury: allow libusb-less hidapi for macosx.
This commit is contained in:
parent
c37c6cbbca
commit
59ea0735f0
|
@ -24221,6 +24221,12 @@ fi
|
||||||
CFLAGS="$save_CFLAGS"
|
CFLAGS="$save_CFLAGS"
|
||||||
if test x$have_libusb_h = xyes; then
|
if test x$have_libusb_h = xyes; then
|
||||||
hidapi_support=yes
|
hidapi_support=yes
|
||||||
|
elif test x$onlylibusb = xno; then
|
||||||
|
case "$host" in
|
||||||
|
*-*-darwin* )
|
||||||
|
hidapi_support=yes
|
||||||
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -24236,6 +24242,12 @@ $as_echo "#define SDL_JOYSTICK_HIDAPI 1" >>confdefs.h
|
||||||
if test x$onlylibusb = xyes; then
|
if test x$onlylibusb = xyes; then
|
||||||
SOURCES="$SOURCES $srcdir/src/hidapi/libusb/hid.c"
|
SOURCES="$SOURCES $srcdir/src/hidapi/libusb/hid.c"
|
||||||
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBUSB_LIBS"
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBUSB_LIBS"
|
||||||
|
elif test x$have_libusb_h != xyes ; then
|
||||||
|
case "$host" in
|
||||||
|
*-*-darwin* )
|
||||||
|
SOURCES="$SOURCES $srcdir/src/hidapi/mac/hid.c"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
else
|
else
|
||||||
if test x$have_loadso != xyes; then
|
if test x$have_loadso != xyes; then
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You must have SDL_LoadObject() support for dynamic libusb loading" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You must have SDL_LoadObject() support for dynamic libusb loading" >&5
|
||||||
|
|
12
configure.ac
12
configure.ac
|
@ -3236,6 +3236,12 @@ AS_HELP_STRING([--enable-hidapi], [use HIDAPI for low level joystick drivers [[d
|
||||||
CFLAGS="$save_CFLAGS"
|
CFLAGS="$save_CFLAGS"
|
||||||
if test x$have_libusb_h = xyes; then
|
if test x$have_libusb_h = xyes; then
|
||||||
hidapi_support=yes
|
hidapi_support=yes
|
||||||
|
elif test x$onlylibusb = xno; then
|
||||||
|
case "$host" in
|
||||||
|
*-*-darwin* )
|
||||||
|
hidapi_support=yes
|
||||||
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -3249,6 +3255,12 @@ AS_HELP_STRING([--enable-hidapi], [use HIDAPI for low level joystick drivers [[d
|
||||||
if test x$onlylibusb = xyes; then
|
if test x$onlylibusb = xyes; then
|
||||||
SOURCES="$SOURCES $srcdir/src/hidapi/libusb/hid.c"
|
SOURCES="$SOURCES $srcdir/src/hidapi/libusb/hid.c"
|
||||||
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBUSB_LIBS"
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBUSB_LIBS"
|
||||||
|
elif test x$have_libusb_h != xyes ; then
|
||||||
|
case "$host" in
|
||||||
|
*-*-darwin* )
|
||||||
|
SOURCES="$SOURCES $srcdir/src/hidapi/mac/hid.c"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
else
|
else
|
||||||
if test x$have_loadso != xyes; then
|
if test x$have_loadso != xyes; then
|
||||||
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libusb loading])
|
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libusb loading])
|
||||||
|
|
Loading…
Reference in New Issue