diff --git a/xlhtml/Makefile.am b/xlhtml/Makefile.am
index 62208b5..f88e383 100644
--- a/xlhtml/Makefile.am
+++ b/xlhtml/Makefile.am
@@ -13,6 +13,7 @@ xlhtml_SOURCES = support.c xlhtml.c html.c ascii.c xml.c
xldump_SOURCES = xldump.c
xlcdump_SOURCES = xlcdump.c
AM_CFLAGS = -Wall -Wshadow -Wcast-align -Wpointer-arith
+support.o: version.h
doc:
@echo Generating documentation...
diff --git a/xlhtml/Makefile.in b/xlhtml/Makefile.in
index bd84f07..5f68fc2 100644
--- a/xlhtml/Makefile.in
+++ b/xlhtml/Makefile.in
@@ -384,6 +384,7 @@ install-am install uninstall-am uninstall all-redirect all-am all \
installdirs mostlyclean-generic distclean-generic clean-generic \
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
+support.o: version.h
doc:
@echo Generating documentation...
diff --git a/xlhtml/html.c b/xlhtml/html.c
index c425bc9..b63d121 100644
--- a/xlhtml/html.c
+++ b/xlhtml/html.c
@@ -34,7 +34,7 @@ extern int MaxFontsExceeded;
extern int MaxPalExceeded;
extern int MaxXFExceeded;
extern int MaxFormatsExceeded;
-extern char colorTab[MAX_COLORS];
+extern char colorTab[MAX_COLORS][8];
extern char *default_text_color;
extern char *default_background_color;
extern char *default_image;
diff --git a/xlhtml/version.h b/xlhtml/version.h
index 32089cf..669b388 100644
--- a/xlhtml/version.h
+++ b/xlhtml/version.h
@@ -1,2 +1 @@
-
#define VERSION "0.5"