mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
Use AC_COMPILE_IFELSE for the monotonic clock test. (#362918, Han-Wen
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é)
This commit is contained in:
parent
10d14998d8
commit
d4dc24fc1b
@ -1,5 +1,8 @@
|
||||
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>
|
||||
|
11
configure.in
11
configure.in
@ -867,20 +867,17 @@ AC_CHECK_FUNCS(clock_gettime, [], [
|
||||
])
|
||||
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user