From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ciamac Moallemi Newsgroups: gmane.emacs.devel Subject: Emacs CVS on Mac OS X 10.4 Tiger Date: Wed, 27 Apr 2005 19:04:08 -0700 Message-ID: <87CA8FFF-7786-4A0E-99B2-E5E8DADE26C1@moallemi.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v728) Content-Type: multipart/mixed; boundary=Apple-Mail-4-1055179003 X-Trace: sea.gmane.org 1114655293 28829 80.91.229.2 (28 Apr 2005 02:28:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 28 Apr 2005 02:28:13 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 28 04:28:11 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DQyku-0002D0-TH for ged-emacs-devel@m.gmane.org; Thu, 28 Apr 2005 04:27:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DQyqx-0002hY-4F for ged-emacs-devel@m.gmane.org; Wed, 27 Apr 2005 22:34:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DQyqm-0002gu-Ui for emacs-devel@gnu.org; Wed, 27 Apr 2005 22:34:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DQyql-0002gQ-91 for emacs-devel@gnu.org; Wed, 27 Apr 2005 22:34:00 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DQyql-0000VJ-6q for emacs-devel@gnu.org; Wed, 27 Apr 2005 22:33:59 -0400 Original-Received: from [171.67.16.123] (helo=smtp1.Stanford.EDU) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DQyRh-0003Mu-Sc for emacs-devel@gnu.org; Wed, 27 Apr 2005 22:08:06 -0400 Original-Received: from erdos.stanford.edu (erdos.Stanford.EDU [171.64.92.25]) by smtp1.Stanford.EDU (8.12.11/8.12.11) with ESMTP id j3S249vU012350 for ; Wed, 27 Apr 2005 19:04:09 -0700 Original-Received: from [171.64.92.247] (ito.Stanford.EDU [171.64.92.247]) (authenticated bits=0) by erdos.stanford.edu (8.12.10/8.12.10) with ESMTP id j3S248dZ029228 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for ; Wed, 27 Apr 2005 19:04:08 -0700 Original-To: emacs-devel@gnu.org X-Mailer: Apple Mail (2.728) X-erdos-MailScanner: Found to be clean X-MailScanner-From: ciamac@moallemi.com X-MailScanner-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:36463 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36463 --Apple-Mail-4-1055179003 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Hi all, Attached is a patch to allow the current version of Emacs in CVS to compile on Tiger. It was suggested [1] to comment out sys_select() and select_and_poll_event() in sys/mac.c. This is a bad idea, on my system it results in an Emacs that eats up 100% of the CPU. Instead, my patch reorders the includes in sys/mac.c so that things work out fine. Best, Ciamac. 1. --Apple-Mail-4-1055179003 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="emacs-tiger.patch" Content-Disposition: attachment; filename=emacs-tiger.patch diff -u -r1.34 mac.c --- src/mac.c 24 Apr 2005 06:05:39 -0000 1.34 +++ src/mac.c 28 Apr 2005 01:55:44 -0000 @@ -28,8 +28,8 @@ #include "lisp.h" #include "process.h" -#include "sysselect.h" #include "systime.h" +#include "sysselect.h" #include "blockinput.h" #include "macterm.h" diff -u -r1.17 macgui.h --- src/macgui.h 19 Apr 2005 12:03:38 -0000 1.17 +++ src/macgui.h 28 Apr 2005 01:55:44 -0000 @@ -43,8 +43,6 @@ #undef min #undef init_process #include -#undef mktime -#define mktime emacs_mktime #undef free #define free unexec_free #undef malloc --Apple-Mail-4-1055179003 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --Apple-Mail-4-1055179003--