Age | Commit message (Collapse) | Author | Files | Lines |
|
Add my vim recipe that most closely matches the coding style. If you can
improve it, please do so!
|
|
Quick summary of changes:
- Move list of cairo source files out of src/Makefile.am and into
src/Sources.mk,
- Generate files src/Config.mk and src/Config.mk.win32 that choose
the right set of source files and headers based on configured
backends and features. This drastically simplifies building
using other build systems. The src/Makefile.win32 file needs
to be updated to reflect these changes.
- Add README files to various directories,
- Add toplevel HACKING file.
|
|
This patch introduces three macros: _cairo_malloc_ab,
_cairo_malloc_abc, _cairo_malloc_ab_plus_c and replaces various calls
to malloc(a*b), malloc(a*b*c), and malloc(a*b+c) with them. The macros
return NULL if int overflow would occur during the allocation. See
CODING_STYLE for more information.
|
|
|
|
|
|
reviewed by: cworth
|
|
|
|
Note that the BadMatch bug has been resolved.
|
|
|
|
wrapped.
|
|
Standardize brace handling around all else clauses according to new CODING_STYLE guidelines.
|