2009-08-06 16:27:12 +00:00
|
|
|
dnl Check for things that check needs/wants and that we don't check for already
|
|
|
|
dnl AM_GST_CHECK_CHECKS()
|
|
|
|
|
|
|
|
AC_DEFUN([AG_GST_CHECK_CHECKS],
|
|
|
|
[
|
|
|
|
AC_MSG_NOTICE([Running check unit test framework checks now...])
|
|
|
|
|
|
|
|
CHECK_MAJOR_VERSION=0
|
2016-12-09 09:48:11 +00:00
|
|
|
CHECK_MINOR_VERSION=10
|
|
|
|
CHECK_MICRO_VERSION=0
|
2009-08-06 16:27:12 +00:00
|
|
|
CHECK_VERSION=$CHECK_MAJOR_VERSION.$CHECK_MINOR_VERSION.$CHECK_MICRO_VERSION
|
|
|
|
|
|
|
|
AC_SUBST(CHECK_MAJOR_VERSION)
|
|
|
|
AC_SUBST(CHECK_MINOR_VERSION)
|
|
|
|
AC_SUBST(CHECK_MICRO_VERSION)
|
|
|
|
AC_SUBST(CHECK_VERSION)
|
|
|
|
|
2009-12-18 21:26:01 +00:00
|
|
|
dnl Checks for header files and declarations
|
2012-01-01 15:38:08 +00:00
|
|
|
AC_CHECK_HEADERS([unistd.h sys/wait.h sys/time.h], [], [], [AC_INCLUDES_DEFAULT])
|
2009-08-06 16:27:12 +00:00
|
|
|
|
2016-12-09 09:48:11 +00:00
|
|
|
dnl Check for localtime_r()
|
2009-12-18 21:26:01 +00:00
|
|
|
AC_CHECK_FUNCS([localtime_r])
|
2016-12-09 09:48:11 +00:00
|
|
|
AM_CONDITIONAL(HAVE_LOCALTIME_R, test "x$ac_cv_func_localtime_r" = "xyes")
|
|
|
|
|
|
|
|
dnl Check for gettimeofday()
|
|
|
|
AC_CHECK_FUNCS([gettimeofday])
|
|
|
|
AM_CONDITIONAL(HAVE_GETTIMEOFDAY, test "x$ac_cv_func_gettimeofday" = "xyes")
|
2009-12-18 21:26:01 +00:00
|
|
|
|
check: Apply GStreamer-specific patches
Reintroduced patches:
* Make sure that fail_if(1) actually fails
from commit 9f99d056a263e71a5e6181224829def906cf0226
New patches due to updated libcheck (based on 0.9.14):
* Checks in m4/check-checks.m4 to cater for new dependencies
* Conditional compile-time compat POSIX fallbacks for libcheck
* Avoid relative paths for libcheck header files
* Make timer_create() usage depend on posix timers, not librt
* Rely on default AX_PTHREAD behavior to allow HAVE_PTHREAD to be used
when checking for types and functions (like clock_gettime())
* Avoid double declaration of clock_gettime() when availabe outside of
librt by making compat clock_gettime() declaration conditional
* check 0.9.9 renamed _fail_unless() and 0.9.12 later renamed it again
to _ck_assert_failed(), so ASSERT_{CRITICAL,WARNING}() now calls this
function
* Remove libcheck fallback infrastructure for malloc(), realloc(),
gettimeofday() and snprintf() since either they appear to be
available or they introduce even more dependencies.
The result is an embedded check in gstreamer that has been tested by
running check tests in core, -base, -good, -bad, -ugly and rtsp-server
on Linux, OSX and Windows.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
2014-11-15 12:26:47 +00:00
|
|
|
dnl Check for getpid() and _getpid()
|
|
|
|
AC_CHECK_FUNCS([getpid _getpid])
|
|
|
|
|
|
|
|
dnl Check for strdup() and _strdup()
|
|
|
|
AC_CHECK_DECLS([strdup])
|
|
|
|
AC_CHECK_FUNCS([_strdup])
|
2016-12-09 09:48:11 +00:00
|
|
|
AM_CONDITIONAL(HAVE_STRDUP, test "x$ac_cv_have_decl_strdup" = "xyes" -o "x$ac_cv_func__strdup" = "xyes")
|
|
|
|
|
|
|
|
dnl Check for getline()
|
|
|
|
AC_CHECK_FUNCS([getline])
|
|
|
|
AM_CONDITIONAL(HAVE_GETLINE, test "x$ac_cv_func_getline" = "xyes")
|
check: Apply GStreamer-specific patches
Reintroduced patches:
* Make sure that fail_if(1) actually fails
from commit 9f99d056a263e71a5e6181224829def906cf0226
New patches due to updated libcheck (based on 0.9.14):
* Checks in m4/check-checks.m4 to cater for new dependencies
* Conditional compile-time compat POSIX fallbacks for libcheck
* Avoid relative paths for libcheck header files
* Make timer_create() usage depend on posix timers, not librt
* Rely on default AX_PTHREAD behavior to allow HAVE_PTHREAD to be used
when checking for types and functions (like clock_gettime())
* Avoid double declaration of clock_gettime() when availabe outside of
librt by making compat clock_gettime() declaration conditional
* check 0.9.9 renamed _fail_unless() and 0.9.12 later renamed it again
to _ck_assert_failed(), so ASSERT_{CRITICAL,WARNING}() now calls this
function
* Remove libcheck fallback infrastructure for malloc(), realloc(),
gettimeofday() and snprintf() since either they appear to be
available or they introduce even more dependencies.
The result is an embedded check in gstreamer that has been tested by
running check tests in core, -base, -good, -bad, -ugly and rtsp-server
on Linux, OSX and Windows.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
2014-11-15 12:26:47 +00:00
|
|
|
|
2015-03-08 19:42:38 +00:00
|
|
|
dnl Check for mkstemp
|
|
|
|
AC_CHECK_FUNCS([mkstemp])
|
|
|
|
|
check: Apply GStreamer-specific patches
Reintroduced patches:
* Make sure that fail_if(1) actually fails
from commit 9f99d056a263e71a5e6181224829def906cf0226
New patches due to updated libcheck (based on 0.9.14):
* Checks in m4/check-checks.m4 to cater for new dependencies
* Conditional compile-time compat POSIX fallbacks for libcheck
* Avoid relative paths for libcheck header files
* Make timer_create() usage depend on posix timers, not librt
* Rely on default AX_PTHREAD behavior to allow HAVE_PTHREAD to be used
when checking for types and functions (like clock_gettime())
* Avoid double declaration of clock_gettime() when availabe outside of
librt by making compat clock_gettime() declaration conditional
* check 0.9.9 renamed _fail_unless() and 0.9.12 later renamed it again
to _ck_assert_failed(), so ASSERT_{CRITICAL,WARNING}() now calls this
function
* Remove libcheck fallback infrastructure for malloc(), realloc(),
gettimeofday() and snprintf() since either they appear to be
available or they introduce even more dependencies.
The result is an embedded check in gstreamer that has been tested by
running check tests in core, -base, -good, -bad, -ugly and rtsp-server
on Linux, OSX and Windows.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
2014-11-15 12:26:47 +00:00
|
|
|
dnl Check for fork
|
|
|
|
AC_CHECK_FUNCS([fork], HAVE_FORK=1, HAVE_FORK=0)
|
|
|
|
AC_SUBST(HAVE_FORK)
|
|
|
|
|
|
|
|
dnl Check for alarm, localtime_r and strsignal
|
|
|
|
dnl First check for time.h as it might be used by localtime_r
|
|
|
|
AC_CHECK_HEADERS([time.h])
|
|
|
|
AC_CHECK_DECLS([alarm, localtime_r, strsignal], [], [], [
|
|
|
|
AC_INCLUDES_DEFAULT
|
|
|
|
#if HAVE_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif /* HAVE_TIME_H */
|
|
|
|
])
|
|
|
|
AC_CHECK_FUNCS([alarm setitimer strsignal])
|
|
|
|
AM_CONDITIONAL(HAVE_ALARM, test "x$ac_cv_func_alarm" = "xyes")
|
|
|
|
AM_CONDITIONAL(HAVE_LOCALTIME_R, test "x$ac_cv_func_localtime_r" = "xyes")
|
|
|
|
AM_CONDITIONAL(HAVE_STRSIGNAL, test "x$ac_cv_func_strsignal" = "xyes")
|
|
|
|
|
|
|
|
dnl Check if struct timespec/itimerspec are defined in time.h. If not, we need
|
|
|
|
dnl to define it in libs/gst/check/libcheck/libcompat.h. Note the optional
|
|
|
|
dnl inclusion of pthread.h. On MinGW(-w64), the pthread.h file contains the
|
|
|
|
dnl timespec/itimerspec definitions.
|
|
|
|
AC_CHECK_MEMBERS([struct timespec.tv_sec, struct timespec.tv_nsec], [],
|
|
|
|
[AC_DEFINE_UNQUOTED(STRUCT_TIMESPEC_DEFINITION_MISSING, 1,
|
|
|
|
[Need to define the timespec structure])], [
|
|
|
|
#include <time.h>
|
|
|
|
#if HAVE_PTHREAD
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif /* HAVE_PTHREAD */
|
|
|
|
])
|
|
|
|
AC_CHECK_MEMBERS([struct itimerspec.it_interval, struct itimerspec.it_value],
|
|
|
|
[], [AC_DEFINE_UNQUOTED(STRUCT_ITIMERSPEC_DEFINITION_MISSING, 1,
|
|
|
|
[Need to define the itimerspec structure])], [
|
|
|
|
#include <time.h>
|
|
|
|
#if HAVE_PTHREAD
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif /* HAVE_PTHREAD */
|
|
|
|
])
|
|
|
|
|
2016-12-09 09:48:11 +00:00
|
|
|
dnl Check if types timer_t/clockid_t are defined. If not, we need to define it
|
|
|
|
dnl in libs/gst/check/libcheck/libcompat/libcompat.h. Note the optional
|
|
|
|
dnl inclusion of pthread.h. On MinGW(-w64), the pthread.h file contains the
|
check: Apply GStreamer-specific patches
Reintroduced patches:
* Make sure that fail_if(1) actually fails
from commit 9f99d056a263e71a5e6181224829def906cf0226
New patches due to updated libcheck (based on 0.9.14):
* Checks in m4/check-checks.m4 to cater for new dependencies
* Conditional compile-time compat POSIX fallbacks for libcheck
* Avoid relative paths for libcheck header files
* Make timer_create() usage depend on posix timers, not librt
* Rely on default AX_PTHREAD behavior to allow HAVE_PTHREAD to be used
when checking for types and functions (like clock_gettime())
* Avoid double declaration of clock_gettime() when availabe outside of
librt by making compat clock_gettime() declaration conditional
* check 0.9.9 renamed _fail_unless() and 0.9.12 later renamed it again
to _ck_assert_failed(), so ASSERT_{CRITICAL,WARNING}() now calls this
function
* Remove libcheck fallback infrastructure for malloc(), realloc(),
gettimeofday() and snprintf() since either they appear to be
available or they introduce even more dependencies.
The result is an embedded check in gstreamer that has been tested by
running check tests in core, -base, -good, -bad, -ugly and rtsp-server
on Linux, OSX and Windows.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
2014-11-15 12:26:47 +00:00
|
|
|
dnl timer_t/clockid_t definitions.
|
|
|
|
AC_CHECK_TYPE(timer_t, [], [
|
|
|
|
AC_DEFINE([timer_t], [int], [timer_t])
|
|
|
|
], [
|
|
|
|
AC_INCLUDES_DEFAULT
|
|
|
|
#if HAVE_PTHREAD
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif /* HAVE_PTHREAD */
|
|
|
|
])
|
|
|
|
AC_CHECK_TYPE(clockid_t, [], [
|
|
|
|
AC_DEFINE([clockid_t], [int], [clockid_t])
|
|
|
|
], [
|
|
|
|
AC_INCLUDES_DEFAULT
|
|
|
|
#if HAVE_PTHREAD
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif /* HAVE_PTHREAD */
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl Check for POSIX timer functions in librt
|
|
|
|
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
|
2016-11-02 08:31:38 +00:00
|
|
|
AM_CONDITIONAL(HAVE_CLOCK_GETTIME, test "x$CLOCK_GETTIME_FOUND" = "xyes")
|
2009-12-18 21:26:01 +00:00
|
|
|
|
|
|
|
dnl Create _stdint.h in the top-level directory
|
2009-07-16 23:46:32 +00:00
|
|
|
AX_CREATE_STDINT_H
|
2009-08-06 16:27:12 +00:00
|
|
|
|
2009-12-18 21:26:01 +00:00
|
|
|
dnl Disable subunit support for the time being
|
|
|
|
enable_subunit=false
|
|
|
|
|
|
|
|
if test xfalse = x"$enable_subunit"; then
|
|
|
|
ENABLE_SUBUNIT="0"
|
|
|
|
else
|
|
|
|
ENABLE_SUBUNIT="1"
|
|
|
|
fi
|
|
|
|
AC_SUBST(ENABLE_SUBUNIT)
|
|
|
|
AC_DEFINE_UNQUOTED(ENABLE_SUBUNIT, $ENABLE_SUBUNIT, [Subunit protocol result output])
|
|
|
|
|
|
|
|
AM_CONDITIONAL(SUBUNIT, test x"$enable_subunit" != "xfalse")
|
|
|
|
|
2009-08-06 16:27:12 +00:00
|
|
|
])
|