configure.ac: formatting cleanups

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-12-19 15:51:48 +01:00
parent a1a1241b20
commit 643aebbbc3

View File

@@ -99,27 +99,19 @@ AM_CONDITIONAL(EVDEV_BACKEND, [test "x$evdev_backend" = xyes])
if test "x$evdev_backend" = xyes; then
AC_DEFINE(EVDEV_BACKEND, 1, [Compile Linux evdev backend])
fi
# -----------------------------------------------------------------------------
AC_CONFIG_FILES([Makefile
src/Makefile
man/Makefile
config/Makefile
])
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile config/Makefile])
AC_OUTPUT
# -----------------------------------------------------------------------------
AS_ECHO()
AS_ECHO("Building Linux joystick backend: $linux_backend")
AS_ECHO("Building Linux evdev backend: $evdev_backend")
AS_ECHO("Building BSD usbhid backend: $bsd_backend")
if test "x$linux_backend" != "xyes" -a \
"x$bsd_backend" != "xyes" -a \
"x$evdev_backend" != "xyes"; then
"x$bsd_backend" != "xyes" -a \
"x$evdev_backend" != "xyes"; then
AC_MSG_ERROR([No backends were found. Your operating system is not
supported by the joystick driver. Contact
xorg@lists.freedesktop.org if you are interested in
porting it.])
xlibre@freelists.org if you are interested in porting it.])
fi