regex-pcre-builtin 0.94.2.0.7.7 → 0.94.2.1.7.7
raw patch · 2 files changed
+5/−13 lines, 2 filesdep ~arraydep ~basedep ~bytestringsetup-changedPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
Dependency ranges changed: array, base, bytestring, containers, regex-base
API changes (from Hackage documentation)
+ Text.Regex.PCRE.ByteString: type MatchLength = Int
+ Text.Regex.PCRE.ByteString: type MatchOffset = Int
+ Text.Regex.PCRE.ByteString.Lazy: type MatchLength = Int
+ Text.Regex.PCRE.ByteString.Lazy: type MatchOffset = Int
+ Text.Regex.PCRE.Sequence: type MatchLength = Int
+ Text.Regex.PCRE.Sequence: type MatchOffset = Int
+ Text.Regex.PCRE.String: type MatchLength = Int
+ Text.Regex.PCRE.String: type MatchOffset = Int
Files
- Setup.hs +1/−9
- regex-pcre-builtin.cabal +4/−4
Setup.hs view
@@ -1,11 +1,3 @@ #!/usr/bin/env runhaskell---- I usually compile this with "ghc --make -o setup Setup.hs"- import Distribution.Simple(defaultMain)-main = do putStrLn msg- defaultMain--msg = "\nregex-pcre needs to compile against the libpcre libary from http://www.pcre.org/\n\- \You might also need to edit the end of the regex-pcre.cabal file to point at\n\- \the directories where libpcre 'include' and 'lib' have been installed.\n"+main = defaultMain
regex-pcre-builtin.cabal view
@@ -1,6 +1,6 @@ Name: regex-pcre-builtin -- Keep the Version below in sync with ./Text/Regex/PCRE.hs value getVersion_Text_Regex_PCRE :: Version-Version: 0.94.2.0.7.7+Version: 0.94.2.1.7.7 Cabal-Version: >=1.2.3 License: BSD3 License-File: LICENSE@@ -57,13 +57,13 @@ -- LD-Options: -- Frameworks: -- The only reason to NOT define -DHAVE_PCRE_H is if you are on- -- a plotform without a regex library but want to compile this package+ -- a platform without a regex library but want to compile this package -- anyway. The resulting regex-posix will exist, but throw errors. CC-Options: -DHAVE_PCRE_H --Include-Dirs: /opt/local/include --Extra-Lib-Dirs: /opt/local/lib- Include-dirs: pcre- Includes: pcre+ Include-dirs: pcre+ Includes: pcre.h C-sources: pcre/pcre_compile.c pcre/pcre_config.c pcre/pcre_dfa_exec.c pcre/pcre_exec.c pcre/pcre_fullinfo.c pcre/pcre_get.c