mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
build: Fix AM_CONDITIONAL check for clock_gettime
It was always evaluating to false, so clock_gettime.c was always being included into libcheck. This breaks building on Hurd and causes us to always override clock_gettime() even when it is available. https://bugzilla.gnome.org/show_bug.cgi?id=773813
This commit is contained in:
parent
f8108a0eac
commit
6d96a6d4ad
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ AC_CHECK_LIB([rt], [timer_create, timer_settime, timer_delete])
|
|||
AM_CONDITIONAL(HAVE_TIMER_CREATE_SETTIME_DELETE, test "x$ac_cv_lib_rt_timer_create__timer_settime__timer_delete" = "xyes")
|
||||
|
||||
dnl Allow for checking HAVE_CLOCK_GETTIME in automake files
|
||||
AM_CONDITIONAL(HAVE_CLOCK_GETTIME, test "x$HAVE_CLOCK_GETTIME" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_CLOCK_GETTIME, test "x$CLOCK_GETTIME_FOUND" = "xyes")
|
||||
|
||||
dnl Create _stdint.h in the top-level directory
|
||||
AX_CREATE_STDINT_H
|
||||
|
|
Loading…
Reference in a new issue