emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110030: Fix glitches with 'configure


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110030: Fix glitches with 'configure --without-sync-input'.
Date: Fri, 14 Sep 2012 15:01:19 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110030
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Fri 2012-09-14 15:01:19 -0700
message:
  Fix glitches with 'configure --without-sync-input'.
  
  * configure.ac (--without-sync-input): Fix typo in usage message.
  * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
  Include "syssignal.h", for 'main_thread'.
modified:
  ChangeLog
  configure.ac
  src/ChangeLog
  src/alloc.c
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-09-14 18:56:19 +0000
+++ b/ChangeLog 2012-09-14 22:01:19 +0000
@@ -1,5 +1,7 @@
 2012-09-14  Paul Eggert  <address@hidden>
 
+       * configure.ac (--without-sync-input): Fix typo in usage message.
+
        * configure.ac: Port to hosts lacking gtk.
        (PKG_CHECK_MODULES): Capture pkg-config diagnostics
        better, in particular, problems in invoking pkg-config itself.

=== modified file 'configure.ac'
--- a/configure.ac      2012-09-14 18:56:19 +0000
+++ b/configure.ac      2012-09-14 22:01:19 +0000
@@ -128,7 +128,7 @@
 
 OPTION_DEFAULT_ON([sound],[don't compile with sound support])
 
-OPTION_DEFAULT_ON([sync-input],[process async input synchronously])
+OPTION_DEFAULT_ON([sync-input],[don't process async input synchronously])
 if test "$with_sync_input" = yes; then
    AC_DEFINE(SYNC_INPUT, 1, [Process async input synchronously.])
 fi

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-09-14 14:23:50 +0000
+++ b/src/ChangeLog     2012-09-14 22:01:19 +0000
@@ -1,3 +1,8 @@
+2012-09-14  Paul Eggert  <address@hidden>
+
+       * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
+       Include "syssignal.h", for 'main_thread'.
+
 2012-09-14  Dmitry Antipov  <address@hidden>
 
        Avoid out-of-range marker position (Bug#12426).

=== modified file 'src/alloc.c'
--- a/src/alloc.c       2012-09-13 05:18:26 +0000
+++ b/src/alloc.c       2012-09-14 22:01:19 +0000
@@ -100,6 +100,8 @@
 #if ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT
 #ifdef HAVE_PTHREAD
 
+# include "syssignal.h"
+
 /* When GTK uses the file chooser dialog, different backends can be loaded
    dynamically.  One such a backend is the Gnome VFS backend that gets loaded
    if you run Gnome.  That backend creates several threads and also allocates


reply via email to

[Prev in Thread] Current Thread [Next in Thread]