unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* make-regexp on mingw
@ 2009-05-02 16:51 Richard Shann
  2009-05-02 18:40 ` Linas Vepstas
  2009-05-02 23:10 ` Ludovic Courtès
  0 siblings, 2 replies; 8+ messages in thread
From: Richard Shann @ 2009-05-02 16:51 UTC (permalink / raw)
  To: guile-user

In porting GNU Denemo to windows I noticed that make-regexp is not
present. I found an obscure comment in one file that indicates this is a
known limitation. Can anyone confirm this? Are there some release notes
that I should have seen?
Is it a problem that is likely to be fixed?

Richard Shann






^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: make-regexp on mingw
  2009-05-02 16:51 Richard Shann
@ 2009-05-02 18:40 ` Linas Vepstas
  2009-05-02 23:10 ` Ludovic Courtès
  1 sibling, 0 replies; 8+ messages in thread
From: Linas Vepstas @ 2009-05-02 18:40 UTC (permalink / raw)
  To: richard.shann; +Cc: guile-user

2009/5/2 Richard Shann <richard.shann@virgin.net>:
> In porting GNU Denemo to windows I noticed that make-regexp is not
> present. I found an obscure comment in one file that indicates this is a
> known limitation. Can anyone confirm this? Are there some release notes
> that I should have seen?
> Is it a problem that is likely to be fixed?

FWIW, I work with another app (completely unrelated
to guile) that uses basic, simple, straightforeward
regexp's from the C library.  Initial feedback from
windows users seems  to be that the windows world
has no f**ing idea of what a regexp is; its not in
windows, its not supported by Microsoft. Somewhere,
there's some port of (gnu?) regexp libs to windows,
but rank-n-file windows programmers that I deal with
don't seem to know how to download/compile/build/install
such things.

You may have better luck with this; I don't know how to
code on windows, so I punted.

--linas




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: make-regexp on mingw
  2009-05-02 16:51 Richard Shann
  2009-05-02 18:40 ` Linas Vepstas
@ 2009-05-02 23:10 ` Ludovic Courtès
  1 sibling, 0 replies; 8+ messages in thread
From: Ludovic Courtès @ 2009-05-02 23:10 UTC (permalink / raw)
  To: guile-user

Richard Shann <richard.shann@virgin.net> writes:

> In porting GNU Denemo to windows I noticed that make-regexp is not
> present.

It should be available as long as Guile is configured with
`--enable-regex' (which is the default) and regcomp(3) is provided by
the C library, which I'd expect to be the case here.

Can you show the result of "grep regcomp config.log" when configured on
MinGW?

Thanks,
Ludo'.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: make-regexp on mingw
       [not found] <1241373175.3353.50.camel@debianrts.home>
@ 2009-05-03 21:25 ` Richard Shann
  2009-05-03 22:15   ` Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Richard Shann @ 2009-05-03 21:25 UTC (permalink / raw)
  To: guile-user


> It should be available as long as Guile is configured with
> `--enable-regex' (which is the default) and regcomp(3) is provided by
> the C library, which I'd expect to be the case here.
> 
> Can you show the result of "grep regcomp config.log" when configured
> on
> MinGW?

This gives nothing but grepping for reg gave inter alia
...
configure:24696: checking regex.h usability
conftest.c:94:19: regex.h: No such file or directory
| #include <regex.h>
configure:24738: checking regex.h presence
conftest.c:61:19: regex.h: No such file or directory
| #include <regex.h>
configure:24807: checking for regex.h
ac_cv_header_regex_h=no

which I guess is relevant...

Richard






^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: make-regexp on mingw
  2009-05-03 21:25 ` make-regexp on mingw Richard Shann
@ 2009-05-03 22:15   ` Ludovic Courtès
  2009-05-05 23:08     ` Cesar Strauss
  0 siblings, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2009-05-03 22:15 UTC (permalink / raw)
  To: guile-user

Hello,

Richard Shann <richard.shann@virgin.net> writes:

> conftest.c:94:19: regex.h: No such file or directory

That means that either <regex.h> is simply not available in MinGW, or
it's optional, I don't know.

Thanks,
Ludo'.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: make-regexp on mingw
@ 2009-05-04 16:42 Richard Shann
  0 siblings, 0 replies; 8+ messages in thread
From: Richard Shann @ 2009-05-04 16:42 UTC (permalink / raw)
  To: guile-user

Thanks very much for the help, I'll have to look further at mingw.
Richard

> 
> > conftest.c:94:19: regex.h: No such file or directory
> 
> That means that either <regex.h> is simply not available in MinGW, or
> it's optional, I don't know.
> 
> Thanks,
> Ludo'.
> 





^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: make-regexp on mingw
  2009-05-03 22:15   ` Ludovic Courtès
@ 2009-05-05 23:08     ` Cesar Strauss
  0 siblings, 0 replies; 8+ messages in thread
From: Cesar Strauss @ 2009-05-05 23:08 UTC (permalink / raw)
  To: guile-user

Ludovic Courtès wrote:
> Richard Shann writes:
> 
>> conftest.c:94:19: regex.h: No such file or directory
> 
> That means that either <regex.h> is simply not available in MinGW, or
> it's optional, I don't know.
> 

You can find a suitable regex implementation at the MinGW project
download page:

http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=73286

Regards,
Cesar





^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: make-regexp on mingw
       [not found] <1241626681.3353.69.camel@debianrts.home>
@ 2009-05-06 16:37 ` Richard Shann
  0 siblings, 0 replies; 8+ messages in thread
From: Richard Shann @ 2009-05-06 16:37 UTC (permalink / raw)
  To: guile-user

On Wed, 2009-05-06 at 12:01 -0400, guile-user-request@gnu.org wrote:
> Ludovic Courts wrote:
> > Richard Shann writes:
> > 
> >> conftest.c:94:19: regex.h: No such file or directory
> > 
> > That means that either <regex.h> is simply not available in MinGW,
> or
> > it's optional, I don't know.
> > 
> 
> You can find a suitable regex implementation at the MinGW project
> download page:
> 
> http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=73286
> 
> Regards,
> Cesar 
Thanks - I built this and put libregex.a in the lib directory and
the .dll that it asked for on startup in the bin directory and all was
well.
Richard






^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-05-06 16:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1241373175.3353.50.camel@debianrts.home>
2009-05-03 21:25 ` make-regexp on mingw Richard Shann
2009-05-03 22:15   ` Ludovic Courtès
2009-05-05 23:08     ` Cesar Strauss
     [not found] <1241626681.3353.69.camel@debianrts.home>
2009-05-06 16:37 ` Richard Shann
2009-05-04 16:42 Richard Shann
  -- strict thread matches above, loose matches on Subject: below --
2009-05-02 16:51 Richard Shann
2009-05-02 18:40 ` Linas Vepstas
2009-05-02 23:10 ` Ludovic Courtès

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).