Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@sources.redhat.com Delivered-To: mailing list cygwin@sources.redhat.com Message-ID: <3A10582D.A96A9367@redhat.com> Date: Mon, 13 Nov 2000 22:07:57 +0100 From: Corinna Vinschen Reply-To: cygwin@sources.redhat.com X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.14-SMP i686) X-Accept-Language: de, en MIME-Version: 1.0 To: cygwin Subject: Re: regex pb ? References: <001101c04db4$2168eb30$e3dc9c81@ireland.sun.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Emmanuel Blot wrote: > The code coming from the openldap project that checks the POSIX compatibilty runs well under Linux, but fails under cygwin: > > #include > #include > 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:cygwin@sources.redhat.com Red Hat, Inc. mailto:vinschen@redhat.com -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe@sourceware.cygnus.com