diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-12-24 11:26:35 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-12-24 11:26:35 +0100 |
commit | 02e7729e7b171f037d90543c6d62ad0016f2be3d (patch) | |
tree | ffb247f67e1cfc2e4f58609ceaf834ff874f27dd | |
parent | ea0857a126fbd38e96fd499c7173341a3e8614b6 (diff) | |
download | emacs-02e7729e7b171f037d90543c6d62ad0016f2be3d.tar.gz |
Fixes: debbugs:13222
* configure.ac (SIGNALS_VIA_CHARACTERS): Also define for darwin.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 181fa811543..d6a54782ecc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-12-24 Andreas Schwab <schwab@linux-m68k.org> + + * configure.ac (SIGNALS_VIA_CHARACTERS): Also define for darwin. + (Bug#13222) + 2012-12-20 Akinori MUSHA <knu@iDaemons.org> (tiny change) * Makefile.in (install-arch-dep): Ignore chmod errors. (Bug#13233) diff --git a/configure.ac b/configure.ac index 814b81a72bd..6c694fd7088 100644 --- a/configure.ac +++ b/configure.ac @@ -3633,7 +3633,7 @@ AH_TEMPLATE(SIGNALS_VIA_CHARACTERS, [Make process_send_signal work by case $opsys in dnl Perry Smith <pedz@ddivt1.austin.ibm.com> says this is correct for AIX. dnl thomas@mathematik.uni-bremen.de says this is needed for IRIX. - aix4-2 | cygwin | gnu | irix6-5 | freebsd | netbsd | openbsd ) + aix4-2 | cygwin | gnu | irix6-5 | freebsd | netbsd | openbsd | darwin ) AC_DEFINE(SIGNALS_VIA_CHARACTERS, 1) ;; |