summaryrefslogtreecommitdiff
path: root/build
AgeCommit message (Collapse)AuthorFilesLines
2013-07-29Revert accidentally committed stuffBehdad Esfahbod1-253/+0
2013-07-29[ft] Add missing includeBehdad Esfahbod1-0/+253
2012-10-21configure: fix unrecognized -Wno optionGilles Espinasse1-4/+7
gcc-4.4 and later accept every -Wno option. So we can test for the option without no in the name to check if the option is supported. Each time a warning is emitted and without this fix, on gcc-4.4 that will add this warning: cc1: warning: unrecognized command line option "-Wno-unused-but-set-variable" bugs.freedesktop.org #51633, rediffed after 1.12.4 Of course this assumes that all compilers will behave like gcc, which is reasonably implicit in the set of warning flags. Signed-off-by: Gilles Espinasse <g.esp@free.fr> [ickle: slight modification to test both -W and -Wno variants to ideally preserve compatability with non-GCC compilers sharing GCC options!]
2012-10-21configure: fix PKG_CHECK_MODULES tests displaying no noGilles Espinasse1-0/+157
Inside PKG_CHECK_MODULES, AC_MSG_RESULT(no) is already displayed, so the caller should not use another AC_MSG_RESULT(no). Add a comment that empty ACTION-IF-NOT-FOUND is not allowed for PKG_CHECK_MODULES, but a simple : is enough. This is bugs.freedesktop.org #51628, rediffed after 1.12.4 Signed-off-by: Gilles Espinasse <g.esp@free.fr>
2012-04-14configure.ac: generate xz tarballs by defaultJavier Jardón1-0/+194
2012-04-14configure: Conditionally include -fltoMarcus Meissner1-1/+12
As some systems fail to create working binaries with when linked with lto, perform a check during configure. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=39114
2012-04-10Cosmetic configure fixGilles Espinasse1-1/+1
'how to allow undefined symbols in shared libraries' test should use CAIRO_CC_TRY_FLAG_SILENT or configure display is a bit out of order like this checking how to allow undefined symbols in shared libraries used by test suite... checking whether gcc supports -Wl,--allow-shlib-undefined... yes -Wl,--allow-shlib-undefined Signed-off-by: Gilles Espinasse <g.esp@free.fr> Signed-off-by: Uli Schlachter <psychon@znc.in>
2012-04-09build: Disable -Wset-but-unused-variableChris Wilson1-0/+95
This is too noisy in the current build, and masking more important warnings. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2012-02-16build: Add 'clean' target to Makefile.win32 build systemAndrea Canciani2-14/+14
The Makefile.win32 in the subdirectories provide a working 'clean' target (defined in Makefile.win32.common), the central Makefile.win32 'clean' target does not do anything. Replace the noop 'clean' target with one that cleans all the subdirs.