From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: Re: poll_for_input_1 undefined Date: Fri, 11 Jul 2014 21:34:36 +0400 Message-ID: <53C0202C.9060300@yandex.ru> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1405100112 1801 80.91.229.3 (11 Jul 2014 17:35:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 11 Jul 2014 17:35:12 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 11 19:35:03 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1X5eis-0005Z9-2E for ged-emacs-devel@m.gmane.org; Fri, 11 Jul 2014 19:35:02 +0200 Original-Received: from localhost ([::1]:46059 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5eir-0003RX-KI for ged-emacs-devel@m.gmane.org; Fri, 11 Jul 2014 13:35:01 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:48762) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5eih-0003M1-Fj for emacs-devel@gnu.org; Fri, 11 Jul 2014 13:34:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X5eiZ-0005wo-H4 for emacs-devel@gnu.org; Fri, 11 Jul 2014 13:34:49 -0400 Original-Received: from forward2o.mail.yandex.net ([37.140.190.31]:45702) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5eiZ-0005wD-78; Fri, 11 Jul 2014 13:34:43 -0400 Original-Received: from smtp1o.mail.yandex.net (smtp1o.mail.yandex.net [37.140.190.26]) by forward2o.mail.yandex.net (Yandex) with ESMTP id 3350548610C5; Fri, 11 Jul 2014 21:34:40 +0400 (MSK) Original-Received: from smtp1o.mail.yandex.net (localhost [127.0.0.1]) by smtp1o.mail.yandex.net (Yandex) with ESMTP id E078ADE2727; Fri, 11 Jul 2014 21:34:39 +0400 (MSK) Original-Received: from 67.gprs.mts.ru (67.gprs.mts.ru [213.87.136.67]) by smtp1o.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id lS900n4nRS-YcpK7sGK; Fri, 11 Jul 2014 21:34:39 +0400 (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client certificate not present) X-Yandex-Uniq: 7b903b06-4e75-4302-a990-4c163fa3e4b8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1405100079; bh=ZSRpzaaIOBEoGwljmhpp765HqXBYbIn5FZR3LRpUeV0=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=ZJA3L9j1Vaq6jP2V8iXIinadPDeZjSJ7ifFmSlSgYtBJQflXq3Ld03B2axYrJ/a8r lmLe9Nt/BRZKkcys3Bz/tjNB1oNhpKp8FFNeyW13oUKn1qkn9hJUytJO31BIHHiE9b 4s7RLKbjuc5j5ph5MSzBcRrI7ioFax/soFSPLnXw= Authentication-Results: smtp1o.mail.yandex.net; dkim=pass header.i=@yandex.ru User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] [fuzzy] X-Received-From: 37.140.190.31 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:172990 Archived-At: On 07/11/2014 08:57 PM, Richard Stallman wrote: > In fact, config.h does not mention POLL_FOR_INPUT, neither to define > it nor not to define it. That is because config.in does not mention > POLL_FOR_INPUT either. > > It appears to me that the trunk is broken on X on all platforms, > and has been since the June 5 change in keyboard.c. This is pretty strange if you look at this configure.in fragment: if test "$window_system" != "none"; then AC_DEFINE(HAVE_WINDOW_SYSTEM, 1, [Define if you have a window system.]) AC_DEFINE(POLL_FOR_INPUT, 1, [Define if you poll periodically to detect C-g.]) WINDOW_SYSTEM_OBJ="fontset.o fringe.o image.o" fi Can you regenerate build stuff with autogen.sh and check whether it helps? Dmitry