summaryrefslogtreecommitdiff
path: root/autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* Add support for automake 1.14Yosef Or Boczko2013-07-031-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=703553
* build: update to build with automake 1.13Robert Bragg2013-01-211-1/+1
| | | | | | | | | | This make autogen.sh look for automake-1.13 and also updates all Makefile.am files to no longer use the INCLUDES variable which automake 1.13 warns is deprecated by AM_CPPFLAGS. https://bugzilla.gnome.org/show_bug.cgi?id=690891 Reviewed-by: Neil Roberts <neil@linux.intel.com>
* Support building with automake 1.12.xStef Walter2012-08-131-11/+16
| | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=681285 Reviewed-by: Neil Roberts <neil@linux.intel.com>
* build: avoid touching .po files during 'make'Ryan Lortie2012-02-011-0/+4
| | | | | | | A simple workaround to deal with GNU gettext automake integration failing to deal with git. Reviewed-by: Neil Roberts <neil@linux.intel.com>
* build: Allow to compile a git checkout without gtk-docDamien Lespiau2011-05-121-6/+7
| | | | | | Gtk-doc can be hard to install on Windows. This patch enables people wanting to hack on Cogl itself from a Windows system to do so without the hassle to get gtk-doc installed first.
* Adds the ability to build Cogl standaloneRobert Bragg2011-04-111-0/+73
This adds an autogen.sh, configure.ac and build/autotool files etc under clutter/cogl and makes some corresponding Makefile.am changes that make it possible to build and install Cogl as a standalone library. Some notable things about this are: A standalone installation of Cogl installs 3 pkg-config files; cogl-1.0.pc, cogl-gl-1.0.pc and cogl-2.0.pc. The second is only for compatibility with what clutter installed though I'm not sure that anything uses it so maybe we could remove it. cogl-1.0.pc is what Clutter would use if it were updated to build against a standalone cogl library. cogl-2.0.pc is what you would use if you were writing a standalone Cogl application. A standalone installation results in two libraries currently, libcogl.so and libcogl-pango.so. Notably we don't include a major number in the sonames because libcogl supports two major API versions; 1.x as used by Clutter and the experimental 2.x API for standalone applications. Parallel installation of later versions e.g. 3.x and beyond will be supportable either with new sonames or if we can maintain ABI then we'll continue to share libcogl.so. The headers are similarly not installed into a directory with a major version number since the same headers are shared to export the 1.x and 2.x APIs (The only difference is that cogl-2.0.pc ensures that -DCOGL_ENABLE_EXPERIMENTAL_2_0_API is used). Parallel installation of later versions is not precluded though since we can either continue sharing or later add a major version suffix.