From: Duncan C. <dun...@us...> - 2005-02-17 18:45:54
|
Update of /cvsroot/gtk2hs/gtk2hs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24816 Modified Files: ChangeLog configure.ac Log Message: Remove "--subsystem windows" linker option for now. Bump version to 0.9.7.1_rc4 Index: configure.ac =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/configure.ac,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- configure.ac 13 Feb 2005 16:25:54 -0000 1.31 +++ configure.ac 17 Feb 2005 18:45:43 -0000 1.32 @@ -21,7 +21,7 @@ dnl Process this file with autoconf to produce a configure script. dnl ###################################################################### -AC_INIT(gtk2hs, 0.9.7.1_rc3) +AC_INIT(gtk2hs, 0.9.7.1_rc4) AM_INIT_AUTOMAKE dnl * We require autoconf version 2.50 @@ -85,7 +85,13 @@ # It would be nice to say -Wl,--subsystem,windows which seems to be the # normal way. However, Solaris' sed is broken and won't deal with the # commas correctly: Symptom: "./configure: Bad substitution" - STARTUP_CODE="-Xlinker --subsystem -Xlinker windows"; + + # For the moment do not use the --subsystem windows flag since if you write + # to stdout the program will throw an IO exception and die without any + # explanation. Apparently ghc 6.4 will make this better in that it will + # display the exception so it will not be so confusing. + #STARTUP_CODE="-Xlinker --subsystem -Xlinker windows"; + STARTUP_CODE=; fi; AM_CONDITIONAL(WIN32, test "$WIN32" = "yes") Index: ChangeLog =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/ChangeLog,v retrieving revision 1.359 retrieving revision 1.360 diff -u -d -r1.359 -r1.360 --- ChangeLog 17 Feb 2005 13:51:25 -0000 1.359 +++ ChangeLog 17 Feb 2005 18:45:31 -0000 1.360 @@ -32,6 +32,9 @@ * tools/apiGen/glib-sources.xml: strip version numbers. + * configure.ac: remove "--subsystem windows" linker option for now. + Bump version to 0.9.7.1_rc4 + 2005-02-16 Axel Simon <A....@ke...> * Makefile.am: Renamed TreeViewColumn.chs, TreeModelSort.chs, |