summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2013-09-24configure: Actually use 1.3.0.1 as version to make configure happySebastian Dröge1-1/+1
2013-09-24Back to developmentSebastian Dröge1-2/+2
2013-09-24Release 1.2.0Sebastian Dröge1-2/+2
2013-09-19Back to developmentSebastian Dröge1-1/+1
2013-09-19Release 1.1.90Sebastian Dröge1-2/+2
2013-08-28Back to developmentSebastian Dröge1-1/+1
2013-08-28Release 1.1.4Sebastian Dröge1-2/+2
2013-08-02build: add subdir-objects to AM_INIT_AUTOMAKELubosz Sarnecki1-1/+1
Fixes warnings with automake 1.14 https://bugzilla.gnome.org/show_bug.cgi?id=705350
2013-07-29Back to developmentSebastian Dröge1-1/+1
2013-07-29Release 1.1.3Sebastian Dröge1-2/+2
2013-07-11Back to developmentSebastian Dröge1-1/+1
2013-07-11Release 1.1.2Sebastian Dröge1-2/+2
2013-06-05Back to developmentSebastian Dröge1-1/+1
2013-06-05Release 1.1.1Sebastian Dröge1-2/+2
2013-04-15gst: Add better support for static pluginsSebastian Dröge1-1/+24
API: GST_PLUGIN_STATIC_DECLARE() API: GST_PLUGIN_STATIC_REGISTER() Based on a patch by Håvard Graff <havard.graff@tandberg.com>. This now allows GST_PLUGIN_DEFINE() to create a static plugin if GST_PLUGIN_BUILD_STATIC is defined. The resulting plugin can be statically linked or dynamically linked during compilation but can't be dynamically loaded during runtime. Also adds GST_PLUGIN_STATIC_DECLARE() and GST_PLUGIN_STATIC_REGISTER(), which allows to register a static linked plugin easily. It is still required to manually register every single statically linked plugin from inside the application as this can't be automated in a portable way. A new configure parameter --enable-static-plugins was added that allows to build all plugins we build here as static plugins. Fixes bug #667305.
2013-04-12printf: deal with some of the HAVE_FOO used in the printf codeTim-Philipp Müller1-0/+21
Probably needs some more work for MSVC.
2013-04-12printf: enable and fix compiler warningsTim-Philipp Müller1-0/+4
But suppress -Wformat-nonliteral warnings since sprintf is used with a runtime-generated format string in our vasnprintf implementation.
2013-04-12info: use new internal printf for debug message printingTim-Philipp Müller1-19/+0
and remove all the printf extension/specifier stuff for the system printf. Next we need to add back the custom specifiers to our own printf implementation. https://bugzilla.gnome.org/show_bug.cgi?id=613081
2013-04-12printf: add our own printf implementation for debug loggingTim-Philipp Müller1-0/+1
We will add support for our own printf modifiers, so we can get nice debug log output on all operating systems irrespective of the specific libc version used. https://bugzilla.gnome.org/show_bug.cgi?id=613081
2013-04-09configure: Also check for clock_gettime in libpthreadРуслан Ижбулатов1-0/+5
libwinpthreads provides POSIX time API. It also provides libpthread alias for itself, for compatibility, so that is what we will link with. Fixes #697550
2012-12-30configure: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSTim-Philipp Müller1-1/+1
AM_CONFIG_HEADER has been removed in the just-released automake 1.13: https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html https://bugzilla.gnome.org/show_bug.cgi?id=690881
2012-11-28configure.ac: Update libtool versioningEdward Hervey1-1/+9
In order for 1.x and 1.(x+1) versions to not invade on each other we need to have different lib versions. So we need a consistent and predictable scheme: library version number = MINOR * 100 + MICRO Ex: 1.0.0 => 0 (duh) 1.0.3 => 3 1.1.0 => 100 1.1.1 => 101 1.2.0 => 120 1.10.5 => 1005 ....
2012-11-25gstreamer-1.0.pc: move gmodule-no-export-2.0 dependency to Requires.privateTim-Philipp Müller1-3/+0
Users of GStreamer are not generally expected to use the GModule API directly. so don't force them all to link against it. While we're at it, no need to define this via configure.ac really, just put the dependencies directly into the .pc.in file.
2012-11-07configure: update courtesy of autoupdateTim-Philipp Müller1-29/+24
2012-10-31configure: let AG_GST_PLUGIN_DOCS check for pythonTim-Philipp Müller1-2/+1
And update common for move from AS_PATH_PYTHON to AM_PATH_PYTHON, which as a side-effect should pick up newer python versions as well. https://bugzilla.gnome.org/show_bug.cgi?id=563903
2012-10-25Back to feature developmentTim-Philipp Müller1-1/+1
2012-10-25Release 1.0.2Tim-Philipp Müller1-2/+2
2012-10-22configure: Properly check for pthreadSebastian Dröge1-2/+2
The old check failed on Android for example.
2012-10-07Back to development (bug-fixing)Tim-Philipp Müller1-1/+1
2012-10-07Release 1.0.1Tim-Philipp Müller1-2/+2
2012-09-24Back to development (bug fixing)Tim-Philipp Müller1-10/+5
2012-09-24Release 1.0.0Tim-Philipp Müller1-1/+1
2012-09-17Release 0.11.99Tim-Philipp Müller1-1/+1
2012-09-17Remove GST_USE_UNSTABLE_API guard and definesTim-Philipp Müller1-6/+2
2012-09-14Back to developmentTim-Philipp Müller1-1/+1
2012-09-14Release 0.11.94Tim-Philipp Müller1-1/+1
2012-09-01configure: add reminder to remove GST_UNSTABLE_API stuff before 1.0.0Tim-Philipp Müller1-0/+5
2012-09-01gst-element-check.m4: rename AM_GST_ELEMENT_CHECK to GST_ELEMENT_CHECKTim-Philipp Müller1-1/+0
And allow passing of a minimum version (if not needed, pass 1.0). https://bugzilla.gnome.org/show_bug.cgi?id=682968
2012-08-22configure: bump gtk-doc req to 1.12 (mar-2009)Stefan Sauer1-1/+1
This allows us to e.g. unconditionally use gtkdoc-rebase.
2012-08-08Back to developmentTim-Philipp Müller1-1/+1
2012-08-08Release 0.11.93Tim-Philipp Müller1-1/+1
2012-07-05tests: add memory exampleWim Taymans1-0/+1
2012-06-27build: Make sure AC_INCLUDES_DEFAULT is usedIdar Tollefsen1-14/+16
Without using AC_INCLUDES_DEFAULT explicitly, certain platforms will complain that the header was found, but not usable by the compiler. This happens for instance on Solaris where certain headers are needed to pull in proper defines. Also upgrade to newer autoconf syntax and use proper quoting. https://bugzilla.gnome.org/show_bug.cgi?id=667293
2012-06-26configure: add --disable-tools and --disable-benchmarks optionsLionel Landwerlin1-0/+28
Add option to avoid build binaries. When building for platforms like android, you might want to not link any "final" binary, mostly because it requires special link flags or other parts of code that aren't in the C library. https://bugzilla.gnome.org/show_bug.cgi?id=677621
2012-06-26configure: bump GLib requirement to now-released stable versionTim-Philipp Müller1-1/+1
2012-06-07Back to developmentSebastian Dröge1-1/+1
2012-06-07Release 0.11.92Sebastian Dröge1-1/+1
2012-05-13Back to developmentSebastian Dröge1-1/+1
2012-05-13Release 0.11.91Sebastian Dröge1-1/+1
2012-04-13configure: Modernize autotools setup a bitSebastian Dröge1-12/+4
Also we now only create tar.bz2 and tar.xz tarballs.