summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* build: Post release bump to 1.6.1Damien Lespiau2012-06-251-1/+1
|
* build: Release 1.6.01.6.0Damien Lespiau2012-06-251-2/+2
|
* build: Post release bump to 1.5.7Damien Lespiau2012-05-251-1/+1
|
* build: Release 1.5.61.5.6Damien Lespiau2012-05-251-1/+1
|
* Remove doltAdrian Bunk2012-04-251-1/+0
| | | | | | | | With non-ancient libtool (>= 2.2) there is no longer a significant speed difference. The version of dolt that was included was anyway a NOP on architectures where build speed matters much (e.g. ARM).
* build: Post release bump to 1.5.5Damien Lespiau2012-02-241-1/+1
|
* build: Release 1.5.41.5.4Damien Lespiau2012-02-231-1/+1
|
* build: Post release bump to 1.5.3Damien Lespiau2012-01-251-1/+1
|
* build: Release 1.5.21.5.2Damien Lespiau2012-01-251-1/+1
|
* build: Note we don't support srcdir != builddirColin Walters2012-01-211-0/+2
|
* Add HW accelerated element supportNicolas Dufresne2011-11-071-5/+25
|
* video-sink: Add a standalone GStreamer pluginJosep Torra2011-11-011-0/+11
| | | | | | | * Build the videosink as an independent .so library that can be deployed in GStreamer plugin directory. * Deprecate clutter_gst_video_sink_new() in favor of the usual GStreamer way of instanciating elements
* build: Actually depend on 1.6.0Damien Lespiau2011-10-281-1/+1
| | | | | | | That chunk was forgotten in the last commit which was already pushed on git.gnome.org. Sigh, Fridays.
* build: Bump the version to reflect the developement branchDamien Lespiau2011-10-271-2/+2
| | | | 1.4 has branched, master in now unstable.
* configure: Use the release status define to determine default flagsNeil Roberts2011-10-271-6/+8
| | | | | | | | | | | | | | The --enable-debug option had a special m4_define to set the default value depending on whether the minor version of the release number suggests this is a git build. This patch changes it to use the clutter_gst_release_status define instead so that it by default is enabled only for git builds. The --enable-maintainer-flags option now uses this too. The help strings now have some added square brackets otherwise m4 doesn't seem to expand the macro properly. https://bugzilla.gnome.org/show_bug.cgi?id=661781
* build: Post release bump to 1.4.3Damien Lespiau2011-10-031-1/+1
|
* build: Release 1.4.21.4.2Damien Lespiau2011-10-031-1/+1
|
* build: Post release build to 1.4.1Damien Lespiau2011-09-301-1/+1
|
* build: Release 1.4.0Damien Lespiau2011-09-301-2/+2
|
* refactoring: Do not depend on any GL symbolDamien Lespiau2011-09-271-4/+26
| | | | | | | | | | | | Since Cogl 1.8.0 we can use cogl_renderer_get_n_fragment_texture_units() to know the number of texture image units available for fragment shaders and we can thus avoid using the direct GL call glGetIntegerv and linking against libGL. This does not work on OS X though as we can't get the CoglContext out of the ClutterBackend is that case. Make sure to special case this. Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=657225
* Add "-Wsign-compare" to the maintainer flags and fix the resulting warningsThomas Wood2011-09-211-1/+1
|
* build: Distribute .tar.xz fileDamien Lespiau2011-08-311-1/+1
| | | | As GNOME is moving to this format.
* build: Post release bump to 1.3.15Damien Lespiau2011-08-311-1/+1
|
* build: Release 1.3.141.3.14Damien Lespiau2011-08-311-1/+1
|
* build: Link against -lGL when we know it's safe toDamien Lespiau2011-08-301-0/+22
| | | | | | | | | | | | We are using a gl call (glGetIntergerv). However, detecting wich GL headers and library to use is getting impossible (as nowedays, cogl even has a runtime selection of which library should be dlopened, so it could be either one of flavours of the GLES1 DSO or the GLES2 DSO, or the Big GL one). So, really, we should not have any direct GL call in clutter-gst. The solution is coming, but in the mean time, just link against -lGL when it's safe to assume so.
* video-texture: Add support for audio stream selectionDamien Lespiau2011-07-041-2/+2
| | | | | | It's basicaly a thin layer on top of playbin2. The only extra smartness bits are serializing all the notifications in the main thread and not nofifying twice the same list of available audio streams.
* build: Use the modern way to require libtoolDamien Lespiau2011-07-011-2/+4
|
* build: Post release bump to 1.3.13Damien Lespiau2011-06-061-1/+1
|
* build: Release 1.3.121.3.12Damien Lespiau2011-06-061-1/+1
|
* build: Post release bump to 1.3.11Damien Lespiau2011-05-091-1/+1
|
* build: release 1.3.101.3.10Damien Lespiau2011-05-091-1/+1
|
* build: Post release bump to 1.3.9Damien Lespiau2011-04-051-1/+1
|
* build: Improve the release-message targetDamien Lespiau2011-04-051-3/+13
| | | | | Follow the changes from Clutter and generates the full announcement message automatically.
* video-texture: Initial support for download bufferingDamien Lespiau2011-04-041-0/+1
| | | | | | | | | | This patch introduces new APIs to get and set the buffering mode. We still default to the old behaviour and people will have to opt in to use download buffering. VideoTexture sorts some details for you and exposes a download-buffering signal that is supposed to give the start and end of the current segment of downloaded data you're in. 'start' is always 0 for now.
* video-texture: Clean up and fix the stream bufferingDamien Lespiau2011-03-301-1/+1
| | | | | | | | | | | * Don't use GStreamer structures directly but the gst_message API instead, * Pause the pipeline when buffering. This is explicitely documented as required, * A new "buffering" debug category has been introduced. * The minimum GStreamer version has never been specified, which is somewhat of a mistake since a lot of API addition has orccurred since 0.10.0. Bump it to 0.10.20 for gst_message_parse_buffering_stats()
* build: Don't override manualy GST_LIBS...Damien Lespiau2011-03-251-3/+1
| | | | | For some reason we try override GST_LIBS from the pkg-config check. What the hell? Just add the necessary pkg-config modules.
* build: Generate DLLs on WindowsDamien Lespiau2011-03-251-0/+13
| | | | | | You need to give -no-undefined to libtool to generate DLLs under Windows. Fixes: http://bugzilla.clutter-project.org/show_bug.cgi?id=2603
* build: Post release bump to 1.3.7Damien Lespiau2011-03-021-1/+1
|
* build: Release 1.3.61.3.6Damien Lespiau2011-03-021-1/+1
|
* build: Post release bump to 1.3.5Damien Lespiau2011-01-101-1/+1
|
* build: Introduce new targets to help making releases1.3.4Damien Lespiau2011-01-101-9/+17
| | | | | Copy what Clutter does and add two new Makefile targets (release-check and release-upload) that helps me making releases
* build: Bump the version to 1.3.4Damien Lespiau2011-01-101-1/+1
|
* video-texture: Allow to make accurate seeksDamien Lespiau2010-12-061-0/+1
| | | | | | | | | | | | ClutterGstVideoTexture has now a property (and its equivalent getter and setter) to set seek flags to customize a bit the seek done by set_progress(). For now, we have an "ACCURATE" flag that maps directly to GST_SEEK_FLAG_ACCURATE. To be able to export correctly this new API to g-i and bindings, we need to generate the enum types for ClutterGstSeekFlags. Fixes: http://bugzilla.clutter-project.org/show_bug.cgi?id=2279
* build: Depend on clutter 1.4.0Damien Lespiau2010-11-241-1/+1
| | | | | Instead of depending on a development version, clutter-gst 1.4.0 should depend on clutter 1.4.0.
* build: Post release bump to 1.3.3Damien Lespiau2010-09-201-1/+1
|
* build: Bump clutter requirement to 1.3.141.3.2Damien Lespiau2010-09-201-1/+1
| | | | | To be sure to avoid memory leaks of layers/materials seen in the 1.3.x development cycle.
* build: Bump the version to 1.3.2Damien Lespiau2010-09-201-1/+1
| | | | Preparing for the 1.3.2 release.
* build: Depend on clutter >= 1.3.12Damien Lespiau2010-08-181-1/+1
| | | | | Clutter-gst needs some new symbols to be able to attach a ARBfp program to a CoglMaterial.
* build: Enter the 1.3.x development cycleDamien Lespiau2010-08-181-1/+1
|
* build: Post release bump to 1.2.1Damien Lespiau2010-08-181-1/+1
|