summaryrefslogtreecommitdiff
path: root/acinclude.m4
AgeCommit message (Collapse)AuthorFilesLines
2009-06-20[build] Remove a level of quoting from CAIRO_PARSE_VERSION.M Joonas Pihlaja1-1/+1
The m4 that comes with OpenBSD gets confused by the extra quoting applied to the version number argument when building the bodies of the cairo_version_{major,minor,micro} macros using m4_bpatsubst(). Since we're making sure that the argument is always a number, we can safely use the unquoted \2 body rather than \[\2\].
2008-09-18[acinclude.m4] Add compat macros for autoconf 2.59Behdad Esfahbod1-1/+32
2008-09-18[acinclude.m4] Define m4_foreach_w if not availableBehdad Esfahbod1-2/+7
Has been missing at least as of autoconf 2.59.
2008-09-15[aclocal] Move CAIRO_PARSE_VERSION to acinclude.m4Behdad Esfahbod1-0/+13
It belongs there as it includes other files. It was breaking build on older autoconf it seems.
2008-09-11Update gtk-doc makefile fragmentBehdad Esfahbod1-0/+1
Also move it to build/. We still do not call gtkdocize from autogen.sh.
2008-09-11Move m4 macros into build/aclocal.*.m4 filesBehdad Esfahbod1-261/+0
2008-09-07Back to using autoconf 2.58Behdad Esfahbod1-0/+4
2008-09-06[configure.ac.enable] More macro cleanupBehdad Esfahbod1-0/+1
2008-09-04[configure.in] Forbid arbitrary CAIRO_ patterns in the outputBehdad Esfahbod1-2/+9
2008-09-04[acinclude.m4] Disallow "_CAIRO" patterns in the outputBehdad Esfahbod1-0/+2
Eases m4 writing.
2008-09-04Cleanup configure.in macrosBehdad Esfahbod1-33/+74
2008-09-03[configure.in] Split in various filesBehdad Esfahbod1-0/+93
Now the configure.in file mostly holds the backend enabling logic. The usual cruft has been moved in smaller files named build/*.ac.
2006-12-30Use the "-" option (instead of "-a") when calling "strings"Dan Amelang1-2/+2
This is needed to fix the AX_C_FLOAT_WORDS_BIGENDIAN macro on Mac OS X 10.2, which was brought up here: https://bugs.freedesktop.org/show_bug.cgi?id=9124
2006-12-12Don't use the GNU-only grep option "-a"Dan Amelang1-2/+2
We now use strings first, then grep to find the magic value, as suggested by various people in the reports for the bugs that this fixes: https://bugs.freedesktop.org/show_bug.cgi?id=9247 https://bugs.freedesktop.org/show_bug.cgi?id=9124
2006-12-02[configure] Add -a option to grep calls in AX_C_FLOAT_WORDS_BIGENDIANDan Amelang1-2/+2
This fixes bug #9124 reported here: https://bugs.freedesktop.org/show_bug.cgi?id=9124
2006-11-06Add autoconf macro AX_C_FLOAT_WORDS_BIGENDIANDan Amelang1-0/+65
The symbol that this macro defines (FLOAT_WORDS_BIGENDIAN) can be used to make double arithmetic tricks portable.
2005-01-27configure.in Makefile.am docs/Makefile.am docs/public/*: Add framework for ↵Owen Taylor1-0/+53
doing docs via gtk-doc. src/cairo.[ch] src/cairo-matrix.c: Add some inline docs for arcs and matrices. gtk-doc.m4 acinclude.m4: Check in files from gtk-doc to make the dependency on gtk-doc optional. Add --enable-gtk-doc to the default args.