diff --git a/BUGS b/BUGS index 8b502eb..88a0c64 100644 --- a/BUGS +++ b/BUGS @@ -2,12 +2,14 @@ $Id$ 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. - 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 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. + diff --git a/debian/rules b/debian/rules index 72f0b3a..0ec45d4 100755 --- a/debian/rules +++ b/debian/rules @@ -12,7 +12,7 @@ else endif 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-stamp: diff --git a/doc/Makefile.am b/doc/Makefile.am index 0e74a1c..13719b9 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -38,8 +38,8 @@ clean-local: install-data-local: if DOXYGEN $(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 cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3 endif diff --git a/test/dithering.c b/test/dithering.c index d7e0c66..a67ca7a 100644 --- a/test/dithering.c +++ b/test/dithering.c @@ -51,7 +51,6 @@ int main(void) for(x = 0; x < 100; x++) for(y = 0; y < 100; y++) { - int color = CACA_COLOR_WHITE; char ch = '?'; /* distance to black */