From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: gettext.h Date: Sat, 07 Dec 2002 16:25:30 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1039297327 19877 80.91.224.249 (7 Dec 2002 21:42:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 7 Dec 2002 21:42:07 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Kmi5-0005AO-00 for ; Sat, 07 Dec 2002 22:42:05 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18KmrN-0007WO-01 for ; Sat, 07 Dec 2002 22:51:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18KmSV-0005rs-02 for emacs-devel@quimby.gnus.org; Sat, 07 Dec 2002 16:25:59 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18KmS5-0005qL-00 for emacs-devel@gnu.org; Sat, 07 Dec 2002 16:25:33 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18KmS3-0005pz-00 for emacs-devel@gnu.org; Sat, 07 Dec 2002 16:25:32 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18KmS3-0005pt-00 for emacs-devel@gnu.org; Sat, 07 Dec 2002 16:25:31 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 18KmS2-0005ZY-00; Sat, 07 Dec 2002 16:25:30 -0500 Original-To: jbuehler@hekimian.com In-reply-to: (message from Joe Buehler on Thu, 05 Dec 2002 15:10:27 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:9960 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9960 A response from a Cygwin developer (below) says that gettext.h should not be used, rather, the proper header file is libintl.h. So I guess getopt.c needs a change of some sort. The symbol _LIBC is not defined for Cygwin, so it tries to use gettext.h, yet it should be using libintl.h, as if _LIBC were set. For the moment I have simply commented out that #include. I verified that that works on GNU/Linux. I do not want to learn enough about Windows or Cygwin to think about what's right to do here for them; I'll just leave it to people who maintain Emacs on Windows to handle this.