mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 13:28:03 +02:00
Add suggestion for copy-on-write regions to fix clip region problems.
Fix check for old headers to respect DESTDIR, (to work better when cross-compiling, etc.). Thanks to Luke-Jr <luke-jr@utopios.org>.
This commit is contained in:
parent
e227a10685
commit
8283381f12
3 changed files with 14 additions and 1 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2005-05-03 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* TODO: Add suggestion for copy-on-write regions to fix clip
|
||||
region problems.
|
||||
|
||||
* src/Makefile.am (install-data-local): Fix check for old headers
|
||||
to respect DESTDIR, (to work better when cross-compiling, etc.).
|
||||
Thanks to Luke-Jr <luke-jr@utopios.org>.
|
||||
|
||||
2005-05-02 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* src/cairo-ft-font.c (_cairo_ft_scaled_font_font_extents): Changes the
|
||||
|
|
|
|||
4
TODO
4
TODO
|
|
@ -164,3 +164,7 @@ do gradients the Right Way).
|
|||
* Verification, profiling, optimization.
|
||||
|
||||
centi_unfinished.svg may provide a good test case.
|
||||
|
||||
* Implement copy-on-write regions in pixman as a more complete
|
||||
solution than the BAD_NESTING stuff to Owen's "Clip region problems"
|
||||
thread.
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ INCLUDES = -I$(srcdir) $(CAIRO_CFLAGS)
|
|||
libcairo_la_LIBADD = $(CAIRO_LIBS)
|
||||
|
||||
install-data-local:
|
||||
@if test -f $(includedir)/cairo.h || test -f $(includedir)/cairo-features.h ; then \
|
||||
@if test -f "$(DESTDIR)$(includedir)/cairo.h" || test -f "$(DESTDIR)$(includedir)/cairo-features.h" ; then \
|
||||
echo "****************************************************************" ; \
|
||||
echo "*** Error: Old headers found. You should remove the following" ; \
|
||||
echo "*** files and then type 'make install' again." ; \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue