+ Fixed a minor compilation warning.
* debian/rules:
+ Explicitely use --enable-imlib2.
* BUGS:
+ Added a note about blinking consoles.
* doc/Makefile.am:
+ Fixed a bashism in the HTML files installation.
tags/v0.99.beta14
| @@ -2,12 +2,14 @@ $Id$ | |||||
| Video rendering | Video rendering | ||||
| o ncurses' hashmap scrolling optimization code causes the screen to | |||||
| occasionally flicker because it tries to optimize the vertical | |||||
| o ncurses' hashmap scrolling optimisation code causes the screen to | |||||
| occasionally flicker because it tries to optimise the vertical | |||||
| scrolling. | scrolling. | ||||
| o Slang cannot display 256 colour pairs under Unix. This is partially | |||||
| solved by the OPTIMISE_SLANG_PALETTE code. | |||||
| o the X11 driver is very slow. | o the X11 driver is very slow. | ||||
| o some terminal emulators (Konsole, or the Linux VGA console) honour | |||||
| the blink attribute instead of using it for bold or bright like any | |||||
| other terminal emulator, hence reducing the amount of available | |||||
| colour pairs. | |||||
| @@ -12,7 +12,7 @@ else | |||||
| endif | endif | ||||
| confflags += --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info | confflags += --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info | ||||
| confflags += --enable-ncurses --enable-slang --enable-x11 | |||||
| confflags += --enable-ncurses --enable-slang --enable-x11 --enable-imlib2 | |||||
| configure: configure-stamp | configure: configure-stamp | ||||
| configure-stamp: | configure-stamp: | ||||
| @@ -38,8 +38,8 @@ clean-local: | |||||
| install-data-local: | install-data-local: | ||||
| if DOXYGEN | if DOXYGEN | ||||
| $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/libcaca-dev/html | $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/libcaca-dev/html | ||||
| cp html/*.html $(DESTDIR)$(datadir)/doc/libcaca-dev/html | |||||
| cp html/*.gif html/*.png $(DESTDIR)$(datadir)/doc/libcaca-dev/html | |||||
| cp `find html -name '*.html' -o -name '*.gif' -o -name '*.png'` \ | |||||
| $(DESTDIR)$(datadir)/doc/libcaca-dev/html | |||||
| $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 | $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 | ||||
| cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3 | cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3 | ||||
| endif | endif | ||||
| @@ -51,7 +51,6 @@ int main(void) | |||||
| for(x = 0; x < 100; x++) | for(x = 0; x < 100; x++) | ||||
| for(y = 0; y < 100; y++) | for(y = 0; y < 100; y++) | ||||
| { | { | ||||
| int color = CACA_COLOR_WHITE; | |||||
| char ch = '?'; | char ch = '?'; | ||||
| /* distance to black */ | /* distance to black */ | ||||