configure: remove --disable-net option and always build libgstnet
[platform/upstream/gstreamer.git] / configure.ac
1 AC_PREREQ(2.60)
2
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
6 AC_INIT(GStreamer, 0.11.1.1,
7     http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
8     gstreamer)
9 AG_GST_INIT
10
11 dnl initialize automake (we require GNU make)
12 AM_INIT_AUTOMAKE([-Wno-portability 1.10])
13
14 dnl define PACKAGE_VERSION_* variables
15 AS_VERSION
16
17 dnl check if this is a release version
18 AS_NANO(GST_GIT="no", GST_GIT="yes")
19
20 dnl can autoconf find the source ?
21 AC_CONFIG_SRCDIR([gst/gst.c])
22
23 dnl define the output header for config
24 AM_CONFIG_HEADER([config.h])
25
26 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
27 AM_MAINTAINER_MODE
28
29 dnl sets host_* variables
30 AC_CANONICAL_HOST
31
32 dnl use pretty build output with automake >= 1.11
33 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],
34   [AM_DEFAULT_VERBOSITY=1
35    AC_SUBST(AM_DEFAULT_VERBOSITY)])
36
37 dnl our libraries and install dirs use major.minor as a version
38 GST_MAJORMINOR=$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR
39 dnl we override it here for release candidates for a new series
40 GST_MAJORMINOR=0.11
41 AC_SUBST(GST_MAJORMINOR)
42 AC_DEFINE_UNQUOTED(GST_MAJORMINOR, "$GST_MAJORMINOR",
43   [library major.minor version])
44
45 dnl CURRENT, REVISION, AGE
46 dnl - library source changed -> increment REVISION
47 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
48 dnl - interfaces added -> increment AGE
49 dnl - interfaces removed -> AGE = 0
50 dnl sets GST_LT_LDFLAGS
51 AS_LIBTOOL(GST, 31, 0, 0)
52
53 dnl FIXME: this macro doesn't actually work;
54 dnl the generated libtool script has no support for the listed tags.
55 dnl So this needs to be fixed first if we want to use this
56 dnl AS_LIBTOOL_TAGS
57
58 AC_LIBTOOL_WIN32_DLL
59 AM_PROG_LIBTOOL
60
61 dnl *** autotools stuff ****
62
63 dnl allow for different autotools
64 AS_AUTOTOOLS_ALTERNATE
65
66 dnl Add parameters for aclocal (keep in sync with Makefile.am)
67 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
68
69 dnl set up gettext
70 dnl the version check needs to stay here because autopoint greps for it
71 AM_GNU_GETTEXT_VERSION([0.17])
72 AM_GNU_GETTEXT([external])
73 AG_GST_GETTEXT([gstreamer-$GST_MAJORMINOR])
74
75 dnl *** check for arguments to configure ***
76
77 dnl subsystems - can influence other decisions so needs to be high up
78 dnl we need to AM_CONDITIONAL them here for automake 1.6.x compatibility
79 AG_GST_CHECK_SUBSYSTEM_DISABLE(GST_DEBUG,[debugging subsystem])
80 AM_CONDITIONAL(GST_DISABLE_GST_DEBUG, test "x$GST_DISABLE_GST_DEBUG" = "xyes")
81 AG_GST_CHECK_SUBSYSTEM_DISABLE(PARSE,[command-line parser])
82 AM_CONDITIONAL(GST_DISABLE_PARSE, test "x$GST_DISABLE_PARSE" = "xyes")
83 if test "x$GST_DISABLE_PARSE" = xyes; then
84   AC_DEFINE(GST_DISABLE_PARSE, 1,
85     [Define if pipeline parsing code is disabled])
86 fi
87 AG_GST_CHECK_SUBSYSTEM_DISABLE(OPTION_PARSING,[option parsing when gst_init])
88 AM_CONDITIONAL(GST_DISABLE_OPTION_PARSING, test "x$GST_DISABLE_OPTION_PARSING" = "xyes")
89 if test "x$GST_DISABLE_OPTION_PARSING" = xyes; then
90   AC_DEFINE(GST_DISABLE_OPTION_PARSING, 1,
91     [Define if option parsing is disabled])
92 fi
93 AG_GST_CHECK_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
94 AM_CONDITIONAL(GST_DISABLE_TRACE, test "x$GST_DISABLE_TRACE" = "xyes")
95 AG_GST_CHECK_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
96 AM_CONDITIONAL(GST_DISABLE_ALLOC_TRACE, test "x$GST_DISABLE_ALLOC_TRACE" = "xyes")
97 AG_GST_CHECK_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry])
98 AM_CONDITIONAL(GST_DISABLE_REGISTRY, test "x$GST_DISABLE_REGISTRY" = "xyes")
99 dnl define a substitution to use in docs/gst/gstreamer.types
100 if test "x$GST_DISABLE_REGISTRY" = "xyes"
101 then
102   GST_REGISTRY_DOC_TYPES="%"
103 else
104   GST_REGISTRY_DOC_TYPES=
105 fi
106 AC_SUBST(GST_REGISTRY_DOC_TYPES)
107 AG_GST_CHECK_SUBSYSTEM_DISABLE(PLUGIN,[plugin])
108 AM_CONDITIONAL(GST_DISABLE_PLUGIN, test "x$GST_DISABLE_PLUGIN" = "xyes")
109
110 AG_GST_ARG_DEBUG
111 AG_GST_ARG_PROFILING
112 AG_GST_ARG_VALGRIND
113 AG_GST_ARG_GCOV
114
115 AG_GST_ARG_EXAMPLES
116
117 AG_GST_ARG_WITH_PKG_CONFIG_PATH
118 AG_GST_ARG_WITH_PACKAGE_NAME
119 AG_GST_ARG_WITH_PACKAGE_ORIGIN
120
121 AG_GST_PKG_CONFIG_PATH
122
123 AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO([$PACKAGE_VERSION_NANO],
124   ["${srcdir}/gstreamer.doap"],
125   [$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_MICRO])
126
127 dnl building of tests
128 AC_ARG_ENABLE(tests,
129   AC_HELP_STRING([--disable-tests], [disable building test apps]),
130   [
131     case "${enableval}" in
132       yes) BUILD_TESTS=yes ;;
133       no)  BUILD_TESTS=no ;;
134       *)   AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
135     esac
136   ],
137 [BUILD_TESTS=yes]) dnl Default value
138 AM_CONDITIONAL(BUILD_TESTS,         test "x$BUILD_TESTS" = "xyes")
139
140 dnl tests known to fail
141 AC_ARG_ENABLE(failing-tests,
142   AC_HELP_STRING([--disable-failing-tests],
143     [disable building tests known to fail]),
144   [
145     case "${enableval}" in
146       yes) BUILD_FAILING_TESTS=yes ;;
147       no)  BUILD_FAILING_TESTS=no ;;
148       *)   AC_MSG_ERROR(bad value ${enableval} for --disable-failing-tests) ;;
149     esac
150   ],
151   [BUILD_FAILING_TESTS=no]) dnl Default value
152 AM_CONDITIONAL(BUILD_FAILING_TESTS, test "x$BUILD_FAILING_TESTS" = "xyes")
153 if test x$BUILD_FAILING_TESTS = xyes; then
154   AC_MSG_WARN([building tests known to fail, use --disable-failing-tests to disable])
155 else
156   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.])
157 fi
158
159 dnl poison destroyed objects
160 AC_ARG_ENABLE(poisoning,
161   AC_HELP_STRING([--enable-poisoning],
162     [enable poisoning of deallocated objects]),
163   [
164     case "${enableval}" in
165       yes) USE_POISONING=yes ;;
166       no)  USE_POISONING=no ;;
167       *)   AC_MSG_ERROR(bad value ${enableval} for --enable-poisoning) ;;
168     esac
169   ],
170   [USE_POISONING=no]) dnl Default value
171 if test "x$USE_POISONING" = xyes; then
172   AC_DEFINE(USE_POISONING, 1,
173     [Define if we should poison deallocated memory])
174 fi
175
176 dnl *** checks for platform ***
177
178 dnl * hardware/architecture *
179
180 dnl common/m4/gst-arch.m4
181 dnl check CPU type
182 AG_GST_ARCH
183 dnl substitution for win32/common/config.h
184 HOST_CPU=$host_cpu
185 AC_SUBST(HOST_CPU)
186
187 dnl common/m4/gst-arch.m4
188 dnl check for unaligned access
189 AG_GST_UNALIGNED_ACCESS
190 dnl create a configure variable for gst/gstconfig.h
191 if test x${as_cv_unaligned_access} = xyes ; then
192   GST_HAVE_UNALIGNED_ACCESS_DEFINE="#define GST_HAVE_UNALIGNED_ACCESS 1"
193 else
194   GST_HAVE_UNALIGNED_ACCESS_DEFINE="#define GST_HAVE_UNALIGNED_ACCESS 0"
195 fi
196 AC_SUBST(GST_HAVE_UNALIGNED_ACCESS_DEFINE)
197
198 dnl check for platform specific settings
199 AG_GST_PLATFORM
200
201 dnl * software *
202
203 dnl check for large file support
204 dnl affected plugins must include config.h
205 AC_SYS_LARGEFILE
206
207 dnl *** checks for programs ***
208
209 dnl find a compiler
210 AC_PROG_CC
211 AC_PROG_CC_STDC
212
213 dnl check if the compiler supports '-c' and '-o' options
214 AM_PROG_CC_C_O
215
216 dnl find an assembler
217 AM_PROG_AS
218
219 dnl determine if c++ is available on this system
220 AC_PROG_CXX
221 dnl CXX may be set to some default even if no c++ compiler is available
222 dnl (thanks autotools!), so just try to compile some c++ code to make sure
223 AC_LANG_PUSH([C++])
224 AC_TRY_COMPILE([ class Foo { int bar; };], , working_cxx=yes, working_cxx=no)
225 AC_LANG_POP([C++])
226 AC_MSG_NOTICE([working c++ compiler found: $working_cxx])
227 AM_CONDITIONAL(HAVE_CXX, test "x$working_cxx" = "xyes")
228
229 dnl Perl is used in building documentation and in the version checks
230 AC_PATH_PROG(PERL_PATH, perl, no)
231 if test x$PERL_PATH = xno; then
232   AC_MSG_ERROR(Could not find perl)
233 fi
234
235 dnl we require flex and bison for building the parser
236 if test "x$GST_DISABLE_PARSE" != xyes; then
237   AG_GST_BISON_CHECK
238   AG_GST_FLEX_CHECK
239 fi
240
241 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
242 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
243
244 dnl check for gobject-introspection
245 GOBJECT_INTROSPECTION_CHECK([1.31.1])
246
247 dnl check for documentation tools
248 AG_GST_DOCBOOK_CHECK
249 GTK_DOC_CHECK([1.3])
250 AS_PATH_PYTHON([2.1])
251 AG_GST_PLUGIN_DOCS([1.3],[2.1])
252
253 dnl *** checks for libraries ***
254
255 dnl check for libm, for sin()
256 AC_CHECK_LIBM
257 AC_SUBST(LIBM)
258
259 dnl *** checks for header files ***
260
261 dnl check if we have ANSI C header files
262 AC_HEADER_STDC
263
264 dnl Check for ucontext.h
265 AC_CHECK_HEADERS([ucontext.h])
266
267 dnl Check for sys/socket.h
268 AC_CHECK_HEADERS([sys/socket.h], HAVE_SYS_SOCKET_H=yes)
269 AM_CONDITIONAL(HAVE_SYS_SOCKET_H, test "x$HAVE_SYS_SOCKET_H" = "xyes")
270
271 dnl check for sys/times.h for tests/examples/adapter/
272 AC_CHECK_HEADERS([sys/times.h], HAVE_SYS_TIMES_H=yes)
273 AC_CHECK_HEADERS([unistd.h], HAVE_UNISTD_H=yes)
274 AM_CONDITIONAL(HAVE_SYS_TIMES_H_AND_UNISTD_H, test "x$HAVE_SYS_TIMES_H" = "xyes" -a "x$HAVE_UNISTD_H" = "xyes")
275
276 dnl Check for process.h for getpid() on win32
277 AC_CHECK_HEADERS([process.h])
278
279 dnl Check for sys/utsname.h for uname
280 AC_CHECK_HEADERS([sys/utsname.h])
281
282 dnl Check for stdio_ext.f for __fbufsize
283 AC_CHECK_HEADERS([stdio_ext.h])
284
285 dnl check for pthreads
286 AC_CHECK_HEADERS([pthread.h], HAVE_PTHREAD_H=yes)
287 AM_CONDITIONAL(HAVE_PTHREAD_H, test "x$HAVE_PTHREAD_H" = "xyes")
288
289 dnl check for sys/prctl for setting thread name on Linux
290 AC_CHECK_HEADERS([sys/prctl.h], HAVE_SYS_PRCTL_H=yes)
291
292 dnl Check for valgrind.h
293 dnl separate from HAVE_VALGRIND because you can have the program, but not
294 dnl the dev package
295 AC_CHECK_HEADERS([valgrind/valgrind.h], HAVE_VALGRIND_H=yes)
296
297 dnl used in gst/gstpoll.c
298 AC_CHECK_HEADERS([winsock2.h], HAVE_WINSOCK2_H=yes)
299 AM_CONDITIONAL(HAVE_WINSOCK2_H, test "x$HAVE_WINSOCK2_H" = "xyes")
300 if test "x$HAVE_WINSOCK2_H" = "xyes"; then
301   WIN32_LIBS="-lws2_32"
302   AC_SUBST(WIN32_LIBS)
303 fi
304
305 dnl check for GMP/GSL, used by the gst_util_uint64_scale unit test only
306 if test "x$BUILD_TESTS" = "xyes"; then
307   AG_GST_CHECK_LIBHEADER(GMP, gmp,
308                          __gmpz_init_set_d, ,
309                          gmp.h,
310                          GMP_LIBS="-lgmp"
311                          AC_SUBST(GMP_LIBS)
312                          AC_DEFINE(HAVE_GMP, [1],[Have GMP library]))
313   AG_GST_CHECK_LIBHEADER(GSL, gsl,
314                          gsl_rng_uniform_int, -lgslcblas,
315                          gsl/gsl_rng.h,
316                          GSL_LIBS="-lgsl -lgslcblas"
317                          AC_SUBST(GSL_LIBS)
318                          AC_DEFINE(HAVE_GSL, [1],[Have GSL library]))
319 fi
320
321 dnl *** checks for types/defines ***
322
323 dnl *** checks for structures ***
324
325 dnl *** checks for compiler characteristics ***
326
327 dnl check if the compiler supports __uint128_t (gcc)
328 dnl Actually check for 128-bit division, since that's what we use
329 dnl uint128_t for.
330 AC_CACHE_CHECK(for __uint128_t, gst_cv_uint128_t,
331     AC_TRY_LINK([ ], [
332       static __uint128_t v1 = 100;
333       static __uint128_t v2 = 10;
334       static __uint128_t u;
335       u = v1 / v2;
336     ], [
337       gst_cv_uint128_t=yes
338     ], [
339       gst_cv_uint128_t=no
340     ])
341 )
342 if test x$gst_cv_uint128_t = xyes; then
343   AC_DEFINE(HAVE_UINT128_T, 1, [Have __uint128_t type])
344 fi
345
346 dnl *** checking for tm_gmtoff ***
347 AC_MSG_CHECKING([for tm_gmtoff])
348 AC_RUN_IFELSE([AC_LANG_SOURCE([[
349         #include <time.h>
350         int main(void) {
351           struct tm t;
352           t.tm_gmtoff = 0;
353           exit(0);
354         }]])],
355   [have_tm_gmtoff=yes
356    AC_DEFINE(HAVE_TM_GMTOFF,1,[Have tm_gmtoff field in struct tm])],
357   [have_tm_gmtoff=no],
358   [have_tm_gmtoff="no (cross compiling)"])
359 AC_MSG_RESULT($have_tm_gmtoff)
360
361
362 dnl *** checks for library functions ***
363
364 AC_CHECK_FUNCS([gmtime_r])
365 AC_CHECK_FUNCS([localtime_r])
366 AC_CHECK_FUNCS([sigaction])
367
368 dnl check for fseeko()
369 AC_FUNC_FSEEKO
370 dnl check for ftello()
371 AC_CHECK_FUNCS([ftello])
372
373 AC_CHECK_FUNCS([fgetpos])
374 AC_CHECK_FUNCS([fsetpos])
375
376 dnl check for poll(), ppoll() and pselect()
377 AC_CHECK_FUNCS([poll])
378 AC_CHECK_FUNCS([ppoll])
379 AC_CHECK_FUNCS([pselect])
380
381 AC_CHECK_HEADERS([sys/poll.h])
382
383 dnl ****************************************
384 dnl *** GLib POLL* compatibility defines ***
385 dnl ****************************************
386
387 AC_MSG_CHECKING([for broken poll])
388 AC_RUN_IFELSE([AC_LANG_SOURCE([[
389         #include <stdlib.h>
390         #include <fcntl.h>
391         #include <poll.h>
392         #ifdef HAVE_SYS_POLL_H
393         #include <sys/poll.h>
394         #endif
395         int main(void) {
396           struct pollfd fds[1];
397           int fd;
398           fd = open("/dev/null", 1);
399           fds[0].fd = fd;
400           fds[0].events = POLLIN;
401           fds[0].revents = 0;
402           if (poll(fds, 1, 0) < 0 || (fds[0].revents & POLLNVAL) != 0) {
403                 exit(1);  /* Does not work for devices -- fail */
404           }
405           exit(0);
406         }]])],
407   [broken_poll=no],
408   [broken_poll=yes
409    AC_DEFINE(BROKEN_POLL,1,[poll doesn't work on devices])],
410   [broken_poll="no (cross compiling)"])
411 AC_MSG_RESULT($broken_poll)
412
413 dnl check for mmap()
414 AC_FUNC_MMAP
415 AM_CONDITIONAL(HAVE_MMAP, test "x$ac_cv_func_mmap_fixed_mapped" = "xyes")
416
417 dnl check for posix_memalign(), getpagesize()
418 AC_CHECK_FUNCS([posix_memalign])
419 AC_CHECK_FUNCS([getpagesize])
420
421 dnl Check for POSIX timers
422 AC_CHECK_FUNCS(clock_gettime, [], [
423   AC_CHECK_LIB(rt, clock_gettime, [
424     AC_DEFINE(HAVE_CLOCK_GETTIME, 1)
425     LIBS="$LIBS -lrt"
426   ])
427 ])
428
429 AC_CACHE_CHECK(for posix timers, gst_cv_posix_timers,
430     AC_TRY_COMPILE([
431 #include <time.h>
432 #ifdef HAVE_UNISTD_H
433 #include <unistd.h>
434 #endif
435     ], [
436 #if !defined(_POSIX_TIMERS) || _POSIX_TIMERS < 0 || !defined(CLOCK_REALTIME)
437 #error Either _POSIX_TIMERS or CLOCK_REALTIME not defined
438 #endif
439     ], [
440       gst_cv_posix_timers=yes
441     ], [
442       gst_cv_posix_timers=no
443     ])
444 )
445
446 if test "$gst_cv_posix_timers" = "yes"; then
447   AC_DEFINE(HAVE_POSIX_TIMERS,1,[Have posix timers])
448   GST_HAVE_POSIX_TIMERS_DEFINE="#define GST_HAVE_POSIX_TIMERS 1"
449 else
450   GST_HAVE_POSIX_TIMERS_DEFINE="#define GST_HAVE_POSIX_TIMERS 0"
451 fi
452 AC_SUBST(GST_HAVE_POSIX_TIMERS_DEFINE)
453 AM_CONDITIONAL(GST_HAVE_POSIX_TIMERS, test "$gst_cv_posix_timers" = "yes")
454
455 AC_CACHE_CHECK(for monotonic clock, gst_cv_monotonic_clock,
456     AC_TRY_COMPILE([
457 #include <time.h>
458 #ifdef HAVE_UNISTD_H
459 #include <unistd.h>
460 #endif
461     ], [
462 #if !defined(_POSIX_MONOTONIC_CLOCK) || _POSIX_MONOTONIC_CLOCK < 0 || !defined(CLOCK_MONOTONIC)
463 #error Either _POSIX_MONOTONIC_CLOCK or CLOCK_MONOTONIC not defined
464 #endif
465     ], [
466       gst_cv_monotonic_clock=yes
467     ], [
468       gst_cv_monotonic_clock=no
469     ])
470 )
471
472 if test "$gst_cv_monotonic_clock" = "yes"; then
473   AC_DEFINE(HAVE_MONOTONIC_CLOCK,1,[Have a monotonic clock])
474   GST_HAVE_MONOTONIC_CLOCK_DEFINE="#define GST_HAVE_MONOTONIC_CLOCK 1"
475 else
476   GST_HAVE_MONOTONIC_CLOCK_DEFINE="#define GST_HAVE_MONOTONIC_CLOCK 0"
477 fi
478 AC_SUBST(GST_HAVE_MONOTONIC_CLOCK_DEFINE)
479 AM_CONDITIONAL(GST_HAVE_MONOTONIC_CLOCK, test "$gst_cv_monotonic_clock" = "yes")
480
481 dnl Check for a way to display the function name in debug output
482 AG_GST_CHECK_FUNCTION
483
484 dnl test for register_printf_specifier or register_printf_function
485 AC_CHECK_FUNCS([register_printf_specifier register_printf_function],
486     [HAVE_PRINTF_EXTENSION=yes])
487
488 if test "$HAVE_PRINTF_EXTENSION" = yes; then
489   GST_PRINTF_EXTENSION_POINTER_FORMAT_DEFINE="#define GST_PTR_FORMAT \"P\""
490   GST_PRINTF_EXTENSION_SEGMENT_FORMAT_DEFINE="#define GST_SEGMENT_FORMAT \"Q\""
491   GST_USING_PRINTF_EXTENSION_DEFINE="#define GST_USING_PRINTF_EXTENSION"
492   AC_DEFINE(HAVE_PRINTF_EXTENSION, 1,
493       [Defined if we have printf specifier extensions available])
494 else
495     GST_PRINTF_EXTENSION_POINTER_FORMAT_DEFINE="#define GST_PTR_FORMAT \"p\""
496     GST_PRINTF_EXTENSION_SEGMENT_FORMAT_DEFINE="#define GST_SEGMENT_FORMAT \"p\""
497     GST_USING_PRINTF_EXTENSION_DEFINE="#undef GST_USING_PRINTF_EXTENSION"
498 fi
499 AC_SUBST(GST_PRINTF_EXTENSION_POINTER_FORMAT_DEFINE)
500 AC_SUBST(GST_PRINTF_EXTENSION_SEGMENT_FORMAT_DEFINE)
501 AC_SUBST(GST_USING_PRINTF_EXTENSION_DEFINE)
502
503 dnl test if we have dladdr(); we use it for debugging; see gst/gstinfo.c
504 save_cflags="$CFLAGS"
505 CFLAGS="$CFLAGS -D_GNU_SOURCE"
506 AC_CHECK_LIB(dl, dladdr,
507    AC_DEFINE(HAVE_DLADDR, 1, [Defined if we have dladdr ()])
508    LIBS="$LIBS -ldl")
509 CFLAGS="$save_cflags"
510
511 dnl *** checks for dependency libraries ***
512
513 dnl GLib
514 GLIB_REQ=2.26
515
516 AG_GST_GLIB_CHECK([$GLIB_REQ])
517 PKG_CHECK_MODULES(GIO, gio-2.0 >= $GLIB_REQ)
518
519 dnl Check for documentation xrefs
520 GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
521 AC_SUBST(GLIB_PREFIX)
522
523 dnl building of unit test libraries
524 AC_ARG_ENABLE(check,
525   AC_HELP_STRING([--disable-check], [disable building unit test libraries]),
526   [
527     case "${enableval}" in
528       yes) BUILD_CHECK=yes ;;
529       no)  BUILD_CHECK=no ;;
530       *)   AC_MSG_ERROR(bad value ${enableval} for --disable-check) ;;
531     esac
532   ], [
533     dnl Default value
534     case $host_os in
535       mingw* | msvc* | mks*) BUILD_CHECK=no ;;
536       *) BUILD_CHECK=yes ;;
537     esac
538 ])
539 dnl bit of a misnomer, but keep the conditional named like this so we don't
540 dnl have to change too much elsewhere
541 AM_CONDITIONAL(HAVE_CHECK, test "x$BUILD_CHECK" = "xyes")
542
543 dnl configure the desired memory alignment
544 AC_ARG_WITH([memory-alignment],
545   AS_HELP_STRING([--with-memory-alignment],[8,N,malloc,pagesize (default is 32)]),
546   [
547     if test "x$withval" = "xyes"
548     then
549       AC_DEFINE(MEMORY_ALIGNMENT, 32, [Memory alignment to use])
550     else
551       case "${withval}" in
552         malloc) AC_DEFINE(MEMORY_ALIGNMENT_MALLOC, 1, [Memory alignment by malloc default]) ;;
553         pagesize)  AC_DEFINE(MEMORY_ALIGNMENT_PAGESIZE, 1, [Memory alignment by pagesize]) ;;
554         *)   AC_DEFINE_UNQUOTED(MEMORY_ALIGNMENT, ${withval}, [Memory alignment to use]) ;;
555       esac
556     fi
557   ], [
558     AC_DEFINE(MEMORY_ALIGNMENT_MALLOC, 1, [Memory alignment by malloc default]) 
559   ]
560 )
561
562 dnl Check for -Bsymbolic-functions linker flag used to avoid
563 dnl intra-library PLT jumps, if available.
564 AC_ARG_ENABLE(Bsymbolic,
565               [AC_HELP_STRING([--disable-Bsymbolic],
566                               [avoid linking with -Bsymbolic])],,
567               [SAVED_LDFLAGS="${LDFLAGS}"
568                AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
569                LDFLAGS=-Wl,-Bsymbolic-functions
570                AC_TRY_LINK([], [int main (void) { return 0; }],
571                            AC_MSG_RESULT(yes)
572                            enable_Bsymbolic=yes,
573                            AC_MSG_RESULT(no)
574                            enable_Bsymbolic=no)
575                LDFLAGS="${SAVED_LDFLAGS}"])
576
577
578 dnl *** set variables based on configure arguments
579
580 dnl set license and copyright notice
581 GST_LICENSE="LGPL"
582 AC_DEFINE_UNQUOTED(GST_LICENSE, "$GST_LICENSE", [GStreamer license])
583 AC_SUBST(GST_LICENSE)
584
585 dnl define LIBDIR, GST_DATADIR so we can inform people where we live
586 AS_AC_EXPAND(LIBDIR, $libdir)
587 AC_DEFINE_UNQUOTED(LIBDIR, "$LIBDIR", [library dir])
588 AS_AC_EXPAND(DATADIR, $datadir)
589 AC_DEFINE_UNQUOTED(GST_DATADIR, "$DATADIR", [data dir])
590
591 dnl set location of plugin directory
592 AG_GST_SET_PLUGINDIR
593
594 GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-no-export-2.0, gthread-2.0"
595 AC_SUBST(GST_PKG_DEPS)
596
597 dnl make sure it doesn't complain about unused variables if debugging is disabled
598 NO_WARNINGS=""
599 if test "x${GST_DISABLE_GST_DEBUG}" = "xyes"; then
600   NO_WARNINGS="-Wno-unused"
601 fi
602
603 dnl define an ERROR_CFLAGS Makefile variable
604 AG_GST_SET_ERROR_CFLAGS($GST_GIT, [-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])
605
606 dnl define correct level for debugging messages
607 AG_GST_SET_LEVEL_DEFAULT($GST_GIT)
608
609 dnl *** finalize CFLAGS, LDFLAGS, LIBS
610
611 dnl Overview:
612 dnl GST_OPTION_CFLAGS:  common cflags for profiling, debugging, errors, ...
613 dnl GST_ALL_*:          vars shared by all built objects
614 dnl GST_LIB_LDFLAGS:    additional linker flags for all libaries
615 dnl GST_OBJ_*:          additional vars to link to the core library
616 dnl                     include GST_ALL_*
617 dnl GST_LT_LDFLAGS:     library versioning of our libraries
618 dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
619
620 dnl GST_OPTION_CFLAGS
621 if test "x$USE_DEBUG" = xyes; then
622    PROFILE_CFLAGS="-g"
623 fi
624 AC_SUBST(PROFILE_CFLAGS)
625
626 # GST_DISABLE_DEPRECATED: hide the visibility of deprecated
627 # functionality from the API that gstreamer uses
628 # GST_REMOVE_DEPRECATED: don't compile deprecated functionality (breaks ABI)
629 if test "x$PACKAGE_VERSION_NANO" = "x1"; then
630   dnl Define _only_ when compiling from git (not for pre-releases or releases)
631   DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
632 else
633   DEPRECATED_CFLAGS=""
634 fi
635 AC_SUBST(DEPRECATED_CFLAGS)
636
637 dnl every flag in GST_OPTION_CFLAGS can be overridden at make time via e.g.
638 dnl make DEPRECATED_CFLAGS=''
639 GST_OPTION_CFLAGS="\$(WARNING_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
640 GST_OPTION_CXXFLAGS="\$(WARNING_CXXFLAGS) \$(ERROR_CXXFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
641 GST_OPTION_CFLAGS="$GST_OPTION_CFLAGS -DGST_USE_UNSTABLE_API"
642 GST_OPTION_CXXFLAGS="$GST_OPTION_CXXFLAGS -DGST_USE_UNSTABLE_API"
643 AC_SUBST(GST_OPTION_CFLAGS)
644 AC_SUBST(GST_OPTION_CXXFLAGS)
645
646 dnl GST_ALL_*
647 dnl vars common to for all internal objects (core libs, elements, applications)
648 dnl CFLAGS:
649 dnl - src and build dirs need to be added because every piece that gets built
650 dnl   will need the GStreamer source and generated headers
651 dnl LIBS: XML doesn't need to be added because we don't explicitly use symbols
652 dnl       from LibXML except for in the core library
653 GST_ALL_CXXFLAGS="-I\$(top_srcdir)/libs -I\$(top_srcdir) -I\$(top_builddir)/libs -I\$(top_builddir) $GLIB_CFLAGS \$(GLIB_EXTRA_CFLAGS) $XML_CFLAGS \$(GST_OPTION_CXXFLAGS) \$(ERROR_CXXFLAGS)"
654 GST_ALL_CFLAGS="-I\$(top_srcdir)/libs -I\$(top_srcdir) -I\$(top_builddir)/libs -I\$(top_builddir) $GLIB_CFLAGS \$(GLIB_EXTRA_CFLAGS) $XML_CFLAGS \$(GST_OPTION_CFLAGS) \$(ERROR_CFLAGS)"
655
656 dnl FIXME: check if LTLIBINTL is needed everywhere
657 dnl I presume it is given that it contains the symbols that _() stuff maps to
658 GST_ALL_LIBS="$GLIB_LIBS $LTLIBINTL \$(GCOV_LIBS)"
659
660 dnl LDFLAGS really should only contain flags, not libs - they get added before
661 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
662 GST_ALL_LDFLAGS="-no-undefined"
663 if test "x${enable_Bsymbolic}" = "xyes"; then
664   GST_ALL_LDFLAGS="$GST_ALL_LDFLAGS -Wl,-Bsymbolic-functions"
665 fi
666
667 AC_SUBST(GST_ALL_CFLAGS)
668 AC_SUBST(GST_ALL_CXXFLAGS)
669 AC_SUBST(GST_ALL_LIBS)
670 AC_SUBST(GST_ALL_LDFLAGS)
671
672 dnl GST_LIB_LDFLAGS
673 dnl linker flags shared by all libraries
674 dnl LDFLAGS modifier defining exported symbols from built libraries
675 GST_LIB_LDFLAGS="-export-symbols-regex \^[_]?\(gst_\|Gst\|GST_\).*"
676 AC_SUBST(GST_LIB_LDFLAGS)
677
678 dnl GST_OBJ_*
679 dnl default vars for all internal objects built on libgstreamer
680 dnl includes GST_ALL_*
681 GST_OBJ_CFLAGS="\$(GST_ALL_CFLAGS)"
682 GST_OBJ_CXXFLAGS="\$(GST_ALL_CXXFLAGS)"
683 GST_OBJ_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la \$(GST_ALL_LIBS)"
684 AC_SUBST(GST_OBJ_CFLAGS)
685 AC_SUBST(GST_OBJ_CXXFLAGS)
686 AC_SUBST(GST_OBJ_LIBS)
687
688 dnl GST_PLUGIN_LDFLAGS
689 dnl LDFLAGS for plugins; includes GST_ALL_LDFLAGS
690 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_desc.*' $GST_ALL_LDFLAGS"
691 AC_SUBST(GST_PLUGIN_LDFLAGS, "$GST_PLUGIN_LDFLAGS")
692
693 dnl plugin scanner locations
694 AS_AC_EXPAND(GST_PLUGIN_SCANNER_INSTALLED,${libexecdir}/gstreamer-$GST_MAJORMINOR/gst-plugin-scanner)
695 AC_DEFINE_UNQUOTED(GST_PLUGIN_SCANNER_INSTALLED,
696     "$GST_PLUGIN_SCANNER_INSTALLED", [location of the installed gst-plugin-scanner])
697 AC_SUBST(GST_PLUGIN_SCANNER_INSTALLED)
698
699 dnl things for our internal libcheck (must be called even if building
700 dnl libcheck is disabled because it defines conditionals)
701 AG_GST_CHECK_CHECKS()
702
703 AC_CONFIG_FILES(
704 Makefile
705 gst/Makefile
706 gst/gstconfig.h
707 gst/gstversion.h
708 gst/parse/Makefile
709 libs/Makefile
710 libs/gst/Makefile
711 libs/gst/base/Makefile
712 libs/gst/check/Makefile
713 libs/gst/check/libcheck/Makefile
714 libs/gst/check/libcheck/check.h
715 libs/gst/controller/Makefile
716 libs/gst/helpers/Makefile
717 libs/gst/net/Makefile
718 plugins/Makefile
719 plugins/elements/Makefile
720 po/Makefile.in
721 tests/Makefile
722 tests/benchmarks/Makefile
723 tests/check/Makefile
724 tests/misc/Makefile
725 tests/examples/Makefile
726 tests/examples/adapter/Makefile
727 tests/examples/controller/Makefile
728 tests/examples/stepping/Makefile
729 tests/examples/helloworld/Makefile
730 tests/examples/launch/Makefile
731 tests/examples/manual/Makefile
732 tests/examples/metadata/Makefile
733 tests/examples/queue/Makefile
734 tests/examples/streams/Makefile
735 tests/examples/typefind/Makefile
736 tools/Makefile
737 common/Makefile
738 common/m4/Makefile
739 docs/Makefile
740 docs/design/Makefile
741 docs/faq/Makefile
742 docs/gst/Makefile
743 docs/gst/gstreamer.types
744 docs/libs/Makefile
745 docs/plugins/Makefile
746 docs/manual/Makefile
747 docs/pwg/Makefile
748 docs/slides/Makefile
749 docs/xsl/Makefile
750 docs/version.entities
751 m4/Makefile
752 pkgconfig/Makefile
753 stamp.h
754 pkgconfig/gstreamer.pc
755 pkgconfig/gstreamer-uninstalled.pc
756 pkgconfig/gstreamer-base.pc
757 pkgconfig/gstreamer-base-uninstalled.pc
758 pkgconfig/gstreamer-check.pc
759 pkgconfig/gstreamer-check-uninstalled.pc
760 pkgconfig/gstreamer-controller.pc
761 pkgconfig/gstreamer-controller-uninstalled.pc
762 pkgconfig/gstreamer-net.pc
763 pkgconfig/gstreamer-net-uninstalled.pc
764 gst-element-check.m4
765 gstreamer.spec
766 )
767
768 dnl Create the config.h file for Visual Studio builds
769 dnl Beware of spaces and /'s in some of the shell variable contents.
770 sed \
771     -e 's/.*config.h.in.*autoheader.*/\/* Autogenerated config.h created for win32 Visual Studio builds *\/\n\n\/* PREFIX -- specifically added for Windows for easier moving *\/\n#define PREFIX "C:\\\\gstreamer"/' \
772     -e 's/.* GETTEXT_PACKAGE$/#define GETTEXT_PACKAGE "'$GETTEXT_PACKAGE'"/' \
773     -e 's/.* GST_DATADIR$/#define GST_DATADIR PREFIX "\\\\share"/' \
774     -e 's/.* GST_LEVEL_DEFAULT$/#define GST_LEVEL_DEFAULT GST_LEVEL_ERROR/' \
775     -e 's/.* GST_LICENSE$/#define GST_LICENSE "'$GST_LICENSE'"/' \
776     -e 's/.* GST_MAJORMINOR$/#define GST_MAJORMINOR "'$GST_MAJORMINOR'"/' \
777     -e "s,.* GST_PACKAGE_NAME$,#define GST_PACKAGE_NAME \"${GST_PACKAGE_NAME}\"," \
778     -e 's/.* GST_PACKAGE_ORIGIN$/#define GST_PACKAGE_ORIGIN "Unknown package origin"/' \
779     -e "s,.* GST_PACKAGE_RELEASE_DATETIME$,#define GST_PACKAGE_RELEASE_DATETIME \"${GST_PACKAGE_RELEASE_DATETIME}\"," \
780     -e 's/.* HAVE_CPU_I386$/#define HAVE_CPU_I386 1/' \
781     -e 's/.* HAVE_FGETPOS$/#define HAVE_FGETPOS 1/' \
782     -e 's/.* HAVE_FSETPOS$/#define HAVE_FSETPOS 1/' \
783     -e 's/.* HAVE_PROCESS_H$/#define HAVE_PROCESS_H 1/' \
784     -e 's/.* HAVE_STDLIB_H$/#define HAVE_STDLIB_H 1/' \
785     -e 's/.* HAVE_STRING_H$/#define HAVE_STRING_H 1/' \
786     -e 's/.* HAVE_SYS_STAT_H$/#define HAVE_SYS_STAT_H 1/' \
787     -e 's/.* HAVE_SYS_TYPES_H$/#define HAVE_SYS_TYPES_H 1/' \
788     -e 's/.* HAVE_WIN32$/#define HAVE_WIN32 1/' \
789     -e 's/.* HAVE_WINSOCK2_H$/#define HAVE_WINSOCK2_H 1/' \
790     -e 's/.* HOST_CPU$/#define HOST_CPU "i686"/' \
791     -e 's/.* MEMORY_ALIGNMENT_MALLOC/#define MEMORY_ALIGNMENT_MALLOC 1/' \
792     -e 's/.* LIBDIR$/#ifdef _DEBUG\n#  define LIBDIR PREFIX "\\\\debug\\\\lib"\n#else\n#  define LIBDIR PREFIX "\\\\lib"\n#endif/' \
793     -e 's/.* LOCALEDIR$/#define LOCALEDIR PREFIX "\\\\share\\\\locale"/' \
794     -e 's/.* PACKAGE$/#define PACKAGE "gstreamer"/' \
795     -e 's/.* PACKAGE_BUGREPORT$/#define PACKAGE_BUGREPORT "http:\/\/bugzilla.gnome.org\/enter_bug.cgi?product=GStreamer"/' \
796     -e 's/.* PACKAGE_NAME$/#define PACKAGE_NAME "'$PACKAGE_NAME'"/' \
797     -e "s/.* PACKAGE_STRING$/#define PACKAGE_STRING \"$PACKAGE_STRING\"/" \
798     -e 's/.* PACKAGE_TARNAME$/#define PACKAGE_TARNAME "'$PACKAGE_TARNAME'"/' \
799     -e 's/.* PACKAGE_VERSION$/#define PACKAGE_VERSION "'$PACKAGE_VERSION'"/' \
800     -e 's/.* PLUGINDIR$/#ifdef _DEBUG\n#  define PLUGINDIR PREFIX "\\\\debug\\\\lib\\\\gstreamer-0.11"\n#else\n#  define PLUGINDIR PREFIX "\\\\lib\\\\gstreamer-0.11"\n#endif/' \
801     -e 's/.* GST_PLUGIN_SCANNER_INSTALLED$/#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\\\gst-plugin-scanner"/' \
802     -e 's/.* VERSION$/#define VERSION "'$VERSION'"/' \
803     config.h.in >win32/common/config.h-new
804
805 AC_OUTPUT
806
807 dnl negate for output
808 if test "x${GST_DISABLE_GST_DEBUG}" = "xno"; then enable_gst_debug="yes"; fi
809 if test "x${GST_DISABLE_PARSE}" = "xno"; then enable_parse="yes"; fi
810 if test "x${GST_DISABLE_OPTION_PARSING}" = "xno"; then enable_option_parsing="yes"; fi
811 if test "x${GST_DISABLE_TRACE}" = "xno"; then enable_trace="yes"; fi
812 if test "x${GST_DISABLE_ALLOC_TRACE}" = "xno"; then enable_alloc_trace="yes"; fi
813 if test "x${GST_DISABLE_PLUGIN}" = "xno"; then enable_plugin="yes"; fi
814 if test "x${GST_DISABLE_REGISTRY}" = "xno"; then enable_registry="yes"; fi
815
816 echo "
817
818 Configuration
819         Version                    : ${VERSION}
820         Source code location       : ${srcdir}
821         Prefix                     : ${prefix}
822         Compiler                   : ${CC}
823         Package name               : ${GST_PACKAGE_NAME}
824         Package origin             : ${GST_PACKAGE_ORIGIN}
825
826         Documentation (manuals)    : ${enable_docbook}
827         Documentation (API)        : ${enable_gtk_doc}
828
829         Debug Logging              : ${enable_gst_debug}
830         Command-line parser        : ${enable_parse}
831         Option parsing in gst_init : ${enable_option_parsing}
832         Tracing subsystem          : ${enable_trace}
833         Allocation tracing         : ${enable_alloc_trace}
834         Plugin registry            : ${enable_registry}
835         Plugin support             : ${enable_plugin}
836         Unit testing support       : ${BUILD_CHECK}
837
838         Debug                      : ${USE_DEBUG}
839         Profiling                  : ${USE_PROFILING}
840
841         Building examples          : ${BUILD_EXAMPLES}
842         Building test apps         : ${BUILD_TESTS}
843         Building tests that fail   : ${BUILD_FAILING_TESTS}
844 "