From: <ju...@us...> - 2003-07-03 05:19:39
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk In directory sc8-pr-cvs1:/tmp/cvs-serv7385/gtk Modified Files: Makefile Log Message: 2003-07-03 Jens Petersen <pet...@ha...> * mogul/Makefile (INSTALLDIR): Set to mogul, so that mogul gets installed in its own subdir. * gtk/layout/Notebook.chs (notebookGetNPages): New function. Export it. * gtk/general/Gtk.hs: Import and re-export Gdk. * gtk/gdk/Gdk.chs: New module for gdk.h. Currently just provides beep. * gtk/gdk/Drawable.chs (drawPixbuf): Doc fix: s/arg src/arg pb/. * gtk/Makefile: Define Pixbuf-HEADER and Gdk-HEADER. * gtk2hs.spec.in (Requires): Require ghc5. Post and preun require ghc-pkg. (build): Configure --with-hc. (preun): Ignore package removal errors. * configure.in: --with-hc no longer requires a full-path, when requested compiler is in path. When looking for HOpenGL pass "-l" to ghc-pkg, since "--list-packages" confuses ghc-pkg-6.0 built with ghc5. * VERSION: Bump version to 0.9.3.50. * Makefile (dist): LN already includes the "-s" option. Index: Makefile =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Makefile,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- Makefile 16 May 2003 18:45:22 -0000 1.20 +++ Makefile 3 Jul 2003 05:19:36 -0000 1.21 @@ -57,6 +57,8 @@ GC-HEADER = gdk/gdkgc.h Keys-HEADER = gdk/gdkkeys.h Drawable-HEADER = gdk/gdkdrawable.h +Pixbuf-HEADER = gdk/gdkpixbuf.h +Gdk-HEADER = gdk/gdk.h # general Gtk modules IconFactory-HEADER = gtk/gtkiconfactory.h Signal-HEADER = gtk/gtksignal.h |