- 02 Sep, 2004 6 commits
-
-
simonpj authored
Preserve ExprWithTySig after type checking
-
simonpj authored
Make error messages consistent
-
ross authored
devolve some library-specific configuration
-
simonmar authored
Rearrange so that Regs.h include comes before inline function definitions. I'm guessing that newer versions of gcc are less picky about this, which is why we hadn't noticed it.
-
simonmar authored
Make the UPD_IND macros compatible with older gccs that don't accept declarations in the middle of a block.
-
dons authored
$T_PRE_APP char now appears to be a '#' on OpenBSD/x86.
-
- 01 Sep, 2004 8 commits
-
-
ross authored
devolve the recently added dirent checks to a new libraries/base/configure.ac
-
panne authored
Guerrilla tactics: Added --enable-hopengl
-
panne authored
Nuked SGMLDocWays
-
simonmar authored
Minore package GHC fixes, and a couple of changes for Visual Studio. Messages from the compiler should now go through a new API in ErrUtils, so that they can be redirected by the GHC client if necessary. (currently not all messages go through this interface, but some of them do).
-
simonmar authored
Better fix for previous from Ian Lynagh.
-
simonmar authored
Apply the fix from [ 1015205 ] ghc-split fails to quote path when used as regex namely escape backslashes in the pathname $Tmp_prefix before using it as a regex. The fix doesn't look like it solves the general case, but it'll do for now.
-
simonmar authored
Catch exit(127) result from raw system, and report that we couldn't execute the program. This is a semi-hack; all exec() errors get reported as exit(127) by rawSystem, but if we treat it just like a program that does exit(127) then the user sees no output.
-
simonmar authored
Fix profiling (ASSIGN_CCSID macros had gone away).
-
- 31 Aug, 2004 8 commits
-
-
sof authored
RTS_SYMBOLS: added closure_flags (innards-peeking user code may use this); merge to STABLE
-
panne authored
Fixed version/release magic. Actually I think we're doing things the wrong way here: We should use AC_INIT with a version parameter as the central place for this info and substitute what's needed into the rest of the files.
-
ross authored
markup fixes (and one typo) in arrow notation section
-
ross authored
add the Debian location for XSL stylesheets
-
simonmar authored
Get the version number into ghc-pkg by creating Version.hs from the Makefile to avoid GHC and possibly shell versionitis.
-
simonmar authored
Try to fix up the previous commit. I'm not sure if this is quite right, but it should be closer.
-
simonmar authored
Warning fix on Win32.
-
simonmar authored
Rationalise the install settings a bit. Before, if you had $OWNER or $GROUP set in your environment, then these would lead to options being given to install, possibly with unexpected results. This caused install to fail for at least one person. Now, $(INSTALL_OWNER) and $(INSTALL_GROUP) are set via config.mk/build.mk as with other settings.
-
- 30 Aug, 2004 8 commits
-
-
sof authored
turns out that 5.04.x differs in how args are quoted across plats; try to cope.
-
panne authored
Cleaned up FPTOOLS_UNDERSCORE (changequote is evil!) and renamed it to FP_LEADING_UNDERSCORE
-
panne authored
The crusade against configuration bit rot continues: Cleaned up header checks
-
panne authored
Removed duplicate tests for headers
-
panne authored
Nuked tests already done via standard AC_INCLUDES_DEFAULT
-
panne authored
Removed unused function checks
-
sof authored
doh
-
sof authored
escape GHC_PKG_VERSION double quotes on all platforms when compiling with <=6.0.x
-
- 28 Aug, 2004 3 commits
- 27 Aug, 2004 3 commits
- 26 Aug, 2004 4 commits
-
-
panne authored
Updated BuildRequires tags. Alas, there seems to be no real standard here, so your mileage may vary... At least the current specs should work on SuSE Linux.
-
panne authored
SGML is dead, long live DocBook XML! Note: The BuildRequires tags in the spec files are still incomplete and the documentation about the DocBook tools needs to be updated, too. Stay tuned...
-
simonpj authored
------------------------------- Print built-in sytax right ------------------------------- Built-in syntax, like (:) and [], is not "in scope" via the GlobalRdrEnv in the usual way. When we print it out, we should also print it in unqualified form, even though it's not in the environment. I've finally bitten the (not very big) bullet, and added to Name the information about whether or not a name is one of these built-in ones. That entailed changing the calls to mkWiredInName, but those are exactly the places where you have to decide whether it's built-in or not, which is fine. Built-in syntax => It's a syntactic form, not "in scope" (e.g. []) Wired-in thing => The thing (Id, TyCon) is fully known to the compiler, not read from an interface file. E.g. Bool, True, Int, Float, and many others All built-in syntax is for wired-in things.
-
simonpj authored
Fix recently-introduced improvement bug
-