Make ascii clean and ghci clean, bump

This commit is contained in:
Don Stewart 2010-09-23 19:43:18 +00:00
parent bdd7df5bec
commit f56ab96f34
11 changed files with 23 additions and 12 deletions

View File

@ -1,5 +1,5 @@
name: plugins
version: 1.5.1
version: 1.5.1.1
homepage: http://code.haskell.org/~dons/code/hs-plugins
synopsis: Dynamic linking for Haskell and C objects
description: Dynamic linking and runtime evaluation of Haskell,
@ -10,7 +10,7 @@ description: Dynamic linking and runtime evaluation of Haskell,
category: System
license: BSD3
License-file: LICENSE
author: Don Stewart 2004-2009
author: Don Stewart 2004..2010
maintainer: Don Stewart <dons@galois.com>
cabal-version: >= 1.6
build-type: Configure
@ -38,7 +38,8 @@ library
System.Plugins.Process,
System.Plugins.Utils
extensions: CPP, ForeignFunctionInterface
extensions: CPP,
ForeignFunctionInterface
ghc-options: -Wall -funbox-strict-fields -fno-warn-missing-signatures
hs-source-dirs: src
build-depends: base >= 4 && < 5,

View File

@ -1,6 +1,5 @@
{-# OPTIONS -fglasgow-exts #-}
--
-- glaexts for I# ops
{-# LANGUAGE CPP #-}
{-# LANGUAGE MagicHash #-}
--
-- Copyright (c) 2004-5 Don Stewart - http://www.cse.unsw.edu.au/~dons
--

View File

@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
--
-- Copyright (C) 2004 Don Stewart - http://www.cse.unsw.edu.au/~dons
--

View File

@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
--
-- Copyright (C) 2004-5 Don Stewart - http://www.cse.unsw.edu.au/~dons
--

View File

@ -1,4 +1,7 @@
{-# OPTIONS -fglasgow-exts #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE UnboxedTuples #-}
{-# LANGUAGE ForeignFunctionInterface #-}
--
-- Copyright (C) 2004-5 Don Stewart - http://www.cse.unsw.edu.au/~dons
--
@ -392,8 +395,8 @@ reload m@(Module{path = p, iface = hi}) sym = do
Nothing -> LoadFailure ["load: couldn't find symbol <<"++sym++">>"]
Just a -> LoadSuccess m' a
-- ---------------------------------------------------------------------
-- This is a stripped-down version of André Pang's runtime_loader,
--
-- This is a stripped-down version of Andre Pang's runtime_loader,
-- which in turn is based on GHC's ghci\/ObjLinker.lhs binding
--
-- Load and unload\/Haskell modules at runtime. This is not really
@ -406,7 +409,7 @@ reload m@(Module{path = p, iface = hi}) sym = do
--
-- read $fptools\/ghc\/compiler\/ghci\/ObjLinker.lhs for how to use this stuff
--
------------------------------------------------------------------------
-- | Call the initLinker function first, before calling any of the other
-- functions in this module - otherwise you\'ll get unresolved symbols.

View File

@ -1,5 +1,6 @@
{-# LANGUAGE CPP #-}
--
-- Copyright (C) 2004-5 Don Stewart - http://www.cse.unsw.edu.au/~dons
-- Copyright (C) 2004..2010 Don Stewart - http://www.cse.unsw.edu.au/~dons
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public

View File

@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
--
-- Copyright (C) 2005 Sean Seefried - http://www.cse.unsw.edu.au/~sseefried
--

View File

@ -1,4 +1,5 @@
{-# OPTIONS -fglasgow-exts #-}
{-# LANGUAGE CPP #-}
{-# OPTIONS -w #-}
module System.Plugins.ParsePkgConfCabal (

View File

@ -1,4 +1,5 @@
{-# OPTIONS -fglasgow-exts #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE PatternGuards #-}
--
-- Copyright (C) 2004-5 Don Stewart - http://www.cse.unsw.edu.au/~dons
--

View File

@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
--
-- | A Posix.popen compatibility mapping.
--

View File

@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
--
-- Copyright (C) 2004 Don Stewart - http://www.cse.unsw.edu.au/~dons
--