summaryrefslogtreecommitdiff
path: root/m4
AgeCommit message (Collapse)AuthorFilesLines
2016-04-11m4: update ax_pthread.m4 to latest release to fix '-pthread' arguments ↵Julien Isorce1-116/+269
unused errors on osx. On osx, make check in gstreamer directory currently outputs: "error: argument unused during compilation: '-pthread'". This new ax_pthread.m4 adds -Qunused-arguments when needed. Source: http://www.gnu.org/software/autoconf-archive/ax_pthread.html History: http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=history;f=m4/ax_pthread.m4 https://bugzilla.gnome.org/show_bug.cgi?id=747954
2015-10-31m4: bad parameter use in SET_PACKAGE_RELEASE_DATETIMESylvain Etienne1-2/+2
the 2-parameter invocation: AG_GST_SET_PACKAGE_RELEASE_DATETIME([yes], [YYYY-MM-DD]) is greping the first parameter instead of the second. https://bugzilla.gnome.org/show_bug.cgi?id=739079
2015-10-31m4: grep's RE patterns conflict with M4 quotesSylvain Etienne1-0/+4
https://bugzilla.gnome.org/show_bug.cgi?id=739079
2015-10-31m4: fix comments of SET_PACKAGE_RELEASE_DATETIMESylvain Etienne1-3/+3
https://bugzilla.gnome.org/show_bug.cgi?id=739079
2015-10-21m4: gst-error: remove -Wall/-Werror support for Sun ForteTim-Philipp Müller1-69/+0
Something is not right with these checks, they sometimes lead to build failures on OSX/iOS like e.g. Undefined symbols for architecture i386: "rrwarn=%all,no%E_EMPTY_DECLARATION,no%E_STATEMENT_NOT_REACHED,no%E_ARGUEMENT_MISMATCH,no%E_MACRO_REDEFINED,no%E_LOOP_NOT_ENTERED_AT_TOP", referenced from: implicit entry/start for main executable ld: symbol(s) not found for architecture i386 Let's just remove the -Wall/-Werror support in case of this compiler which is most likely completely unused anyway these days. Code will still compile just fine as before (hopefully), it's just that we don't get extra warnings.
2015-10-21Don't disable assertions for releases and provide a new ↵Sebastian Dröge2-11/+28
GST_ENABLE_EXTRA_CHECKS #define Assertions are useful to have in any case, and we were abusing the #define for adding extra checks to our code. Let's do it properly! https://bugzilla.gnome.org/show_bug.cgi?id=756870
2015-10-20Revert "as-libtool.m4: bump libtool requirement to 2.4.4"Vincent Penquerc'h1-1/+1
Turns out the original upstream 2.4.2 does work, it's the 2.4.2 shipping with Ubuntu that breaks. This reverts commit d689b7e777103ca4f542cbfd9c6cc810679f72d1.
2015-10-12as-libtool.m4: bump libtool requirement to 2.4.4Vincent Penquerc'h1-1/+1
Earlier versions now fail with the switch to autoreconf. https://bugzilla.gnome.org/show_bug.cgi?id=754690
2015-06-16introspection: Add INTROSPECTION_INITNicolas Dufresne1-0/+2
This is the appropriate value to use for g-ir-scanner option --add-init-section. This is also a single location in case we get it wrong again.
2015-04-14gst-glib.m4: also extract and export GIO_PREFIXTim-Philipp Müller1-0/+4
So we can add proper plugin dependencies and reload the gio plugin when gvfs backends are installed or removed. https://bugzilla.gnome.org/show_bug.cgi?id=747841
2014-11-27m4: Update Makefile for ax_pthread.m4Edward Hervey1-1/+1
2014-11-26m4: Drop acx_pthread.m4 in favour of the newer ax_pthread.m4Arun Raghavan1-381/+0
2014-11-26m4: Add ax_pthread.m4Arun Raghavan1-0/+332
We'll share this between gstreamer (which uses a slightly older version of ax_pthread.m4) and gst-plugins-bad (which uses an even older acx_pthread.m4).
2014-11-20gst-parser.m4: Fix Bison version check to handle development versions of GNU ↵Sam Thursfield1-1/+1
Bison Fixes checking bison version 2.7.1.1194-51a4 >= 2.4... Bareword found where operator expected at -e line 1, near "51a4" (Missing operator before a4?) syntax error at -e line 1, near "51a4 " Execution of -e aborted due to compilation errors. This is due to not quoting the string when calling 'perl' to check the version number. The - sign causes a syntax error. https://bugzilla.gnome.org/show_bug.cgi?id=728946
2014-10-27gst-arch: Add support for AArch64Sebastian Dröge1-1/+4
2014-10-21m4: dist new acx_pthread.m4 as wellTim-Philipp Müller1-0/+1
2014-10-21m4: import check for pthread libs from the autoconf-archiveStefan Sauer1-0/+381
The version is slightly updated to not trigger compiler warnings for uninitialized code.
2014-08-19common: Add support for ARC architectureAlexey Brodkin1-1/+5
GStreamer could be built for and run on Synopsys DesignWare ARC cores. More information about these CPUs could be found at: http://www.synopsys.com/IP/PROCESSORIP/ARCPROCESSORS Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
2014-05-27gst-error.m4: remove hack for old GLib versionTim-Philipp Müller1-8/+0
We require something newer now, so this does not apply any more.
2014-05-06gst-x11.m4: use AC_INCLUDES_DEFAULT in header check as wellTim-Philipp Müller1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=667307
2014-05-06m4: in X11 check for libX11 as well as Xlib.hРуслан Ижбулатов1-1/+5
https://bugzilla.gnome.org/show_bug.cgi?id=729621
2014-01-30gst-parser: Bump bison requirement to 2.4Edward Hervey1-2/+2
Needed for '<>' syntax https://bugzilla.gnome.org/show_bug.cgi?id=710034
2013-12-22gst-gettext.m4: check for po/Makevars instead of poTim-Philipp Müller1-1/+1
There might be some stray po/ without po/Makevars in some of the fringe modules.
2013-12-22gst-gettext.m4: make sure DOMAIN in po/Makevars matches GETTEXT_DOMAINTim-Philipp Müller1-0/+7
https://bugzilla.gnome.org/show_bug.cgi?id=705455
2013-12-07gst-error.m4: fix build breakage in configure when cross-compiling to windowsTim-Philipp Müller1-2/+2
When checking ERROR_CXXFLAGS and ERROR_OBJCFLAGS, make sure the comma isn't interpreted as introducing the next argument to AS_{CXX,OBJC}_COMPILER_FLAG. Based on patch by Kyle Schwarz <zeranoe@gmail.com> https://bugzilla.gnome.org/show_bug.cgi?id=720020
2013-11-05gst-glib2.m4: don't use AS_SCRUB_INCLUDESTim-Philipp Müller1-3/+0
https://bugzilla.gnome.org/show_bug.cgi?id=707658
2013-09-26m4: don't try to dist file we've just removedTim-Philipp Müller1-1/+0
2013-09-26m4: Get rid of AS_SCRUB_INCLUDE now that it's not used anymoreSebastian Dröge1-36/+0
2013-09-20gst-glib2.m4: allow toggling cast check and assertions explicitlyArnaud Vrac1-2/+2
https://bugzilla.gnome.org/show_bug.cgi?id=708466
2013-09-19gst-args.m4: also enable fatal warnings only for development versionsTim-Philipp Müller1-1/+8
and not pre-releases. If we disable asserts, that will cause some warnings which we should ignore.
2013-09-19gst-glib2.m4: disable cast checks and assertions for pre-releases as wellTim-Philipp Müller1-6/+6
We want pre-releases to match the final release as much as possible, so should use the same flags.
2013-09-09Make package release date extraction portableTim Mooney1-2/+2
The awk and grep calls were not portable before and caused errors on Solaris. https://bugzilla.gnome.org/show_bug.cgi?id=707661
2013-05-15gst-glib2.m4: Also enable extra checks for development release (e.g. 1.1.x) ↵Sebastian Dröge1-3/+3
and not only for GIT versions
2013-04-09Support XML_CATALOG_FILESРуслан Ижбулатов1-1/+13
Fixes #682077
2013-04-09Don't need docbook2html anymore, need xsltprocРуслан Ижбулатов1-26/+2
2013-02-28m4: AG_GST_CHECK_GST_PLUGINS_FFMPEG -> AG_GST_CHECK_GST_PLUGINS_LIBAVTim-Philipp Müller1-15/+15
2012-11-26gst-glib2.m4: we don't need to link against gthread-2.0 any moreTim-Philipp Müller1-1/+1
All the normal thread-related stuff is in glib proper, and we don't use g_thread_init() any more. https://bugzilla.gnome.org/show_bug.cgi?id=689043
2012-11-19Remove check for xfigChristian Fredrik Kalager Schaller1-33/+1
2012-11-07gst-plugin-docs.m4: fix autogen.sh warningsTim-Philipp Müller1-3/+7
Fix "AM_PATH_PYTHON([2.7]) is m4_require'd but not m4_defun'd" warnings in autogen.sh. Just do AC_REQUIRE(AM_PATH_PYTHON) without any arguments, which makes more sense. And disable plugin doc building if python was not found.
2012-10-31gst-plugin-docs.m4: fix python detectionTim-Philipp Müller1-1/+1
Actually check for python by doing AC_REQUIRE rather than just AC_BEFORE.
2012-10-31gst-plugin-docs.m4: bump python requirement from 2.1 to 2.7Tim-Philipp Müller1-1/+1
2012-10-31m4: AG_GST_PLUGIN_DOCS: use AM_PYTHON_PATH instead of our AS_PATH_PYTHONTim-Philipp Müller1-2/+2
And make the minimum python version argument optional since it's for our own python code in common. https://bugzilla.gnome.org/show_bug.cgi?id=563903
2012-10-06m4: update comment from 0.10 to 1.0Tim-Philipp Müller1-1/+1
2012-08-22Use GTKDOC_REBASE instead of hard-codingРуслан Ижбулатов1-1/+0
GTKDOC_REBASE will be set to /bin/true if gtkdoc-rebase is missing. Remove unused GTK_DOC_USE_REBASE conditional. Fixes #681635
2012-08-05gst-glib.m4: check for glib-mkenums and glib-genmarshal and allow them to be ↵Tim-Philipp Müller1-0/+38
overridden Makes cross-compiling easier. https://bugzilla.gnome.org/show_bug.cgi?id=677620
2012-07-23gst-parser.m4: Fix flex version check for OSX 10.8James William Dumay1-1/+1
Fixes bug #680428.
2012-06-08m4: Move AC_CANONICAL_HOST/_TARGET into AG_GST_INITEdward Hervey2-3/+5
They need to be called before AC_ARG_PROGRAM
2012-06-06gst-arch.m4: Fix cpu definesEdward Hervey1-19/+21
We were detecting the host cpu (and not the target one).
2012-06-01m4: as-objc.m4 is goneEdward Hervey1-1/+0
2012-05-31m4: Update gtk-doc m4 macros to those of gtk-doc 1.18Sebastian Rasmussen1-2/+31