blob: 9ad1009cc96223a6e09e6cb56d0e57083645b0f2 [file] [log] [blame]
# Check if the platform has librt
#
AC_DEFUN([AC_RT],
[
if test "$enable_librt" = "yes"; then
librt="-lrt"
else
librt=""
fi
AC_SUBST(librt)
])