2006-12-16 Matthias Clasen <mclasen@redhat.com>
+ * configure.in: Use AC_COMPILE_IFELSE for the monotonic
+ clock test. (#362918, Han-Wen Nienhuys, Jeremy Lainé)
+
* glib/gstring.c: Move documentation inline.
2006-12-15 Matthias Clasen <mclasen@redhat.com>
])
AC_CACHE_CHECK(for monotonic clocks,
- glib_cv_monotonic_clock,AC_TRY_RUN([
+ glib_cv_monotonic_clock,AC_COMPILE_IFELSE([
#include <time.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
int main() {
-#if defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0 && defined(CLOCK_MONOTONIC)
- return 0;
-#else
- return 1;
+#if !(defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0 && defined(CLOCK_MONOTONIC))
+ #error No monotonic clock
#endif
+ return 0;
}],glib_cv_monotonic_clock=yes,glib_cv_monotonic_clock=no))
-
-GLIB_ASSERT_SET(glib_cv_monotonic_clock)
if test "$glib_cv_monotonic_clock" = "yes"; then
AC_DEFINE(HAVE_MONOTONIC_CLOCK,1,[Have a monotonic clock])
fi