From: Duncan C. <dun...@us...> - 2005-01-12 00:01:01
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5562/gtk Modified Files: gtk.pkg.in Log Message: Correct the 'import_dirs' in the <module>.pkg files. Each module has its own directory under the hi difrectory. Correct the install location for glib package's .hi files. Correct a linker error caused by a missing _stub.o file. Everything should install correctly now and the demos should build ok. Index: gtk.pkg.in =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/gtk.pkg.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gtk.pkg.in 12 Dec 2004 21:57:31 -0000 1.2 +++ gtk.pkg.in 12 Jan 2005 00:00:50 -0000 1.3 @@ -1,14 +1,14 @@ Package { name = "gtk", - auto = False, - import_dirs = ["@hidir@"], + auto = True, + import_dirs = ["@hidir@/gtk"], source_dirs = [], library_dirs = [@GTK_LIBDIR_CQ@], hs_libraries = ["HSgtk"], extra_libraries = [@GTK_LIBS_CQ@], include_dirs = [@GTK_CFLAGS_CQ@], c_includes = ["gtk/gtk.h"], - package_deps = ["haskell98"], + package_deps = ["glib"], extra_ghc_opts = [], extra_cc_opts = [], extra_ld_opts = [@GTK_LIBEXTRA_CQ@] |