From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jashy Newsgroups: gmane.emacs.devel Subject: Re: Bootstrap broken on Cygwin Date: Fri, 13 Jun 2008 19:14:37 -0700 (PDT) Message-ID: <17834955.post@talk.nabble.com> References: <4852DD2A.2020507@alice.it> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1213409695 27901 80.91.229.12 (14 Jun 2008 02:14:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 14 Jun 2008 02:14:55 +0000 (UTC) To: Emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 14 04:15:39 2008 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 1K7LIn-0002QF-LQ for ged-emacs-devel@m.gmane.org; Sat, 14 Jun 2008 04:15:37 +0200 Original-Received: from localhost ([127.0.0.1]:41092 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K7LHz-0004bN-LN for ged-emacs-devel@m.gmane.org; Fri, 13 Jun 2008 22:14:47 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K7LHu-0004bI-SL for emacs-devel@gnu.org; Fri, 13 Jun 2008 22:14:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K7LHs-0004b5-Mg for Emacs-devel@gnu.org; Fri, 13 Jun 2008 22:14:41 -0400 Original-Received: from [199.232.76.173] (port=47259 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K7LHs-0004b1-Gh for Emacs-devel@gnu.org; Fri, 13 Jun 2008 22:14:40 -0400 Original-Received: from kuber.nabble.com ([216.139.236.158]:39998) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K7LHs-0005cX-5R for Emacs-devel@gnu.org; Fri, 13 Jun 2008 22:14:40 -0400 Original-Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1K7LHp-0003RN-Vx for Emacs-devel@gnu.org; Fri, 13 Jun 2008 19:14:37 -0700 In-Reply-To: <4852DD2A.2020507@alice.it> X-Nabble-From: nanjunjie@gmail.com X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) 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:99161 Archived-At: 247,250d246 < #if defined(__CYGWIN__) < void cfmakeraw(struct termios *); < #endif /* defined(__CYGWIN__) */ < 5454,5456c5450 < err = cfsetispeed(&attr, XINT (tem)); < err = err + cfsetospeed(&attr, XINT (tem)); < --- > err = cfsetspeed (&attr, XINT (tem)); 5587,5598d5580 < #if defined(__CYGWIN__) < /* Workaround for Cygwin, which is missing cfmakeraw */ < /* Pasted from man page; added in serial.c arbitrarily */ < void cfmakeraw(struct termios *termios_p) < { < termios_p->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP |INLCR|IGNCR|ICRNL|IXON); < termios_p->c_oflag &= ~OPOST; < termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); < termios_p->c_cflag &= ~(CSIZE|PARENB); < termios_p->c_cflag |= CS8; < } < #endif /* defined(__CYGWIN__) */ Angelo Graziosi-2 wrote: > > Current trunk fails to bootstrap, on Cygwin, in this way: > sysdep.o: In function `serial_configure': > /work/emacs/src/sysdep.c:5436: undefined reference to `_cfmakeraw' > /work/emacs/src/sysdep.c:5450: undefined reference to `_cfsetspeed' > > Could these changes (today) > > 2008-06-13 Daniel Engeler > These changes add serial port access. > [...] > * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure): > New functions. > [...] > > be the cause? > > Until 24 hours ago it bootstrapped fine. > > > Hard times for Emacs on Cygwin these days... > > -- View this message in context: http://www.nabble.com/Bootstrap-broken-on-Cygwin-tp17831724p17834955.html Sent from the Emacs - Dev mailing list archive at Nabble.com.