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 sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: <20000609143821.18683.qmail@web2102.mail.yahoo.com> Date: Fri, 9 Jun 2000 07:38:21 -0700 (PDT) From: David Robinow Subject: RE: trying to compile PostgreSQL 7.0 on cygwin 1.1.2 To: Joost Kraaijeveld , "'Gregory Krasnow'" Cc: "Cygwin AT Sourceware. Cygnus. Com \(E-mail\)" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii --- Joost Kraaijeveld wrote: > In /src/backend/utils/error/elog.c and > /src/backend/utils/error/exc.c > you have t change > > extern int sys_nerr; > > to > > #ifdef __CYGWIN__ > # define sys_nerr _sys_nerr > #else > extern int sys_nerr; > #endif > This is really terrible advice. Please don't do this. As Chris already mentioned the correct solution is to #include It's generally bad practice to include platform-specific solutions in source code when there are alternatives. The fact is the program in question had a bug (failure to "#include ") and it should be fixed. The old-fashioned Unix error handling is not thread-safe and is likely to break on other systems than just Cygwin. __________________________________________________ Do You Yahoo!? Yahoo! Photos -- now, 100 FREE prints! http://photos.yahoo.com -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com