mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 18:20:27 +00:00
Fix --disable-udev.
This commit is contained in:
parent
9b6efe540f
commit
d50b395ad8
@ -256,10 +256,12 @@ else
|
||||
HAVE_XVIDEO='no'
|
||||
fi
|
||||
|
||||
check_pkgconf UDEV libudev
|
||||
if [ "$HAVE_UDEV" = "no" ]; then
|
||||
HAVE_UDEV=auto && check_lib UDEV "-ludev"
|
||||
[ "$HAVE_UDEV" = "yes" ] && UDEV_LIBS=-ludev
|
||||
if [ "$HAVE_UDEV" != "no" ]; then
|
||||
check_pkgconf UDEV libudev
|
||||
if [ "$HAVE_UDEV" = "no" ]; then
|
||||
HAVE_UDEV=auto && check_lib UDEV "-ludev"
|
||||
[ "$HAVE_UDEV" = "yes" ] && UDEV_LIBS=-ludev
|
||||
fi
|
||||
fi
|
||||
|
||||
check_lib STRL -lc strlcpy
|
||||
|
Loading…
Reference in New Issue
Block a user