3 dnl please read gstreamer/docs/random/autotools before changing this file
5 dnl initialize autoconf
6 dnl releases only do -Wall, cvs and prerelease does -Werror too
7 dnl use a three digit version number for releases, and four for cvs/prerelease
8 AC_INIT(GStreamer Ugly Plug-ins, 0.11.92.1,
9 http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
14 dnl initialize automake
15 AM_INIT_AUTOMAKE([-Wno-portability 1.11 no-dist-gzip dist-xz tar-ustar])
17 dnl define PACKAGE_VERSION_* variables
20 dnl check if this is a release version
21 AS_NANO(GST_GIT="no", GST_GIT="yes")
23 dnl can autoconf find the source ?
24 AC_CONFIG_SRCDIR([ext/mad/gstmad.c])
26 dnl define the output header for config
27 AM_CONFIG_HEADER(config.h)
29 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
30 AM_MAINTAINER_MODE([enable])
32 dnl sets host_* variables
35 dnl use pretty build output with automake >= 1.11
36 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],
37 [AM_DEFAULT_VERBOSITY=1
38 AC_SUBST(AM_DEFAULT_VERBOSITY)])
40 dnl our libraries and install dirs use GST_API_VERSION in the filename
41 dnl to allow side-by-side installation of different API versions
43 AC_SUBST(GST_API_VERSION)
44 AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION",
45 [GStreamer API Version])
47 AS_LIBTOOL(GST, 0, 0, 0)
49 dnl *** required versions of GStreamer stuff ***
53 dnl *** autotools stuff ****
55 dnl allow for different autotools
56 AS_AUTOTOOLS_ALTERNATE
58 dnl Add parameters for aclocal
59 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
62 dnl the version check needs to stay here because autopoint greps for it
63 AM_GNU_GETTEXT_VERSION(0.17)
64 AM_GNU_GETTEXT([external])
65 AG_GST_GETTEXT([gst-plugins-ugly-$GST_API_VERSION])
67 dnl *** check for arguments to configure ***
69 AG_GST_ARG_DISABLE_FATAL_WARNINGS
78 AG_GST_ARG_WITH_PKG_CONFIG_PATH
79 AG_GST_ARG_WITH_PACKAGE_NAME
80 AG_GST_ARG_WITH_PACKAGE_ORIGIN
82 AG_GST_ARG_WITH_PLUGINS
84 AG_GST_ARG_ENABLE_EXTERNAL
86 AG_GST_ARG_ENABLE_EXPERIMENTAL
88 dnl *** checks for platform ***
90 dnl * hardware/architecture *
92 dnl common/m4/gst-arch.m4
96 dnl Determine endianness
99 dnl *** checks for programs ***
105 dnl determine c++ compiler
107 dnl determine if c++ is available on this system
108 AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
110 dnl check if the compiler supports '-c' and '-o' options
113 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
114 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
116 dnl check if the compiler supports do while(0) macros
117 AG_GST_CHECK_DOWHILE_MACROS
119 dnl check for documentation tools
121 AS_PATH_PYTHON([2.1])
122 AG_GST_PLUGIN_DOCS([1.3],[2.1])
124 dnl *** checks for libraries ***
126 dnl check for libm, for sin()
130 dnl *** checks for header files ***
132 dnl used by ext/a52dec
135 dnl Check for malloc.h
136 AC_CHECK_HEADERS([malloc.h])
138 dnl *** checks for types/defines ***
140 dnl *** checks for structures ***
142 dnl *** checks for compiler characteristics ***
144 dnl *** checks for library functions ***
146 dnl Check for a way to display the function name in debug output
147 AG_GST_CHECK_FUNCTION
149 dnl *** checks for dependency libraries ***
153 AG_GST_GLIB_CHECK([$GLIB_REQ])
157 dnl checks for gstreamer
158 dnl uninstalled is selected preferentially -- see pkg-config(1)
159 AG_GST_CHECK_GST($GST_API_VERSION, [$GST_REQ], yes)
160 AG_GST_CHECK_GST_BASE($GST_API_VERSION, [$GST_REQ], yes)
161 AG_GST_CHECK_GST_CHECK($GST_API_VERSION, [$GST_REQ], no)
162 AG_GST_CHECK_GST_PLUGINS_BASE($GST_API_VERSION, [$GSTPB_REQ], yes)
163 AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
165 dnl Check for documentation xrefs
166 GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
167 GST_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-$GST_API_VERSION`"
168 GSTPB_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-plugins-base-$GST_API_VERSION`"
169 AC_SUBST(GLIB_PREFIX)
171 AC_SUBST(GSTPB_PREFIX)
173 dnl *** set variables based on configure arguments ***
175 dnl set license and copyright notice
177 AC_DEFINE_UNQUOTED(GST_LICENSE, "$GST_LICENSE", [GStreamer license])
178 AC_SUBST(GST_LICENSE)
180 dnl set location of plugin directory
183 dnl set release date/time
184 AG_GST_SET_PACKAGE_RELEASE_DATETIME_WITH_NANO([$PACKAGE_VERSION_NANO],
185 ["${srcdir}/gst-plugins-ugly.doap"],
186 [$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_MICRO])
188 dnl define an ERROR_CFLAGS Makefile variable
189 AG_GST_SET_ERROR_CFLAGS($FATAL_WARNINGS, [
190 -Wmissing-declarations -Wmissing-prototypes -Wredundant-decls
191 -Wwrite-strings -Wformat-nonliteral -Wformat-security -Wold-style-definition
192 -Winit-self -Wmissing-include-dirs -Waddress
193 -Waggregate-return -Wno-multichar -Wnested-externs ])
195 dnl define an ERROR_CXXFLAGS Makefile variable
196 AG_GST_SET_ERROR_CXXFLAGS($FATAL_WARNINGS, [
197 -Wmissing-declarations -Wredundant-decls
198 -Wwrite-strings -Wformat-nonliteral -Wformat-security
199 -Winit-self -Wmissing-include-dirs -Waddress -Waggregate-return
202 dnl define correct level for debugging messages
203 AG_GST_SET_LEVEL_DEFAULT($GST_GIT)
206 AG_GST_DEFAULT_ELEMENTS
208 dnl *** plug-ins to include ***
210 dnl Non ported plugins (non-dependant, then dependant)
211 dnl Make sure you have a space before and after all plugins
212 GST_PLUGINS_NONPORTED=" "
213 AC_SUBST(GST_PLUGINS_NONPORTED)
215 dnl these are all the gst plug-ins, compilable without additional libs
216 AG_GST_CHECK_PLUGIN(asfdemux)
217 AG_GST_CHECK_PLUGIN(dvdlpcmdec)
218 AG_GST_CHECK_PLUGIN(dvdsub)
219 AG_GST_CHECK_PLUGIN(xingmux)
220 AG_GST_CHECK_PLUGIN(realmedia)
221 AG_GST_CHECK_PLUGIN(synaesthesia)
223 AC_CHECK_HEADERS([winsock2.h], HAVE_WINSOCK2_H=yes)
225 if test "x$HAVE_WINSOCK2_H" = "xyes"; then
226 WIN32_LIBS="-lws2_32"
230 dnl disable experimental plug-ins
231 if test "x$BUILD_EXPERIMENTAL" != "xyes"; then
232 AG_GST_DISABLE_PLUGIN(synaesthesia)
235 dnl *** ext plug-ins ***
236 dnl keep this list sorted alphabetically !
238 if test "x$BUILD_EXTERNAL" = "xyes"; then
241 AC_MSG_NOTICE([Checking libraries for plugins in ext/])
245 translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true)
246 AG_GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [
247 AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no)
251 translit(dnm, m, l) AM_CONDITIONAL(USE_AMRNB, true)
252 AG_GST_CHECK_FEATURE(AMRNB, [amrnb library], amrnb, [
253 PKG_CHECK_MODULES(AMRNB, opencore-amrnb, [
254 if $PKG_CONFIG --atleast-version=0.1.3 opencore-amrnb; then
255 AC_DEFINE(HAVE_OPENCORE_AMRNB_0_1_3_OR_LATER, 1, [Defined for newer opencore-amrnb])
261 AC_SUBST(AMRNB_CFLAGS)
265 dnl *** amr-wb dec ***
266 translit(dnm, m, l) AM_CONDITIONAL(USE_AMRWB, true)
267 AG_GST_CHECK_FEATURE(AMRWB, [amrwb library], amrwbdec, [
268 PKG_CHECK_MODULES(AMRWB, opencore-amrwb, [
269 if $PKG_CONFIG --atleast-version=0.1.3 opencore-amrwb; then
270 AC_DEFINE(HAVE_OPENCORE_AMRWB_0_1_3_OR_LATER, 1, [Defined for newer opencore-amrwb])
276 AC_SUBST(AMRWB_CFLAGS)
281 translit(dnm, m, l) AM_CONDITIONAL(USE_CDIO, true)
282 AG_GST_CHECK_FEATURE(CDIO, [cdio library], cdio, [
283 AG_GST_PKG_CHECK_MODULES(CDIO, libcdio >= 0.76)
287 translit(dnm, m, l) AM_CONDITIONAL(USE_DVDREAD, true)
288 AG_GST_CHECK_FEATURE(DVDREAD, [dvdread library], dvdreadsrc, [
289 AG_GST_CHECK_LIBHEADER(DVDREAD, dvdread, DVDOpen, , dvdread/dvd_reader.h, DVDREAD_LIBS="-ldvdread")
290 AC_SUBST(DVDREAD_LIBS)
294 translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true)
295 AG_GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
296 AG_GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, $LIBM, lame/lame.h,
299 LAME_LIBS="-lmp3lame $LIBM"
300 dnl is lame presets available
302 AC_TRY_COMPILE([#include <lame/lame.h>], [ int preset = MEDIUM ],
303 [LAME_CFLAGS="-DGSTLAME_PRESET"],
306 AC_TRY_COMPILE([#include <lame/lame.h>], [
307 void *ptr = &lame_set_VBR_quality
309 [LAME_CFLAGS="$LAME_CFLAGS -DHAVE_LAME_SET_VBR_QUALITY"],
310 [LAME_CFLAGS="$LAME_CFLAGS"]
312 AC_SUBST(LAME_CFLAGS)
318 translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
319 AG_GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
321 dnl check with pkg-config first
322 AG_GST_PKG_CHECK_MODULES(MAD, mad >= 0.15)
324 if test "x$HAVE_MAD" = "xno"; then
325 dnl fall back to oldskool detection
326 AC_CHECK_HEADER(mad.h, [
327 AC_CHECK_LIB(mad, mad_decoder_finish,
328 HAVE_MAD="yes" MAD_LIBS="-lmad")
335 translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
336 AG_GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
337 AG_GST_PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.4.0)
340 dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) ***
341 translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
342 AG_GST_CHECK_FEATURE(SIDPLAY, [libsidplay], sid, [
347 translit(dnm, m, l) AM_CONDITIONAL(USE_TWOLAME, true)
348 AG_GST_CHECK_FEATURE(TWOLAME, [twolame], twolame, [
349 PKG_CHECK_MODULES(TWOLAME, twolame >= 0.3.10, [
350 HAVE_TWOLAME="yes"], [
353 AC_SUBST(TWOLAME_CFLAGS)
354 AC_SUBST(TWOLAME_LIBS)
357 dnl *** x264 (MPEG-4 part 10/h.264/AVC encoder) ***
358 translit(dnm, m, l) AM_CONDITIONAL(USE_X264, true)
359 AG_GST_CHECK_FEATURE(X264, [x264 plug-in], x264, [
360 AG_GST_PKG_CHECK_MODULES(X264, x264 >= 0.120.0)
365 dnl not building plugins with external dependencies,
366 dnl but we still need to set the conditionals
368 AM_CONDITIONAL(USE_A52DEC, false)
369 AM_CONDITIONAL(USE_AMRNB, false)
370 AM_CONDITIONAL(USE_AMRWB, false)
371 AM_CONDITIONAL(USE_CDIO, false)
372 AM_CONDITIONAL(USE_DVDREAD, false)
373 AM_CONDITIONAL(USE_LAME, false)
374 AM_CONDITIONAL(USE_MAD, false)
375 AM_CONDITIONAL(USE_MPEG2DEC, false)
376 AM_CONDITIONAL(USE_SIDPLAY, false)
377 AM_CONDITIONAL(USE_TWOLAME, false)
378 AM_CONDITIONAL(USE_X264, false)
380 fi dnl of EXT plugins
382 dnl *** finalize CFLAGS, LDFLAGS, LIBS
385 dnl GST_OPTION_CFLAGS: common flags for profiling, debugging, errors, ...
386 dnl GST_*: flags shared by built objects to link against GStreamer
387 dnl GST_ALL_LDFLAGS: linker flags shared by all
388 dnl GST_LIB_LDFLAGS: additional linker flags for all libaries
389 dnl GST_LT_LDFLAGS: library versioning of our libraries
390 dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
392 dnl GST_OPTION_CFLAGS
393 if test "x$USE_DEBUG" = xyes; then
396 AC_SUBST(PROFILE_CFLAGS)
398 if test "x$PACKAGE_VERSION_NANO" = "x1"; then
399 dnl Define _only_ during CVS (not pre-releases or releases)
400 DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
404 AC_SUBST(DEPRECATED_CFLAGS)
406 dnl every flag in GST_OPTION_CFLAGS and GST_OPTION_CXXFLAGS can be overridden
407 dnl at make time with e.g. make ERROR_CFLAGS=""
408 GST_OPTION_CFLAGS="\$(WARNING_CFLAGS) \$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
409 GST_OPTION_CXXFLAGS="\$(WARNING_CXXFLAGS) \$(ERROR_CXXFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
410 AC_SUBST(GST_OPTION_CFLAGS)
411 AC_SUBST(GST_OPTION_CXXFLAGS)
413 dnl FIXME: do we want to rename to GST_ALL_* ?
414 dnl prefer internal headers to already installed ones
415 dnl also add builddir include for enumtypes and marshal
416 dnl add GST_OPTION_CFLAGS, but overridable
417 GST_CFLAGS="$GST_CFLAGS -DGST_USE_UNSTABLE_API"
418 GST_CXXFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GLIB_EXTRA_CFLAGS \$(GST_OPTION_CXXFLAGS)"
419 GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GLIB_EXTRA_CFLAGS \$(GST_OPTION_CFLAGS)"
421 AC_SUBST(GST_CXXFLAGS)
424 dnl LDFLAGS really should only contain flags, not libs - they get added before
425 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
426 GST_ALL_LDFLAGS="-no-undefined"
427 AC_SUBST(GST_ALL_LDFLAGS)
429 dnl this really should only contain flags, not libs - they get added before
430 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
431 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_desc.*' $GST_ALL_LDFLAGS"
432 AC_SUBST(GST_PLUGIN_LDFLAGS)
434 dnl *** output files ***
441 gst-libs/gst/Makefile
443 gst/asfdemux/Makefile
444 gst/dvdlpcmdec/Makefile
446 gst/realmedia/Makefile
447 gst/synaesthesia/Makefile
452 ext/amrwbdec/Makefile
457 ext/mpeg2dec/Makefile
462 docs/plugins/Makefile
463 docs/version.entities
469 pkgconfig/gstreamer-plugins-ugly-uninstalled.pc
470 gst-plugins-ugly.spec
473 dnl Create the config.h file for Visual Studio builds
474 dnl Beware of spaces and /'s in some of the shell variable contents.
476 -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"\n\n/' \
477 -e 's/.* GETTEXT_PACKAGE$/#define GETTEXT_PACKAGE "'$GETTEXT_PACKAGE'"/' \
478 -e 's/.* GST_DATADIR$/#define GST_DATADIR PREFIX "\\\\share"/' \
479 -e 's/.* GST_LEVEL_DEFAULT$/#define GST_LEVEL_DEFAULT GST_LEVEL_ERROR/' \
480 -e 's/.* GST_LICENSE$/#define GST_LICENSE "'$GST_LICENSE'"/' \
481 -e 's/.* GST_API_VERSION$/#define GST_API_VERSION "'$GST_API_VERSION'"/' \
482 -e "s,.* GST_PACKAGE_NAME$,#define GST_PACKAGE_NAME \"${GST_PACKAGE_NAME}\"," \
483 -e 's/.* GST_PACKAGE_ORIGIN$/#define GST_PACKAGE_ORIGIN "Unknown package origin"/' \
484 -e "s,.* GST_PACKAGE_RELEASE_DATETIME$,#define GST_PACKAGE_RELEASE_DATETIME \"${GST_PACKAGE_RELEASE_DATETIME}\"," \
485 -e 's/.* HAVE_CPU_I386$/#define HAVE_CPU_I386 1/' \
486 -e 's/.* HAVE_FGETPOS$/#define HAVE_FGETPOS 1/' \
487 -e 's/.* HAVE_FSETPOS$/#define HAVE_FSETPOS 1/' \
488 -e 's/.* HAVE_LIBXML2$/#define HAVE_LIBXML2 1/' \
489 -e 's/.* HAVE_PROCESS_H$/#define HAVE_PROCESS_H 1/' \
490 -e 's/.* HAVE_STDLIB_H$/#define HAVE_STDLIB_H 1/' \
491 -e 's/.* HAVE_STRING_H$/#define HAVE_STRING_H 1/' \
492 -e 's/.* HAVE_SYS_STAT_H$/#define HAVE_SYS_STAT_H 1/' \
493 -e 's/.* HAVE_SYS_TYPES_H$/#define HAVE_SYS_TYPES_H 1/' \
494 -e 's/.* HAVE_WIN32$/#define HAVE_WIN32 1/' \
495 -e 's/.* HAVE_WINSOCK2_H$/#define HAVE_WINSOCK2_H 1/' \
496 -e 's/.* HOST_CPU$/#define HOST_CPU "i686"/' \
497 -e 's/.* LIBDIR$/#ifdef _DEBUG\n# define LIBDIR PREFIX "\\\\debug\\\\lib"\n#else\n# define LIBDIR PREFIX "\\\\lib"\n#endif/' \
498 -e 's/.* LOCALEDIR$/#define LOCALEDIR PREFIX "\\\\share\\\\locale"/' \
499 -e "s/.* PACKAGE$/#define PACKAGE \"$PACKAGE\"/" \
500 -e 's/.* PACKAGE_BUGREPORT$/#define PACKAGE_BUGREPORT "http:\/\/bugzilla.gnome.org\/enter_bug.cgi?product=GStreamer"/' \
501 -e "s/.* PACKAGE_NAME$/#define PACKAGE_NAME \"$PACKAGE_NAME\"/" \
502 -e "s/.* PACKAGE_STRING$/#define PACKAGE_STRING \"$PACKAGE_STRING\"/" \
503 -e 's/.* PACKAGE_TARNAME$/#define PACKAGE_TARNAME "'$PACKAGE_TARNAME'"/' \
504 -e 's/.* PACKAGE_VERSION$/#define PACKAGE_VERSION "'$PACKAGE_VERSION'"/' \
505 -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/' \
506 -e 's/.* USE_BINARY_REGISTRY$/#define USE_BINARY_REGISTRY/' \
507 -e 's/.* VERSION$/#define VERSION "'$VERSION'"/' \
508 -e "s/.* DEFAULT_AUDIOSINK$/#define DEFAULT_AUDIOSINK \"directsoundsink\"/" \
509 -e "s/.* DEFAULT_AUDIOSRC$/#define DEFAULT_AUDIOSRC \"audiotestsrc\"/" \
510 -e "s/.* DEFAULT_VIDEOSRC$/#define DEFAULT_VIDEOSRC \"videotestsrc\"/" \
511 -e "s/.* DEFAULT_VISUALIZER$/#define DEFAULT_VISUALIZER \"goom\"/" \
512 config.h.in >win32/common/config.h-new
516 AG_GST_OUTPUT_PLUGINS