configure.ac: Fix list sorting (cosmetic).
This commit is contained in:
parent
122d33d47d
commit
5724a20af7
10
configure.ac
10
configure.ac
|
@ -432,6 +432,11 @@ if test "x$HW_RIGOL_DS1XX2" = "xyes"; then
|
|||
AC_DEFINE(HAVE_HW_RIGOL_DS1XX2, 1, [Rigol DS1xx2 support])
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(HW_SALEAE_LOGIC16, test x$HW_SALEAE_LOGIC16 = xyes)
|
||||
if test "x$HW_SALEAE_LOGIC16" = "xyes"; then
|
||||
AC_DEFINE(HAVE_HW_SALEAE_LOGIC16, 1, [Saleae Logic16 support])
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(HW_SERIAL_DMM, test x$HW_SERIAL_DMM = xyes)
|
||||
if test "x$HW_SERIAL_DMM" = "xyes"; then
|
||||
AC_DEFINE(HAVE_HW_SERIAL_DMM, 1, [Serial DMM support])
|
||||
|
@ -467,11 +472,6 @@ if test "x$HW_ZEROPLUS_LOGIC_CUBE" = "xyes"; then
|
|||
AC_DEFINE(HAVE_HW_ZEROPLUS_LOGIC_CUBE, 1, [ZEROPLUS Logic Cube support])
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(HW_SALEAE_LOGIC16, test x$HW_SALEAE_LOGIC16 = xyes)
|
||||
if test "x$HW_SALEAE_LOGIC16" = "xyes"; then
|
||||
AC_DEFINE(HAVE_HW_SALEAE_LOGIC16, 1, [Saleae Logic16 support])
|
||||
fi
|
||||
|
||||
# Checks for header files.
|
||||
# These are already checked: inttypes.h stdint.h stdlib.h string.h unistd.h.
|
||||
AC_CHECK_HEADERS([fcntl.h sys/time.h termios.h])
|
||||
|
|
Loading…
Reference in New Issue