Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com Message-ID: <001101c04db4$2168eb30$e3dc9c81@ireland.sun.com> From: "Emmanuel Blot" To: Subject: regex pb ? Date: Mon, 13 Nov 2000 20:55:59 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Using the last release (1.1.5), I got some errors with regex. 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 ? Emmanuel. -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com