--- libaitsched/configure.in 2026/05/19 15:53:56 1.61 +++ libaitsched/configure.in 2026/05/20 03:07:51 1.61.2.2 @@ -1,8 +1,8 @@ # # $Author: misho $ -# $Id: configure.in,v 1.61 2026/05/19 15:53:56 misho Exp $ +# $Id: configure.in,v 1.61.2.2 2026/05/20 03:07:51 misho Exp $ # -AC_INIT(libaitsched, 8.5, misho@elwix.org) +AC_INIT(libaitsched, 8.6, misho@elwix.org) AC_CONFIG_SRCDIR([src/aitsched.c]) AC_CONFIG_HEADERS([inc/config.h]) @@ -136,6 +136,20 @@ AC_ARG_WITH(elwix, ;; esac ],) AC_MSG_RESULT($ELWIX) + +ATOMIC=no +AC_MSG_CHECKING(Enable atomic lock support) +AC_ARG_ENABLE(atomic, + [ --enable-atomic Enable atomic lock support ], + [ ATOMIC=$enableval + case "$enableval" in + yes) + AC_DEFINE(ATOMIC_SUPPORT,, [atomic lock support]) + ;; + *) + ;; + esac ], ) +AC_MSG_RESULT($ATOMIC) DEBIAN_ARCH=$target_cpu AS_IF([ test "x$target_cpu" = "xarm6l" -o "x$target_cpu" = "xarm7l" ], DEBIAN_ARCH="armhf")