Changeset 12301 for third-party
- Timestamp:
- 08/16/06 11:35:39 (2 years ago)
- Location:
- third-party/HsJudy
- Files:
-
- 7 modified
-
HsJudy.cabal (modified) (1 diff)
-
Judy/BitSet.hs (modified) (1 diff)
-
Judy/Hash.hs (modified) (1 diff)
-
Judy/IntMap.hs (modified) (1 diff)
-
Judy/MiniGC.hs (modified) (1 diff)
-
Judy/Private.hsc (modified) (1 diff)
-
Judy/StrMap.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
third-party/HsJudy/HsJudy.cabal
r12204 r12301 10 10 other-modules: Judy.Private Judy.MiniGC 11 11 extensions: ForeignFunctionInterface 12 ghc-options: -fglasgow-exts -O2 -static 12 ghc-options: -fglasgow-exts -O2 -static ../judy/Judy-1.0.3/src/Judy1/*.o ../judy/Judy-1.0.3/src/JudyL/*.o ../judy/Judy-1.0.3/src/JudySL/*.o ../judy/Judy-1.0.3/src/JudyHS/*.o ../judy/Judy-1.0.3/src/JudyCommon/*.o 13 13 include-dirs: . ../judy/Judy-1.0.3/src 14 14 -- FIXME: make Cabal work nicely with _hsc files, now I think it works, but doesnt clean _hsc files 15 15 c-sources: Judy/Private_hsc.c 16 extra-libraries: Judy17 extra-lib-dirs: . -
third-party/HsJudy/Judy/BitSet.hs
r11639 r12301 1 1 {-# OPTIONS -fallow-undecidable-instances -fallow-incoherent-instances #-} 2 3 {-# INCLUDE "Judy.h" #-} 2 4 3 5 module Judy.BitSet where -
third-party/HsJudy/Judy/Hash.hs
r12103 r12301 1 1 {-# OPTIONS -fallow-undecidable-instances -fallow-incoherent-instances #-} 2 3 {-# INCLUDE "Judy.h" #-} 2 4 3 5 module Judy.Hash ( -
third-party/HsJudy/Judy/IntMap.hs
r12024 r12301 1 1 {-# OPTIONS -fallow-undecidable-instances -fallow-incoherent-instances #-} 2 3 {-# INCLUDE "Judy.h" #-} 2 4 3 5 module Judy.IntMap ( -
third-party/HsJudy/Judy/MiniGC.hs
r12204 r12301 1 2 {-# INCLUDE "Judy.h" #-} 3 1 4 module Judy.MiniGC ( 2 5 judyGC, newRef, freeRef -
third-party/HsJudy/Judy/Private.hsc
r12204 r12301 12 12 import Foreign.C.Types 13 13 import Foreign.C.String 14 15 {-# INCLUDE "Judy.h" #-} 14 16 15 17 #include <Judy.h> -
third-party/HsJudy/Judy/StrMap.hs
r12024 r12301 1 1 {-# OPTIONS -fallow-undecidable-instances -fallow-incoherent-instances #-} 2 3 {-# INCLUDE "Judy.h" #-} 2 4 3 5 module Judy.StrMap (
