aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2010-04-30 13:48:04 -0700
committerDan Nicolaescu2010-04-30 13:48:04 -0700
commitafc619439b92209bc437b7764cdf1482784642ab (patch)
treea8aa32e272c1eccc2c91ae0753556b85f877f08b /src
parent5a1bb006a3951ba7a721fb873855266dc2c75dcb (diff)
downloademacs-afc619439b92209bc437b7764cdf1482784642ab.tar.gz
emacs-afc619439b92209bc437b7764cdf1482784642ab.zip
* s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/s/gnu.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 08a4595e695..e543fe7655f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * s/gnu.h (POSIX_SIGNALS):
4 (START_FILES): New definitions.
5
12010-04-30 Glenn Morris <rgm@gnu.org> 62010-04-30 Glenn Morris <rgm@gnu.org>
2 7
3 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065) 8 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
diff --git a/src/s/gnu.h b/src/s/gnu.h
index bf68cabe051..13679a1db4e 100644
--- a/src/s/gnu.h
+++ b/src/s/gnu.h
@@ -28,6 +28,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28 28
29#define SIGNALS_VIA_CHARACTERS 29#define SIGNALS_VIA_CHARACTERS
30 30
31#define POSIX_SIGNALS
32
31/* Tell Emacs that we are a terminfo based system; disable the use 33/* Tell Emacs that we are a terminfo based system; disable the use
32 of local termcap. (GNU uses ncurses.) */ 34 of local termcap. (GNU uses ncurses.) */
33#ifdef HAVE_LIBNCURSES 35#ifdef HAVE_LIBNCURSES
@@ -44,6 +46,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
44#define ORDINARY_LINK 46#define ORDINARY_LINK
45#define DATA_START ({ extern int data_start; (char *) &data_start; }) 47#define DATA_START ({ extern int data_start; (char *) &data_start; })
46 48
49#define START_FILES
50
47/* Some losing code fails to include this and then assumes 51/* Some losing code fails to include this and then assumes
48 that because it is braindead that O_RDONLY==0. */ 52 that because it is braindead that O_RDONLY==0. */
49#ifndef NOT_C_CODE 53#ifndef NOT_C_CODE