[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r109086: * nt/config.nt: Sync with au
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r109086: * nt/config.nt: Sync with autogen/config.in. |
Date: |
Sat, 14 Jul 2012 04:26:31 +0200 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 109086
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Sat 2012-07-14 04:26:31 +0200
message:
* nt/config.nt: Sync with autogen/config.in.
(GC_MARK_SECONDARY_STACK, GC_MARK_STACK, GC_SETJMP_WORKS)
(SETUP_SLAVE_PTY): New macros.
* src/s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
modified:
nt/ChangeLog
nt/config.nt
src/ChangeLog
src/s/ms-w32.h
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog 2012-07-14 02:08:32 +0000
+++ b/nt/ChangeLog 2012-07-14 02:26:31 +0000
@@ -1,3 +1,9 @@
+2012-07-14 Juanma Barranquero <address@hidden>
+
+ * config.nt: Sync with autogen/config.in.
+ (GC_MARK_SECONDARY_STACK, GC_MARK_STACK, GC_SETJMP_WORKS)
+ (SETUP_SLAVE_PTY): New macros.
+
2012-07-13 Juanma Barranquero <address@hidden>
* config.nt: Sync with autogen/config.in.
=== modified file 'nt/config.nt'
--- a/nt/config.nt 2012-07-13 11:49:26 +0000
+++ b/nt/config.nt 2012-07-14 02:26:31 +0000
@@ -160,6 +160,19 @@
/* Define this to check for short string overrun. */
#undef GC_CHECK_STRING_OVERRUN
+/* Mark a secondary stack, like the register stack on the ia64. */
+#undef GC_MARK_SECONDARY_STACK
+
+/* Define to GC_USE_GCPROS_AS_BEFORE if conservative garbage collection is not
+ known to work. */
+#define GC_MARK_STACK 1
+
+/* Define if setjmp is known to save all registers relevant for conservative
+ garbage collection in the jmp_buf.
+ MSVC ignores the "register" keyword, so test fails even though
+ setjmp does work. */
+#define GC_SETJMP_WORKS 1
+
/* Define to 1 if the `getpgrp' function requires zero arguments. */
#undef GETPGRP_VOID
@@ -1238,6 +1251,9 @@
/* Define if process.c:child_setup should not call setpgrp. */
#undef SETPGRP_RELEASES_CTTY
+/* How to set up a slave PTY, if needed. */
+#undef SETUP_SLAVE_PTY
+
/* Make process_send_signal work by "typing" a signal character on the pty. */
#undef SIGNALS_VIA_CHARACTERS
@@ -1668,15 +1684,6 @@
#undef noinline
#endif
-/* These won't be used automatically yet. We also need to know, at least,
- that the stack is continuous. */
-#ifdef __GNUC__
-# ifndef GC_SETJMP_WORKS
- /* GC_SETJMP_WORKS is nearly always appropriate for GCC. */
-# define GC_SETJMP_WORKS 1
-# endif
-#endif
-
#endif /* EMACS_CONFIG_H */
/*
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog 2012-07-14 02:08:32 +0000
+++ b/src/ChangeLog 2012-07-14 02:26:31 +0000
@@ -1,3 +1,7 @@
+2012-07-14 Juanma Barranquero <address@hidden>
+
+ * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
+
2012-07-14 Glenn Morris <address@hidden>
* s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
=== modified file 'src/s/ms-w32.h'
--- a/src/s/ms-w32.h 2012-07-13 11:49:26 +0000
+++ b/src/s/ms-w32.h 2012-07-14 02:26:31 +0000
@@ -50,13 +50,6 @@
for received packets, so datagrams are broken too. */
#define BROKEN_DATAGRAM_SOCKETS 1
-/* MSVC ignores the "register" keyword, so test fails even though
- setjmp does work. */
-#define GC_SETJMP_WORKS 1
-
-/* Enable conservative stack marking for GC. */
-#define GC_MARK_STACK 1
-
#define MAIL_USE_SYSTEM_LOCK 1
/* If the character used to separate elements of the executable path
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r109086: * nt/config.nt: Sync with autogen/config.in.,
Juanma Barranquero <=