|
Revision 21699, 455 bytes
(checked in by audreyt, 2 months ago)
|
|
* The logical consequence of r21698.
|
-
Property svn:mime-type set to
text/plain; charset=UTF-8
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | {-# OPTIONS_GHC -fvia-C -fglasgow-exts #-} |
|---|
| 2 | |
|---|
| 3 | {-| |
|---|
| 4 | FFI prerequisites that need to be compiled before "make ghci". |
|---|
| 5 | |
|---|
| 6 | > ...some poetry here... |
|---|
| 7 | -} |
|---|
| 8 | |
|---|
| 9 | module Prereqs where |
|---|
| 10 | |
|---|
| 11 | import Pugs.Compat () |
|---|
| 12 | import Pugs.Embed.Perl5 () |
|---|
| 13 | import Pugs.Meta () |
|---|
| 14 | import Pugs.Run.Perl5 () |
|---|
| 15 | import Pugs.Parser.Charnames () |
|---|
| 16 | import Pugs.Parser.Program () |
|---|
| 17 | import Pugs.Lexer () |
|---|
| 18 | import Data.ByteString () |
|---|
| 19 | import Data.ByteString.Char8 () |
|---|
| 20 | import Data.Yaml.Syck () |
|---|
| 21 | |
|---|
| 22 | main :: IO a |
|---|
| 23 | main = main |
|---|