From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Joe Buehler Newsgroups: gmane.emacs.devel Subject: [PATCHES] 21.3.50 for Cygwin: patch 1 Date: Fri, 06 Dec 2002 13:26:58 -0500 Sender: emacs-devel-admin@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1039199919 8832 80.91.224.249 (6 Dec 2002 18:38:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 6 Dec 2002 18:38:39 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18KNN0-0002IJ-00 for ; Fri, 06 Dec 2002 19:38:38 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18KNVj-0001ZX-00 for ; Fri, 06 Dec 2002 19:47:39 +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 18KNDj-00055c-00; Fri, 06 Dec 2002 13:29:03 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18KNCI-0004C0-00 for emacs-devel@gnu.org; Fri, 06 Dec 2002 13:27:34 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18KNBm-00046I-00 for emacs-devel@gnu.org; Fri, 06 Dec 2002 13:27:33 -0500 Original-Received: from main.gmane.org ([80.91.224.249]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18KNBl-00045a-00 for emacs-devel@gnu.org; Fri, 06 Dec 2002 13:27:01 -0500 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18KNBh-0001YE-00 for ; Fri, 06 Dec 2002 19:26:57 +0100 Original-To: emacs-devel@gnu.org X-Injected-Via-Gmane: http://gmane.org/ Original-Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18KNBg-0001Y5-00 for ; Fri, 06 Dec 2002 19:26:56 +0100 Original-Path: not-for-mail Original-Lines: 58 Original-NNTP-Posting-Host: 64.47.34.2 Original-X-Trace: main.gmane.org 1039199216 5956 64.47.34.2 (6 Dec 2002 18:26:56 GMT) Original-X-Complaints-To: usenet@main.gmane.org Original-NNTP-Posting-Date: Fri, 6 Dec 2002 18:26:56 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.2) Gecko/20021126 X-Accept-Language: en-us, en Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9926 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9926 I have ported the 21.2 Cygwin patches to 21.3.50 and successfully built with and without X11 using "make bootstrap". Here is the first patch set. Please note that some of the ChangeLog patches will not apply cleanly, because some changelog files have multiple patches, but I assume that doesn't matter... Joe Buehler Index: ChangeLog =================================================================== RCS file: /cvsroot/emacs/emacs/ChangeLog,v retrieving revision 1.289 diff -u -r1.289 ChangeLog --- ChangeLog 27 Nov 2002 22:54:07 -0000 1.289 +++ ChangeLog 6 Dec 2002 17:38:35 -0000 @@ -1,3 +1,9 @@ +2002-12-06 Joe Buehler + + * configure.in: add opsys=cygwin + + * configure: add opsys=cygwin + 2002-11-27 Dave Love * configure.in: Use AC_CHECK_DECLS, not AC_DECL_SYS_SIGLIST. Index: configure =================================================================== RCS file: /cvsroot/emacs/emacs/configure,v retrieving revision 1.100 diff -u -r1.100 configure --- configure 28 Nov 2002 01:08:07 -0000 1.100 +++ configure 6 Dec 2002 16:34:37 -0000 @@ -2475,6 +2475,7 @@ i[3456]86-*-* ) machine=intel386 case "${canonical}" in + *-cygwin ) opsys=cygwin ;; *-lynxos* ) opsys=lynxos ;; *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; *-isc2.2* ) opsys=isc2-2 ;; Index: configure.in =================================================================== RCS file: /cvsroot/emacs/emacs/configure.in,v retrieving revision 1.315 diff -u -r1.315 configure.in --- configure.in 27 Nov 2002 22:53:51 -0000 1.315 +++ configure.in 6 Dec 2002 16:34:40 -0000 @@ -1048,6 +1048,7 @@ i[3456]86-*-* ) machine=intel386 case "${canonical}" in + *-cygwin ) opsys=cygwin ;; *-lynxos* ) opsys=lynxos ;; *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; *-isc2.2* ) opsys=isc2-2 ;;