aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-07-08 13:20:19 -0700
committerPaul Eggert2011-07-08 13:20:19 -0700
commit2a84b02da8b20138fad7fafdea92d7c8f0564ee0 (patch)
treeda64c1fd303aa85b53ad485779b05fbdd2685a28 /ChangeLog
parent1692ae2dd5ff8f6f1fc6f6f62b9a44ab7e615615 (diff)
downloademacs-2a84b02da8b20138fad7fafdea92d7c8f0564ee0.tar.gz
emacs-2a84b02da8b20138fad7fafdea92d7c8f0564ee0.zip
Simplify Emacs part of pthread_sigmask support.
* Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid sigprocmask. * configure.in (AC_TYPE_UID_T): New dummy macro. Configure gnulib after adjusting LIBS, so that gnulib can assume the libraries in LIBS. * lib/pthread_sigmask.c, lib/sigprocmask.c, m4/signalblocking.m4: New files, automatically imported from gnulib. * lib/gnulib.mk, m4/gl-comp.m4: Regenerate. * src/Makefile.in (LIB_PTHREAD_SIGMASK): New macro. (LIBES): Use it.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6aaebbc80e9..845fce543b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,15 +2,17 @@
2 2
3 Add gnulib support for pthread_sigmask (Bug#9010). 3 Add gnulib support for pthread_sigmask (Bug#9010).
4 * Makefile.in (GNULIB_MODULES): Add pthread_sigmask. 4 * Makefile.in (GNULIB_MODULES): Add pthread_sigmask.
5 (GNULIB_TOOL_FLAGS): Avoid sigprocmask. Emacs does its own 5 * configure.in (AC_TYPE_UID_T): New dummy macro.
6 implementation of 'sigprocmask' on Windows, and it assumes 6 Configure gnulib after adjusting LIBS,
7 'sigprocmask' on non-Windows hosts, so it doesn't need the 7 so that gnulib can assume the libraries in LIBS.
8 sigprocmask module.
9 * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4: 8 * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4:
9 * lib/pthread_sigprocmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
10 New files, automatically imported from gnulib. 10 New files, automatically imported from gnulib.
11 * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update 11 * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update
12 due to the above changes. 12 due to the above changes.
13 * .bzrignore: Add lib/signal.h. 13 * .bzrignore: Add lib/signal.h.
14 * src/Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
15 (LIBES): Use it.
14 16
152011-07-07 Andreas Schwab <schwab@linux-m68k.org> 172011-07-07 Andreas Schwab <schwab@linux-m68k.org>
16 18