3 dnl initialize autoconf
4 dnl when going to/from release please set the nano (fourth number) right !
5 dnl releases only do Wall, git and prerelease does Werror too
7 AC_INIT([GStreamer],[1.15.0.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
10 dnl initialize automake (we require GNU make)
11 AM_INIT_AUTOMAKE([-Wno-portability 1.14 no-dist-gzip dist-xz tar-ustar subdir-objects])
13 dnl define PACKAGE_VERSION_* variables
16 dnl check if this is a release version
17 AS_NANO(GST_GIT="no", GST_GIT="yes")
19 dnl can autoconf find the source ?
20 AC_CONFIG_SRCDIR([gst/gst.c])
22 dnl define the output header for config
23 AC_CONFIG_HEADERS([config.h])
25 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
26 AM_MAINTAINER_MODE([enable])
28 dnl sets host_* variables
31 dnl use pretty build output by default
32 AM_SILENT_RULES([yes])
34 dnl GStreamer versioning, this is mostly informational
35 GST_VERSION_MAJOR=$PACKAGE_VERSION_MAJOR
36 GST_VERSION_MINOR=$PACKAGE_VERSION_MINOR
37 GST_VERSION_MICRO=$PACKAGE_VERSION_MICRO
38 GST_VERSION_NANO=$PACKAGE_VERSION_NANO
39 AC_SUBST(GST_VERSION_MAJOR)
40 AC_SUBST(GST_VERSION_MINOR)
41 AC_SUBST(GST_VERSION_MICRO)
42 AC_SUBST(GST_VERSION_NANO)
44 dnl our libraries and install dirs use GST_API_VERSION in the filename
45 dnl to allow side-by-side installation of different API versions
47 AC_SUBST(GST_API_VERSION)
48 AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION",
49 [GStreamer API Version])
51 dnl CURRENT, REVISION, AGE
52 dnl - library source changed -> increment REVISION
53 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
54 dnl - interfaces added -> increment AGE
55 dnl - interfaces removed -> AGE = 0
57 dnl Keep CURRENT as MINOR * 100 + MICRO
62 dnl 1.10.9 (who knows) => 1009
64 dnl sets GST_LT_LDFLAGS
65 AS_LIBTOOL(GST, 1500, 0, 1500)
67 dnl *** autotools stuff ****
69 dnl allow for different autotools
70 AS_AUTOTOOLS_ALTERNATE
72 dnl Add parameters for aclocal (keep in sync with Makefile.am)
73 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
76 dnl the version check needs to stay here because autopoint greps for it
77 AM_GNU_GETTEXT_VERSION([0.17])
78 AM_GNU_GETTEXT([external])
79 AG_GST_GETTEXT([gstreamer-$GST_API_VERSION])
81 dnl *** check for arguments to configure ***
83 AG_GST_ARG_DISABLE_FATAL_WARNINGS
84 AG_GST_ARG_ENABLE_EXTRA_CHECKS
86 dnl subsystems - can influence other decisions so needs to be high up
87 dnl we need to AM_CONDITIONAL them here for automake 1.6.x compatibility
88 AG_GST_CHECK_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
89 AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, test "x$GST_DISABLE_GST_DEBUG" = "xyes")
90 AG_GST_CHECK_SUBSYSTEM_DISABLE(GST_TRACER_HOOKS,[tracing subsystem hooks])
91 AM_CONDITIONAL(GST_DISABLE_GST_TRACER_HOOKS, test "x$GST_DISABLE_GST_TRACER_HOOKS" = "xyes")
92 if test "x$GST_DISABLE_GST_TRACER_HOOKS" = xyes; then
93 AC_DEFINE(GST_DISABLE_GST_TRACER_HOOKS, 1,
94 [Define if tracing subsystem hooks is disabled])
96 AG_GST_CHECK_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
97 AM_CONDITIONAL(GST_DISABLE_PARSE, test "x$GST_DISABLE_PARSE" = "xyes")
98 if test "x$GST_DISABLE_PARSE" = xyes; then
99 AC_DEFINE(GST_DISABLE_PARSE, 1,
100 [Define if pipeline parsing code is disabled])
102 AG_GST_CHECK_SUBSYSTEM_DISABLE(OPTION_PARSING,[option parsing when gst_init])
103 AM_CONDITIONAL(GST_DISABLE_OPTION_PARSING, test "x$GST_DISABLE_OPTION_PARSING" = "xyes")
104 if test "x$GST_DISABLE_OPTION_PARSING" = xyes; then
105 AC_DEFINE(GST_DISABLE_OPTION_PARSING, 1,
106 [Define if option parsing is disabled])
108 AG_GST_CHECK_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
109 AM_CONDITIONAL(GST_DISABLE_REGISTRY, test "x$GST_DISABLE_REGISTRY" = "xyes")
110 dnl define a substitution to use in docs/gst/gstreamer.types
111 if test "x$GST_DISABLE_REGISTRY" = "xyes"
113 GST_REGISTRY_DOC_TYPES="%"
115 GST_REGISTRY_DOC_TYPES=
117 AC_SUBST(GST_REGISTRY_DOC_TYPES)
118 AG_GST_CHECK_SUBSYSTEM_DISABLE(PLUGIN,[plugin])
119 AM_CONDITIONAL(GST_DISABLE_PLUGIN, test "x$GST_DISABLE_PLUGIN" = "xyes")
128 AG_GST_ARG_WITH_PKG_CONFIG_PATH
129 AG_GST_ARG_WITH_PACKAGE_NAME
130 AG_GST_ARG_WITH_PACKAGE_ORIGIN
132 AG_GST_PKG_CONFIG_PATH
134 AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO([$PACKAGE_VERSION_NANO],
135 ["${srcdir}/gstreamer.doap"],
136 [$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_MICRO])
138 # We only use this when building with MSVC, which is only done with the
139 # alternate Meson build system files
140 GSTCONFIG_BUILT_WITH_MSVC=0
141 AC_SUBST(GSTCONFIG_BUILT_WITH_MSVC)
143 dnl check for bash completion
144 AC_ARG_WITH([bash-completion-dir],
145 AS_HELP_STRING([--with-bash-completion-dir[=PATH]],
146 [Install the bash auto-completion script in this directory. @<:@default=yes@:>@]),
148 [with_bash_completion_dir=yes])
150 if test "x$with_bash_completion_dir" = "xyes"
154 if test "x$prefix" != "xNONE"
156 extra_args="--define-variable=prefix=\"$prefix\""
159 PKG_CHECK_MODULES([BASH_COMPLETION], [bash-completion >= 2.0],
161 BASH_COMPLETION_DIR="`eval pkg-config $extra_args --variable=completionsdir bash-completion`"
162 BASH_HELPERS_DIR="`eval pkg-config $extra_args --variable=helpersdir bash-completion`"
165 BASH_COMPLETION_DIR="$datadir/bash-completion/completions"
166 BASH_HELPERS_DIR="$datadir/bash-completion/helpers"
169 BASH_COMPLETION_DIR="$with_bash_completion_dir/completions"
170 BASH_HELPERS_DIR="$with_bash_completion_dir/helpers"
173 AC_SUBST([BASH_COMPLETION_DIR])
174 AC_SUBST([BASH_HELPERS_DIR])
175 AM_CONDITIONAL([ENABLE_BASH_COMPLETION],[test "x$with_bash_completion_dir" != "xno"])
177 dnl If only building static libraries, define GST_STATIC_COMPILATION. This is
178 dnl needed only on Windows, but it doesn't hurt to have it everywhere.
179 if test x$enable_static = xyes -a x$enable_shared = xno; then
180 GST_OBJ_STATIC_CFLAGS="-DGST_STATIC_COMPILATION"
183 dnl building of tests
185 AS_HELP_STRING([--disable-tests],[disable building test apps]),
187 case "${enableval}" in
188 yes) BUILD_TESTS=yes ;;
189 no) BUILD_TESTS=no ;;
190 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
193 [BUILD_TESTS=yes]) dnl Default value
194 AM_CONDITIONAL(BUILD_TESTS, test "x$BUILD_TESTS" = "xyes")
196 dnl tests known to fail
197 AC_ARG_ENABLE(failing-tests,
198 AS_HELP_STRING([--disable-failing-tests],[disable building tests known to fail]),
200 case "${enableval}" in
201 yes) BUILD_FAILING_TESTS=yes ;;
202 no) BUILD_FAILING_TESTS=no ;;
203 *) AC_MSG_ERROR(bad value ${enableval} for --disable-failing-tests) ;;
206 [BUILD_FAILING_TESTS=no]) dnl Default value
207 AM_CONDITIONAL(BUILD_FAILING_TESTS, test "x$BUILD_FAILING_TESTS" = "xyes")
208 if test x$BUILD_FAILING_TESTS = xyes; then
209 AC_MSG_WARN([building tests known to fail, use --disable-failing-tests to disable])
211 AC_MSG_WARN([Sissy ! By asking to not build the tests known to fail, you hereby waive your right to customer support. If you do not agree with this EULA, please press Ctrl-C before the next line is printed. By allowing the next line to be printed, you expressly acknowledge your acceptance of this EULA.])
214 dnl building of benchmarks
215 AC_ARG_ENABLE(benchmarks,
216 AS_HELP_STRING([--disable-benchmarks],[disable building benchmarks apps]),
218 case "${enableval}" in
219 yes) BUILD_BENCHMARKS=yes ;;
220 no) BUILD_BENCHMARKS=no ;;
221 *) AC_MSG_ERROR(bad value ${enableval} for --disable-benchmarks) ;;
224 [BUILD_BENCHMARKS=yes]) dnl Default value
225 AM_CONDITIONAL(BUILD_BENCHMARKS, test "x$BUILD_BENCHMARKS" = "xyes")
227 dnl building of tools
229 AS_HELP_STRING([--disable-tools],[disable building tools]),
231 case "${enableval}" in
232 yes) BUILD_TOOLS=yes ;;
233 no) BUILD_TOOLS=no ;;
234 *) AC_MSG_ERROR(bad value ${enableval} for --disable-tools) ;;
237 [BUILD_TOOLS=yes]) dnl Default value
238 AM_CONDITIONAL(BUILD_TOOLS, test "x$BUILD_TOOLS" = "xyes")
240 dnl poison destroyed objects
241 AC_ARG_ENABLE(poisoning,
242 AS_HELP_STRING([--enable-poisoning],[enable poisoning of deallocated objects]),
244 case "${enableval}" in
245 yes) USE_POISONING=yes ;;
246 no) USE_POISONING=no ;;
247 *) AC_MSG_ERROR(bad value ${enableval} for --enable-poisoning) ;;
250 [USE_POISONING=no]) dnl Default value
251 if test "x$USE_POISONING" = xyes; then
252 AC_DEFINE(USE_POISONING, 1,
253 [Define if we should poison deallocated memory])
256 dnl PTP support parts
257 AC_MSG_CHECKING([whether PTP support can be enabled])
260 dnl Can't run on Android because of permissions
263 mingw*|pw32*|cygwin*)
264 dnl Not ported to Windows yet
268 dnl Can't run on iOS because of permissions
269 AC_CHECK_HEADER(MobileCoreServices/MobileCoreServices.h, HAVE_PTP="no", HAVE_PTP="yes", [-])
271 linux*|darwin*|solaris*|netbsd*|freebsd*|openbsd*|kfreebsd*|dragonfly*|gnu*)
278 AC_MSG_RESULT([$HAVE_PTP])
280 dnl user/group to change to in gst-ptp-helper
281 AC_ARG_WITH([ptp-helper-setuid-user],
282 AS_HELP_STRING([--with-ptp-helper-setuid-user],[User to switch to when installing gst-ptp-helper setuid root]),
284 if test "x$withval" != "x"
286 AC_DEFINE_UNQUOTED(HAVE_PTP_HELPER_SETUID_USER, "$withval", [PTP helper setuid user])
291 dnl group/group to change to in gst-ptp-helper
292 AC_ARG_WITH([ptp-helper-setuid-group],
293 AS_HELP_STRING([--with-ptp-helper-setuid-group],[Group to switch to when installing gst-ptp-helper setuid root]),
295 if test "x$withval" != "x"
297 AC_DEFINE_UNQUOTED(HAVE_PTP_HELPER_SETUID_GROUP, "$withval", [PTP helper setuid group])
303 ptp-helper-permissions,
305 [--with-ptp-helper-permissions],
306 [how to gain PTP permissions (none, setuid-root, capabilities, auto)]),
308 [with_ptp_helper_permissions=auto])
311 AG_GST_CHECK_LIBHEADER(CAP, cap,
316 gst_ptp_have_cap=yes)
318 AC_PATH_PROG([SETCAP], [setcap], [no], [$PATH:/usr/bin:/bin:/usr/sbin:/sbin])
320 if test "x$HAVE_PTP" = "xyes"; then
321 AC_DEFINE(HAVE_PTP, 1, [PTP support available])
323 AC_MSG_CHECKING([for SIOCGIFCONF, SIOCGIFFLAGS and SIOCGIFHWADDR])
324 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
326 #include <sys/ioctl.h>
332 ioctl(0, SIOCGIFCONF, &ifc);
333 ioctl(0, SIOCGIFFLAGS, &ifr);
334 ioctl(0, SIOCGIFHWADDR, &ifr);
335 int dummy = ifr.ifr_hwaddr.sa_data[0];
338 AC_DEFINE(HAVE_SIOCGIFCONF_SIOCGIFFLAGS_SIOCGIFHWADDR, 1, [SIOCGIFCONF, SIOCGIFFLAGS and SIOCGIFHWADDR is available])
343 AC_MSG_CHECKING([for getifaddrs() and AF_LINK])
344 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
348 #include <net/if_dl.h>
351 struct ifaddrs *ifaddr;
353 int dummy = (ifaddr->ifa_flags & IFF_LOOPBACK) && ifaddr->ifa_addr->sa_family != AF_LINK;
356 AC_DEFINE(HAVE_GETIFADDRS_AF_LINK, 1, [getifaddrs() and AF_LINK is available])
361 AC_MSG_CHECKING([how to install gst-ptp-helper])
362 if test "x$with_ptp_helper_permissions" = "xauto"; then
363 if test "x$gst_ptp_have_cap" = "xyes" -a "x$SETCAP" != "xno"; then
364 with_ptp_helper_permissions="capabilities"
366 with_ptp_helper_permissions="setuid-root"
369 AC_MSG_RESULT([$with_ptp_helper_permissions])
371 case "$with_ptp_helper_permissions" in
375 AC_DEFINE(HAVE_PTP_HELPER_SETUID, 1,
376 [Use setuid-root for permissions in PTP helper])
379 AC_DEFINE(HAVE_PTP_HELPER_CAPABILITIES, 1,
380 [Use capabilities for permissions in PTP helper])
383 AC_MSG_ERROR(Invalid parameter [$with_ptp_helper_permissions])
389 AM_CONDITIONAL(HAVE_PTP, test "x$HAVE_PTP" = "xyes")
390 AM_CONDITIONAL(HAVE_PTP_HELPER_SETUID, test "x$with_ptp_helper_permissions" = "xsetuid-root")
391 AM_CONDITIONAL(HAVE_PTP_HELPER_CAPABILITIES, test "x$with_ptp_helper_permissions" = "xcapabilities")
393 dnl *** checks for platform ***
395 dnl * hardware/architecture *
397 dnl common/m4/gst-arch.m4
401 dnl check for platform specific settings
406 dnl check for large file support
407 dnl affected plugins must include config.h
410 dnl *** checks for programs ***
416 dnl check if the compiler supports '-c' and '-o' options
419 dnl find an assembler
422 dnl determine if c++ is available on this system
424 dnl CXX may be set to some default even if no c++ compiler is available
425 dnl (thanks autotools!), so just try to compile some c++ code to make sure
427 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ class Foo { int bar; };]], [[]])],[working_cxx=yes],[working_cxx=no])
429 AC_MSG_NOTICE([working c++ compiler found: $working_cxx])
430 AM_CONDITIONAL(HAVE_CXX, test "x$working_cxx" = "xyes")
432 dnl Perl is used in building documentation and in the version checks
433 AC_PATH_PROG(PERL_PATH, perl, no)
434 if test x$PERL_PATH = xno; then
435 AC_MSG_ERROR(Could not find perl)
438 dnl we require flex and bison for building the parser
439 if test "x$GST_DISABLE_PARSE" != xyes; then
444 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
445 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
447 dnl check for gobject-introspection
448 GOBJECT_INTROSPECTION_CHECK([1.31.1])
450 dnl check for documentation tools
451 GTK_DOC_CHECK([1.12])
452 AG_GST_PLUGIN_DOCS([1.12])
454 dnl *** checks for libraries ***
456 dnl check for libm, for sin()
460 dnl *** checks for header files ***
462 dnl check if we have ANSI C header files
465 dnl Check for ucontext.h
466 AC_CHECK_HEADERS([ucontext.h], [], [], [AC_INCLUDES_DEFAULT])
468 dnl Check for sys/socket.h
469 AC_CHECK_HEADERS([sys/socket.h], [HAVE_SYS_SOCKET_H=yes], [HAVE_SYS_SOCKET_H=no], [AC_INCLUDES_DEFAULT])
470 AM_CONDITIONAL(HAVE_SYS_SOCKET_H, test "x$HAVE_SYS_SOCKET_H" = "xyes")
472 dnl check for sys/times.h for tests/examples/adapter/
473 AC_CHECK_HEADERS([sys/times.h], [HAVE_SYS_TIMES_H=yes], [HAVE_SYS_TIME_H=no], [AC_INCLUDES_DEFAULT])
474 AC_CHECK_HEADERS([unistd.h], [HAVE_UNISTD_H=yes], [HAVE_UNISTD_H=no], [AC_INCLUDES_DEFAULT])
475 AM_CONDITIONAL(HAVE_SYS_TIMES_H_AND_UNISTD_H, test "x$HAVE_SYS_TIMES_H" = "xyes" -a "x$HAVE_UNISTD_H" = "xyes")
477 dnl Check for process.h for getpid() on win32
478 AC_CHECK_HEADERS([process.h], [], [], [AC_INCLUDES_DEFAULT])
480 dnl Check for sys/utsname.h for uname
481 AC_CHECK_HEADERS([sys/utsname.h], [], [], [AC_INCLUDES_DEFAULT])
483 dnl Check for stdio_ext.f for __fbufsize
484 AC_CHECK_HEADERS([stdio_ext.h], [], [], [AC_INCLUDES_DEFAULT])
486 dnl check for pthreads
487 dnl without arguments AX_PTHREAD() will do AC_DEFINE(HAVE_PTHREAD)
488 dnl which later checks use in their test code
490 AM_CONDITIONAL(HAVE_PTHREAD, test "x$ax_pthread_ok" = "xyes")
492 dnl check for sys/prctl for setting thread name on Linux
493 AC_CHECK_HEADERS([sys/prctl.h], [], [], [AC_INCLUDES_DEFAULT])
495 dnl check for pthread_setname_np(const char*)
496 dnl which is present on OS X 10.6, iOS 3.2 and above
497 AC_MSG_CHECKING(for pthread_setname_np(const char*))
500 [#include <pthread.h>],
501 [pthread_setname_np("example")])],
503 AC_DEFINE(HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID,1,
504 [Have function pthread_setname_np(const char*)])],
507 dnl check for sys/uio.h for writev()
508 AC_CHECK_HEADERS([sys/uio.h], [], [], [AC_INCLUDES_DEFAULT])
510 dnl Check for valgrind.h
511 dnl separate from HAVE_VALGRIND because you can have the program, but not
513 AC_CHECK_HEADERS([valgrind/valgrind.h], [], [], [AC_INCLUDES_DEFAULT])
515 dnl used in gst/gstpoll.c
516 AC_CHECK_HEADERS([winsock2.h], [HAVE_WINSOCK2_H=yes], [HAVE_WINSOCK2_H=no], [AC_INCLUDES_DEFAULT])
517 AM_CONDITIONAL(HAVE_WINSOCK2_H, test "x$HAVE_WINSOCK2_H" = "xyes")
518 if test "x$HAVE_WINSOCK2_H" = "xyes"; then
519 WIN32_LIBS="-lws2_32"
523 dnl check for GMP/GSL, used by the gst_util_uint64_scale unit test only
524 if test "x$BUILD_TESTS" = "xyes"; then
525 AG_GST_CHECK_LIBHEADER(GMP, gmp,
530 AC_DEFINE(HAVE_GMP, [1],[Have GMP library]))
531 AG_GST_CHECK_LIBHEADER(GSL, gsl,
532 gsl_rng_uniform_int, -lgslcblas,
534 GSL_LIBS="-lgsl -lgslcblas"
536 AC_DEFINE(HAVE_GSL, [1],[Have GSL library]))
539 dnl *** checks for types/defines ***
541 dnl *** checks for structures ***
543 dnl *** checks for compiler characteristics ***
545 dnl check if the compiler supports __uint128_t (gcc)
546 dnl Actually check for 128-bit division, since that's what we use
548 AC_CACHE_CHECK(for __uint128_t, gst_cv_uint128_t,
549 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ ]], [[
550 static __uint128_t v1 = 100;
551 static __uint128_t v2 = 10;
552 static __uint128_t u;
560 if test x$gst_cv_uint128_t = xyes; then
561 AC_DEFINE(HAVE_UINT128_T, 1, [Have __uint128_t type])
564 dnl *** checking for tm_gmtoff ***
565 AC_MSG_CHECKING([for tm_gmtoff])
566 AC_RUN_IFELSE([AC_LANG_SOURCE([[
574 AC_DEFINE(HAVE_TM_GMTOFF,1,[Have tm_gmtoff field in struct tm])],
576 [have_tm_gmtoff="no (cross compiling)"])
577 AC_MSG_RESULT($have_tm_gmtoff)
580 dnl *** checks for library functions ***
582 AC_CHECK_FUNCS([strcasestr])
584 AC_CHECK_FUNCS([gmtime_r])
585 AC_CHECK_FUNCS([localtime_r])
586 AC_CHECK_FUNCS([sigaction])
587 AC_CHECK_FUNCS([getrusage])
588 AM_CONDITIONAL(HAVE_GETRUSAGE, test "x$ac_cv_func_getrusage" = "xyes")
589 AC_CHECK_HEADERS([sys/resource.h])
591 dnl check for fseeko()
593 dnl check for ftello()
594 AC_CHECK_FUNCS([ftello])
596 AC_CHECK_FUNCS([fgetpos])
597 AC_CHECK_FUNCS([fsetpos])
599 dnl check for poll(), ppoll() and pselect()
600 AC_CHECK_HEADERS([sys/poll.h], [], [], [AC_INCLUDES_DEFAULT])
601 AC_CHECK_HEADERS([poll.h], [], [], [AC_INCLUDES_DEFAULT])
602 AC_CHECK_FUNCS([poll])
603 AC_CHECK_FUNCS([ppoll])
604 AC_CHECK_FUNCS([pselect])
606 dnl check for socketpair()
607 AC_CHECK_FUNC(socketpair, [], [
608 AC_CHECK_LIB(socket, socketpair, [
609 SOCKET_LIBS="-lsocket"
610 AC_SUBST(SOCKET_LIBS)
614 dnl ****************************************
615 dnl *** GLib POLL* compatibility defines ***
616 dnl ****************************************
618 AC_MSG_CHECKING([for broken poll])
619 AC_RUN_IFELSE([AC_LANG_SOURCE([[
622 #ifdef HAVE_SYS_POLL_H
623 #include <sys/poll.h>
629 struct pollfd fds[1];
631 fd = open("/dev/null", 1);
633 fds[0].events = POLLIN;
635 if (poll(fds, 1, 0) < 0 || (fds[0].revents & POLLNVAL) != 0) {
636 exit(1); /* Does not work for devices -- fail */
642 AC_DEFINE(BROKEN_POLL,1,[poll doesn't work on devices])],
643 [broken_poll="no (cross compiling)"])
644 AC_MSG_RESULT($broken_poll)
646 dnl check for getpagesize()
647 AC_CHECK_FUNCS([getpagesize])
649 dnl Check for POSIX timers
650 CLOCK_GETTIME_FOUND="no"
651 AC_CHECK_FUNC(clock_gettime, [CLOCK_GETTIME_FOUND="yes"], [
652 AC_CHECK_LIB(rt, clock_gettime, [
653 CLOCK_GETTIME_FOUND="yes"
656 AC_CHECK_LIB(pthread, clock_gettime, [
657 CLOCK_GETTIME_FOUND="yes"
658 LIBS="$LIBS -lpthread"
663 # With XCode 8, clock_gettime will be incorrectly detected as being available
664 # regardless of what version of OS X you target because the symbol is available
665 # in the .tbd file as a weak symbol.
666 # See: https://bugzilla.gnome.org/show_bug.cgi?id=772451
668 # We cannot simply do AC_CHECK_FUNCS with -Wl,-no_weak_imports because the
669 # autoconf check does its own prototype declaration that doesn't trigger that
672 # It's only starting from macOS 10.12 and iOS 10.0 that clock_gettime is
673 # actually available, so we can unconditionally disable it for older versions.
676 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
677 #include <AvailabilityMacros.h>
678 #include <TargetConditionals.h>
679 #if defined(TARGET_OS_MAC)
680 # if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_12
681 # error "Not compiling for OS X 10.12 or later"
684 # if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_10_0
685 # error "Not compiling for iOS 10.0 or later"
689 if test "$CLOCK_GETTIME_FOUND" = "yes"; then
690 AC_MSG_NOTICE([Disabling incorrectly detected clock_gettime on OS X])
692 CLOCK_GETTIME_FOUND="no"
697 if test "$CLOCK_GETTIME_FOUND" = "yes"; then
698 AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Have clock_gettime])
701 AC_CACHE_CHECK(for posix timers, gst_cv_posix_timers,
702 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
708 #if !defined(_POSIX_TIMERS) || _POSIX_TIMERS < 0 || !defined(CLOCK_REALTIME)
709 #error Either _POSIX_TIMERS or CLOCK_REALTIME not defined
712 gst_cv_posix_timers=yes
714 gst_cv_posix_timers=no
718 if test "$gst_cv_posix_timers" = "yes"; then
719 AC_DEFINE(HAVE_POSIX_TIMERS,1,[Have posix timers])
720 GST_HAVE_POSIX_TIMERS_DEFINE="#define GST_HAVE_POSIX_TIMERS 1"
722 GST_HAVE_POSIX_TIMERS_DEFINE="#define GST_HAVE_POSIX_TIMERS 0"
724 AC_SUBST(GST_HAVE_POSIX_TIMERS_DEFINE)
725 AM_CONDITIONAL(GST_HAVE_POSIX_TIMERS, test "$gst_cv_posix_timers" = "yes")
727 AC_CACHE_CHECK(for monotonic clock, gst_cv_monotonic_clock,
728 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
734 #if !defined(_POSIX_MONOTONIC_CLOCK) || _POSIX_MONOTONIC_CLOCK < 0 || !defined(CLOCK_MONOTONIC)
735 #error Either _POSIX_MONOTONIC_CLOCK or CLOCK_MONOTONIC not defined
738 gst_cv_monotonic_clock=yes
740 gst_cv_monotonic_clock=no
744 if test "$gst_cv_monotonic_clock" = "yes"; then
745 AC_DEFINE(HAVE_MONOTONIC_CLOCK,1,[Have a monotonic clock])
746 GST_HAVE_MONOTONIC_CLOCK_DEFINE="#define GST_HAVE_MONOTONIC_CLOCK 1"
748 GST_HAVE_MONOTONIC_CLOCK_DEFINE="#define GST_HAVE_MONOTONIC_CLOCK 0"
750 AC_SUBST(GST_HAVE_MONOTONIC_CLOCK_DEFINE)
751 AM_CONDITIONAL(GST_HAVE_MONOTONIC_CLOCK, test "$gst_cv_monotonic_clock" = "yes")
753 dnl Check for a way to display the function name in debug output
754 AG_GST_CHECK_FUNCTION
756 dnl test if we have dladdr(); we use it for debugging; see gst/gstinfo.c
757 save_cflags="$CFLAGS"
758 CFLAGS="$CFLAGS -D_GNU_SOURCE"
759 AC_CHECK_LIB(dl, dladdr,
760 AC_DEFINE(HAVE_DLADDR, 1, [Defined if we have dladdr ()])
762 CFLAGS="$save_cflags"
764 dnl Check printf stuff
765 if test "x${GST_DISABLE_GST_DEBUG}" != "xyes"; then
766 AC_TYPE_LONG_LONG_INT
767 AC_TYPE_UNSIGNED_LONG_LONG_INT
769 if test x$ac_cv_type_long_long_int$ac_cv_type_unsigned_long_long_int = xyesyes; then
770 AC_DEFINE([HAVE_LONG_LONG], [1], [Define to 1 if the system has the type long long])
773 dnl /usr/share/aclocal/inttypes_h.m4 - ships with gettext apparently
774 gl_AC_HEADER_INTTYPES_H
776 dnl /usr/share/aclocal/stdint_h.m4 - ships with gettext apparently
777 gl_AC_HEADER_STDINT_H
779 AC_CHECK_TYPES(ptrdiff_t)
785 dnl *** checks for dependency libraries ***
789 AG_GST_GLIB_CHECK([$GLIB_REQ])
791 dnl Check for documentation xrefs
792 GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
793 AC_SUBST(GLIB_PREFIX)
795 dnl GTK is optional and only used in examples
798 if test "x$BUILD_EXAMPLES" = "xyes"; then
799 PKG_CHECK_MODULES(GTK, gtk+-3.0 >= $GTK_REQ, HAVE_GTK=yes, HAVE_GTK=no)
803 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
805 dnl libunwind is optionally used by the leaks tracer
806 AC_ARG_WITH([unwind],[AS_HELP_STRING([--with-unwind=yes|no|auto],[use libunwind])],
807 [], [with_unwind=auto])
808 if [ test "x${with_unwind}" != "xno" ]; then
809 PKG_CHECK_MODULES(UNWIND, [libunwind],
812 AC_DEFINE(HAVE_UNWIND, 1, [libunwind available])
813 UNWIND_REQUIRE=libunwind
814 AC_SUBST(UNWIND_REQUIRE)
818 if [ test "x${with_unwind}" = "xyes" ]; then
819 AC_MSG_ERROR([could not find libunwind])
826 dnl libdw is optionally used to add source lines and numbers to backtraces
827 AC_ARG_WITH([dw],[AS_HELP_STRING([--with-dw=yes|no|auto],[use libdw])],
829 if [ test "x${with_dw}" != "xno" ]; then
830 PKG_CHECK_MODULES(DW, [libdw],
833 AC_DEFINE(HAVE_DW, 1, [libdw available])
839 if [ test "x${with_dw}" = "xyes" ]; then
840 AC_MSG_ERROR([could not find libdw])
847 dnl Check for backtrace() from libc
848 AC_CHECK_FUNC(backtrace, [
849 AC_CHECK_HEADERS([execinfo.h], [
850 AC_DEFINE(HAVE_BACKTRACE,1,[Have backtrace])
854 dnl building of unit test libraries
856 AS_HELP_STRING([--disable-check],[disable building unit test libraries]),
858 case "${enableval}" in
859 yes) BUILD_CHECK=yes ;;
860 no) BUILD_CHECK=no ;;
861 *) AC_MSG_ERROR(bad value ${enableval} for --disable-check) ;;
866 mingw* | msvc* | mks*) BUILD_CHECK=no ;;
867 *) BUILD_CHECK=yes ;;
870 dnl bit of a misnomer, but keep the conditional named like this so we don't
871 dnl have to change too much elsewhere
872 AM_CONDITIONAL(HAVE_CHECK, test "x$BUILD_CHECK" = "xyes")
874 dnl configure the desired memory alignment
875 AC_ARG_WITH([memory-alignment],
876 AS_HELP_STRING([--with-memory-alignment],[8,N,malloc,pagesize (default is 32)]),
878 if test "x$withval" = "xyes"
880 AC_DEFINE(MEMORY_ALIGNMENT, 32, [Memory alignment to use])
883 malloc) AC_DEFINE(MEMORY_ALIGNMENT_MALLOC, 1, [Memory alignment by malloc default]) ;;
884 pagesize) AC_DEFINE(MEMORY_ALIGNMENT_PAGESIZE, 1, [Memory alignment by pagesize]) ;;
885 *) AC_DEFINE_UNQUOTED(MEMORY_ALIGNMENT, ${withval}, [Memory alignment to use]) ;;
889 AC_DEFINE(MEMORY_ALIGNMENT_MALLOC, 1, [Memory alignment by malloc default])
893 dnl Check for -Bsymbolic-functions linker flag used to avoid
894 dnl intra-library PLT jumps, if available.
895 AC_ARG_ENABLE(Bsymbolic,
896 [AS_HELP_STRING([--disable-Bsymbolic],[avoid linking with -Bsymbolic])],,
897 [SAVED_LDFLAGS="${LDFLAGS}" SAVED_LIBS="${LIBS}"
898 AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
899 LDFLAGS=-Wl,-Bsymbolic-functions
901 AC_TRY_LINK([], [return 0],
903 enable_Bsymbolic=yes,
906 LDFLAGS="${SAVED_LDFLAGS}" LIBS="${SAVED_LIBS}"])
909 dnl *** set variables based on configure arguments
911 dnl set license and copyright notice
913 AC_DEFINE_UNQUOTED(GST_LICENSE, "$GST_LICENSE", [GStreamer license])
914 AC_SUBST(GST_LICENSE)
916 dnl define LIBDIR, GST_DATADIR so we can inform people where we live
917 AS_AC_EXPAND(LIBDIR, $libdir)
918 AC_DEFINE_UNQUOTED(LIBDIR, "$LIBDIR", [library dir])
919 AS_AC_EXPAND(DATADIR, $datadir)
920 AC_DEFINE_UNQUOTED(GST_DATADIR, "$DATADIR", [data dir])
922 dnl set location of plugin directory
925 dnl make sure it doesn't complain about unused variables if debugging is disabled
927 if test "x${GST_DISABLE_GST_DEBUG}" = "xyes"; then
928 NO_WARNINGS="-Wno-unused"
931 dnl define an ERROR_CFLAGS Makefile variable
932 AG_GST_SET_ERROR_CFLAGS($FATAL_WARNINGS, [-Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wundef -Wwrite-strings -Wformat-nonliteral -Wformat-security -Wold-style-definition -Winit-self -Wmissing-include-dirs -Waddress -Waggregate-return -Wno-multichar -Wnested-externs $NO_WARNINGS])
934 dnl special warning flags for gst/printf
935 AS_COMPILER_FLAG([-Wno-format-nonliteral], [PRINTF_CFLAGS="-Wno-format-nonliteral"])
936 AC_SUBST(PRINTF_CFLAGS)
938 dnl disable strict aliasing
939 AS_COMPILER_FLAG([-fno-strict-aliasing], [EXTRA_CFLAGS="-fno-strict-aliasing"])
940 AC_SUBST(EXTRA_CFLAGS)
942 dnl define correct level for debugging messages
943 AG_GST_SET_LEVEL_DEFAULT($GST_GIT)
945 dnl *** finalize CFLAGS, LDFLAGS, LIBS
948 dnl GST_OPTION_CFLAGS: common cflags for profiling, debugging, errors, ...
949 dnl GST_ALL_*: vars shared by all built objects
950 dnl GST_LIB_LDFLAGS: additional linker flags for all libraries
951 dnl GST_OBJ_*: additional vars to link to the core library
952 dnl include GST_ALL_*
953 dnl GST_LT_LDFLAGS: library versioning of our libraries
954 dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
956 dnl GST_OPTION_CFLAGS
957 if test "x$USE_DEBUG" = xyes; then
960 AC_SUBST(PROFILE_CFLAGS)
962 # GST_DISABLE_DEPRECATED: hide the visibility of deprecated
963 # functionality from the API that gstreamer uses
964 # GST_REMOVE_DEPRECATED: don't compile deprecated functionality (breaks ABI)
965 if test "x$PACKAGE_VERSION_NANO" = "x1"; then
966 dnl Define _only_ when compiling from git (not for pre-releases or releases)
967 DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
971 AC_SUBST(DEPRECATED_CFLAGS)
973 dnl every flag in GST_OPTION_CFLAGS can be overridden at make time via e.g.
974 dnl make DEPRECATED_CFLAGS=''
975 GST_OPTION_CFLAGS="\$(WARNING_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
976 GST_OPTION_CXXFLAGS="\$(WARNING_CXXFLAGS) \$(ERROR_CXXFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
977 GST_OPTION_CFLAGS="$GST_OPTION_CFLAGS"
978 GST_OPTION_CXXFLAGS="$GST_OPTION_CXXFLAGS"
979 AC_SUBST(GST_OPTION_CFLAGS)
980 AC_SUBST(GST_OPTION_CXXFLAGS)
983 dnl vars common to for all internal objects (core libs, elements, applications)
985 dnl - src and build dirs need to be added because every piece that gets built
986 dnl will need the GStreamer source and generated headers
987 dnl LIBS: XML doesn't need to be added because we don't explicitly use symbols
988 dnl from LibXML except for in the core library
989 GST_ALL_CXXFLAGS="-I\$(top_srcdir)/libs -I\$(top_srcdir) -I\$(top_builddir)/libs -I\$(top_builddir) $GLIB_CFLAGS \$(GLIB_EXTRA_CFLAGS) $EXTRA_CFLAGS \$(GST_OPTION_CXXFLAGS) \$(ERROR_CXXFLAGS)"
990 GST_ALL_CFLAGS="-I\$(top_srcdir)/libs -I\$(top_srcdir) -I\$(top_builddir)/libs -I\$(top_builddir) $GLIB_CFLAGS \$(GLIB_EXTRA_CFLAGS) $EXTRA_CFLAGS \$(GST_OPTION_CFLAGS) \$(ERROR_CFLAGS)"
992 dnl FIXME: check if LTLIBINTL is needed everywhere
993 dnl I presume it is given that it contains the symbols that _() stuff maps to
994 GST_ALL_LIBS="$GLIB_LIBS $LTLIBINTL \$(GCOV_LIBS)"
996 dnl LDFLAGS really should only contain flags, not libs - they get added before
997 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
998 GST_ALL_LDFLAGS="-no-undefined"
999 if test "x${enable_Bsymbolic}" = "xyes"; then
1000 GST_ALL_LDFLAGS="$GST_ALL_LDFLAGS -Wl,-Bsymbolic-functions"
1003 AC_SUBST(GST_ALL_CFLAGS)
1004 AC_SUBST(GST_ALL_CXXFLAGS)
1005 AC_SUBST(GST_ALL_LIBS)
1006 AC_SUBST(GST_ALL_LDFLAGS)
1009 dnl linker flags shared by all libraries
1010 dnl LDFLAGS modifier defining exported symbols from built libraries
1011 GST_LIB_LDFLAGS="-export-symbols-regex \^[_]?\(gst_\|Gst\|GST_\).*"
1012 AC_SUBST(GST_LIB_LDFLAGS)
1015 dnl default vars for all internal objects built on libgstreamer
1016 dnl includes GST_ALL_*
1017 GST_OBJ_CFLAGS="\$(GST_ALL_CFLAGS) $GST_OBJ_STATIC_CFLAGS"
1018 GST_OBJ_CXXFLAGS="\$(GST_ALL_CXXFLAGS) $GST_OBJ_STATIC_CFLAGS"
1019 GST_OBJ_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_API_VERSION.la \$(GST_ALL_LIBS)"
1020 AC_SUBST(GST_OBJ_CFLAGS)
1021 AC_SUBST(GST_OBJ_CXXFLAGS)
1022 AC_SUBST(GST_OBJ_LIBS)
1024 dnl GST_PLUGIN_LDFLAGS
1025 dnl LDFLAGS for plugins; includes GST_ALL_LDFLAGS
1026 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_.*' $GST_ALL_LDFLAGS"
1027 AC_SUBST(GST_PLUGIN_LDFLAGS, "$GST_PLUGIN_LDFLAGS")
1029 dnl plugin scanner locations
1030 AS_AC_EXPAND(GST_PLUGIN_SCANNER_INSTALLED,${libexecdir}/gstreamer-$GST_API_VERSION/gst-plugin-scanner)
1031 AC_DEFINE_UNQUOTED(GST_PLUGIN_SCANNER_INSTALLED,
1032 "$GST_PLUGIN_SCANNER_INSTALLED", [location of the installed gst-plugin-scanner])
1033 AC_SUBST(GST_PLUGIN_SCANNER_INSTALLED)
1035 case "${libexecdir}" in
1037 GST_PLUGIN_SCANNER_SUBDIR="libexec";;
1039 GST_PLUGIN_SCANNER_SUBDIR="lib";;
1041 GST_PLUGIN_SCANNER_SUBDIR=`basename ${libexecdir}`;
1042 if test -z "$GST_PLUGIN_SCANNER_SUBDIR"; then
1043 AC_MSG_WARN([Couldn't determined libexecdir suffix, using "lib"])
1044 GST_PLUGIN_SCANNER_SUBDIR="lib";
1048 AC_DEFINE_UNQUOTED(GST_PLUGIN_SCANNER_SUBDIR,
1049 "$GST_PLUGIN_SCANNER_SUBDIR", [libexecdir path component, used to find plugin-scanner on relocatable builds on windows])
1052 dnl completion helper locations
1053 AS_AC_EXPAND(GST_COMPLETION_HELPER_INSTALLED,${libexecdir}/gstreamer-$GST_API_VERSION/gst-completion-helper)
1054 AC_DEFINE_UNQUOTED(GST_COMPLETION_HELPER_INSTALLED,
1055 "$GST_COMPLETION_HELPER_INSTALLED", [location of the installed gst-completion-helper])
1056 AC_SUBST(GST_COMPLETION_HELPER_INSTALLED)
1058 dnl ptp helper locations
1059 AS_AC_EXPAND(GST_PTP_HELPER_INSTALLED,${libexecdir}/gstreamer-$GST_API_VERSION/gst-ptp-helper)
1060 AC_DEFINE_UNQUOTED(GST_PTP_HELPER_INSTALLED,
1061 "$GST_PTP_HELPER_INSTALLED", [location of the installed gst-ptp-helper])
1062 AC_SUBST(GST_PTP_HELPER_INSTALLED)
1064 dnl things for our internal libcheck (must be called even if building
1065 dnl libcheck is disabled because it defines conditionals)
1071 data/bash-completion/helpers/gst
1079 libs/gst/base/Makefile
1080 libs/gst/check/Makefile
1081 libs/gst/check/libcheck/Makefile
1082 libs/gst/check/internal-check.h:libs/gst/check/libcheck/check.h.in
1083 libs/gst/controller/Makefile
1084 libs/gst/helpers/Makefile
1085 libs/gst/net/Makefile
1087 plugins/elements/Makefile
1088 plugins/tracers/Makefile
1091 tests/benchmarks/Makefile
1092 tests/check/Makefile
1094 tests/examples/Makefile
1095 tests/examples/adapter/Makefile
1096 tests/examples/controller/Makefile
1097 tests/examples/stepping/Makefile
1098 tests/examples/helloworld/Makefile
1099 tests/examples/memory/Makefile
1100 tests/examples/netclock/Makefile
1101 tests/examples/ptp/Makefile
1102 tests/examples/streamiddemux/Makefile
1103 tests/examples/streams/Makefile
1109 docs/gst/gstreamer.types
1111 docs/plugins/Makefile
1112 docs/version.entities
1116 pkgconfig/gstreamer.pc
1117 pkgconfig/gstreamer-uninstalled.pc
1118 pkgconfig/gstreamer-base.pc
1119 pkgconfig/gstreamer-base-uninstalled.pc
1120 pkgconfig/gstreamer-check.pc
1121 pkgconfig/gstreamer-check-uninstalled.pc
1122 pkgconfig/gstreamer-controller.pc
1123 pkgconfig/gstreamer-controller-uninstalled.pc
1124 pkgconfig/gstreamer-net.pc
1125 pkgconfig/gstreamer-net-uninstalled.pc
1130 dnl negate for output
1131 if test "x${GST_DISABLE_GST_DEBUG}" = "xno"; then enable_gst_debug="yes"; fi
1132 if test "x${GST_DISABLE_GST_TRACER_HOOKS}" = "xno"; then enable_gst_tracer_hooks="yes"; fi
1133 if test "x${GST_DISABLE_PARSE}" = "xno"; then enable_parse="yes"; fi
1134 if test "x${GST_DISABLE_OPTION_PARSING}" = "xno"; then enable_option_parsing="yes"; fi
1135 if test "x${GST_DISABLE_PLUGIN}" = "xno"; then enable_plugin="yes"; fi
1136 if test "x${GST_DISABLE_REGISTRY}" = "xno"; then enable_registry="yes"; fi
1141 Version : ${VERSION}
1142 Source code location : ${srcdir}
1145 Package name : ${GST_PACKAGE_NAME}
1146 Package origin : ${GST_PACKAGE_ORIGIN}
1148 API Documentation : ${enable_gtk_doc}
1150 Debug logging : ${enable_gst_debug}
1151 Tracing subsystem hooks : ${enable_gst_tracer_hooks}
1152 Command-line parser : ${enable_parse}
1153 Option parsing in gst_init : ${enable_option_parsing}
1154 Plugin registry : ${enable_registry}
1155 Plugin support : ${enable_plugin}
1156 Static plugins : ${enable_static_plugins}
1157 Unit testing support : ${BUILD_CHECK}
1158 PTP clock support : ${HAVE_PTP}
1159 libunwind support : ${HAVE_UNWIND}
1160 libdw support : ${HAVE_DW}
1162 Debug : ${USE_DEBUG}
1163 Profiling : ${USE_PROFILING}
1165 Building benchmarks : ${BUILD_BENCHMARKS}
1166 Building examples : ${BUILD_EXAMPLES}
1167 Building test apps : ${BUILD_TESTS}
1168 Building tests that fail : ${BUILD_FAILING_TESTS}
1169 Building tools : ${BUILD_TOOLS}