Emmanuel Blot wrote:
> The code coming from the openldap project that checks the POSIX compatibilty runs 
>well under Linux, but fails under cygwin:
> 
> #include <sys/types.h>
> #include <regex.h>
> static char *pattern, *string;
> main()
> {
>  int rc;
>  regex_t re;
> 
>  pattern = "^A";
> 
>  if(regcomp(&re, pattern, 0)) {
>    /* returns 167837896 !! */
>   return -1;
>  }
> 
>   /* ... */
> }
> 
> Any idea ?

Did you link with -lregex? Otherwise you will link to the Cygwin
builtin regcomp function which is the old V8 regexp functionality.
The corresponding header is regexp.h. If you want the POSIX
implementation you have to link with -lregex.

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                        mailto:[EMAIL PROTECTED]
Red Hat, Inc.
mailto:[EMAIL PROTECTED]

--
Want to unsubscribe from this list?
Send a message to [EMAIL PROTECTED]

Reply via email to