From: Axel S. <as...@us...> - 2004-12-12 12:45:31
|
Update of /cvsroot/gtk2hs/gtk2hs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1863 Modified Files: ChangeLog Makefile.am Log Message: Make the newly added bits on font handling compile. Index: Makefile.am =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/Makefile.am,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Makefile.am 12 Dec 2004 11:04:20 -0000 1.19 +++ Makefile.am 12 Dec 2004 12:45:18 -0000 1.20 @@ -215,7 +215,7 @@ libHSgtk_a_CFLAGS = $(filter-out -I% -D%,$(GTK_CFLAGS)) libHSgtk_a_CPPFLAGS = $(filter -I% -D%,$(GTK_CFLAGS)) -libHSgtk_a_SOURCES = \ +libHSgtk_a_SOURCES = \ gtk/general/Hierarchy.chs \ gtk/general/Signal.chs \ gtk/glib/GValue.chs \ @@ -329,6 +329,8 @@ gtk/glib/GError.chs.pp \ gtk/glib/GType.chs \ gtk/glib/GValueTypes.chs \ + gtk/pango/Description.chs \ + gtk/pango/PangoEnums.chs \ gtk/pango/PangoLayout.chs \ gtk/pango/Rendering.chs \ gtk/embedding/Plug.chs \ Index: ChangeLog =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/ChangeLog,v retrieving revision 1.248 retrieving revision 1.249 diff -u -d -r1.248 -r1.249 --- ChangeLog 12 Dec 2004 11:04:20 -0000 1.248 +++ ChangeLog 12 Dec 2004 12:45:18 -0000 1.249 @@ -3,6 +3,21 @@ * Makefile.am, mk/common.mk: Avoid building dependencies when saying "make clean". + * gtk/pango/Description.chs, gtk/pango/PangoEnums.chs: Rearranged + enumerations, added new functions to query fonts. + + * gtk/pango/Markup.hs, gtk/pango/PangoLayout.chs, + gtk/pango/PangoTypes.chs.pp, gtk/pango/Rendering.chs: As above. + New functionality only available due to fixed in c2hs that allow + type synonyms in hooks. + + * tools/hierarchyGen/hierarchy.list: Corrected a typo. + + * demo/unicode/Arabic.hs: Simplify example. + + * gtk/general/Structs.hsc: Changed the type of pangoScale from Int + to Integer. + 2004-12-9 Duncan Coutts <du...@co...> * gtk/embedding/Embedding.hsc, gtk/entry/EntryCompletion.chs.pp, |