Re: [Haskell-cafe] Building regex-posix for windows

2010-05-03 Thread Daniel Fischer
On Montag 03 Mai 2010 21:40:13, Stanislav Chernichkin wrote: > I think it would be nice if someone will write an article on > Haskell Wiki on building regex-posix, but my English is not > good enough for such things. You could start the article nevertheless and let others polish the English then.

Re: [Haskell-cafe] Building regex-posix for windows

2010-05-03 Thread Stanislav Chernichkin
16.04.2010 3:07, Stephen Tetley ?: Hello You can build GNU's regex C-library with MinGW from source and this will give you regex.h and libregex.a / libregex.dll. I think I've only had the Haskell regex-posix package half-working doing this though; i.e. I could build and install regex-posix

Re: [Haskell-cafe] Building regex-posix for windows

2010-04-15 Thread Stephen Tetley
Hi Ivan I believe that regex-posix (Haskell) is expecting regex.h to be the 'standard posix' header file. The versions of MinGW / MSys I'm using from around Christmas last year didn't ship with a Posix regex implementation, though this might have changed now. I seem to remember that GNU Posix was

Re: [Haskell-cafe] Building regex-posix for windows

2010-04-15 Thread Ivan Lazar Miljenovic
Станислав Черничкин writes: > I'm having trouble building regex-posix for Windows under MinGW > because MinGW does not include regex.h. Which version of regex-posix is this? I think this might be a bug in regex-posix's .cabal file: the darcs repo seems to contain a regex.h which should probably

Re: [Haskell-cafe] Building regex-posix for windows

2010-04-15 Thread Jason Dagit
2010/4/15 Станислав Черничкин > I'm having trouble building regex-posix for Windows under MinGW because > MinGW does not include regex.h. As far as I know Haskell Platform uses MinGW > and it includes regex-posix. I'd like to build regex-posix by myself, like > Haskell Platform does. I would app

Re: [Haskell-cafe] Building regex-posix for windows

2010-04-15 Thread Stephen Tetley
Hello You can build GNU's regex C-library with MinGW from source and this will give you regex.h and libregex.a / libregex.dll. I think I've only had the Haskell regex-posix package half-working doing this though; i.e. I could build and install regex-posix after I'd made and installed GNU regex, b

[Haskell-cafe] Building regex-posix for windows

2010-04-15 Thread Станислав Черничкин
I'm having trouble building regex-posix for Windows under MinGW because MinGW does not include regex.h. As far as I know Haskell Platform uses MinGW and it includes regex-posix. I'd like to build regex-posix by myself, like Haskell Platform does. I would appreciate it if someone suggests some r