From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: chad brown Newsgroups: gmane.emacs.devel Subject: Re: CVS HEAD fails to build on OSX 10.4 (macterm.c broken?) Date: Wed, 29 Aug 2007 13:14:56 -0700 Message-ID: References: <86k5re4blv.fsf@blue.stonehenge.com> <200708291531.l7TFVnlD010335@oogie-boogie.ics.uci.edu> <86fy224aah.fsf@blue.stonehenge.com> <86bqcq4a4q.fsf@blue.stonehenge.com> <200708291604.l7TG4atk011108@oogie-boogie.ics.uci.edu> <867ine492x.fsf@blue.stonehenge.com> <863ay24826.fsf@blue.stonehenge.com> <200708291641.l7TGfo2t012413@oogie-boogie.ics.uci.edu> <86y7fu2ssp.fsf@blue.stonehenge.com> <79AD547D-950B-499F-8581-415BA66456DF@mit.edu> <200708291749.l7THnAQ3014968@oogie-boogie.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1188418514 18810 80.91.229.12 (29 Aug 2007 20:15:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 29 Aug 2007 20:15:14 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Aug 29 22:15:11 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IQTwT-0004Re-31 for ged-emacs-devel@m.gmane.org; Wed, 29 Aug 2007 22:15:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IQTwT-00028g-4c for ged-emacs-devel@m.gmane.org; Wed, 29 Aug 2007 16:15:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IQTwP-00025y-Hj for emacs-devel@gnu.org; Wed, 29 Aug 2007 16:15:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IQTwO-00023k-QF for emacs-devel@gnu.org; Wed, 29 Aug 2007 16:15:04 -0400 Original-Received: from biscayne-one-station.mit.edu ([18.7.7.80]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IQTwO-0006pf-NW for emacs-devel@gnu.org; Wed, 29 Aug 2007 16:15:04 -0400 Original-Received: from outgoing.mit.edu (OUTGOING-AUTH.MIT.EDU [18.7.22.103]) by biscayne-one-station.mit.edu (8.13.6/8.9.2) with ESMTP id l7TKF3t7004084 for ; Wed, 29 Aug 2007 16:15:03 -0400 (EDT) Original-Received: from [192.168.1.100] (c-24-19-211-201.hsd1.mn.comcast.net [24.19.211.201]) (authenticated bits=0) (User authenticated as yandros@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.6/8.12.4) with ESMTP id l7TKEuNn011939 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT) for ; Wed, 29 Aug 2007 16:15:02 -0400 (EDT) In-Reply-To: <200708291749.l7THnAQ3014968@oogie-boogie.ics.uci.edu> X-Mailer: Apple Mail (2.752.2) X-Scanned-By: MIMEDefang 2.42 X-Spam-Score: 0.00 X-Detected-Kernel: Solaris 9 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:77359 Archived-At: The current problem with multi-tty on macosx seems to come from configure. Namely, this code in src/config.in: > /* If we're using the Carbon API on Mac OS X, define a few more > variables as well. */ > #ifdef HAVE_CARBON > #define HAVE_WINDOW_SYSTEM > #define HAVE_MOUSE > /* XXX The MULTI_KBOARD support does not work yet on this platform. */ > #undef MULTI_KBOARD > #endif results in: > /* If we're using the Carbon API on Mac OS X, define a few more > variables as well. */ > #ifdef HAVE_CARBON > #define HAVE_WINDOW_SYSTEM > #define HAVE_MOUSE > /* XXX The MULTI_KBOARD support does not work yet on this platform. */ > /* #undef MULTI_KBOARD */ > #endif with the #undef MULTI_KBOARD line commented out. This seems to be a feature of autoconf, but I'm not familiar enough with autoconf to be sure, or figure out how to work around it. Can someone more familiar with autoconf either fix src/config.in or tell me how to do it, so I can verify the diagnosis (and look for further problems)? Thanks, *chad