summaryrefslogtreecommitdiff
path: root/autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* autogen.sh: Stop checking for specific versions of AutomakeSimon McVittie2020-03-091-13/+5
| | | | | | | Automake 1.11 was released in May 2009, so cogl has been compatible with the latest version for at least that long. Signed-off-by: Simon McVittie <smcv@debian.org>
* Support automake 1.16wip/lantw/support-automake-1.16Ting-Wei Lan2018-06-231-1/+1
|
* Upgrade to gettext 0.19 to avoid hack in autogen.shJavier Jardón2016-01-071-4/+0
| | | | | | | Using the 'PO_DEPENDS_ON_POT = no' and 'DIST_DEPENDS_ON_UPDATE_PO = no' in po/Makevars https://bugzilla.gnome.org/show_bug.cgi?id=760285
* Support automake 1.15Ting-Wei Lan2015-01-291-1/+1
| | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=743688 Reviewed-by: Robert Bragg <robert@sixbynine.org>
* Add support for automake 1.14Yosef Or Boczko2013-07-031-1/+1
| | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=703553 (cherry picked from commit 27f00aab202b07aba64bd295c071193eef9248b4)
* build: update to build with automake 1.13Robert Bragg2013-01-221-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> (cherry picked from commit 5de5569e960102afe979a5f2f0403e1defebca62)
* Support building with automake 1.12.xStef Walter2012-08-151-11/+16
| | | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=681285 Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit e5b5c5017487cec6426c93c364ff853831bc2080)
* 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.