aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2013-03-04 18:14:08 +0100
committerJuanma Barranquero2013-03-04 18:14:08 +0100
commit8bd104b35b2a51e007e2f1d35cdb4ed00c15ae4a (patch)
treec71e251c00bc8cc81cf5fce42b85a9c3d635392b
parenta204a108ac6044aafbb3215795a6c40a7f6a0e10 (diff)
downloademacs-8bd104b35b2a51e007e2f1d35cdb4ed00c15ae4a.tar.gz
emacs-8bd104b35b2a51e007e2f1d35cdb4ed00c15ae4a.zip
nt/config.nt: Sync with autogen/config.in.
(DATA_START, ORDINARY_LINK): Remove. (HAVE_DATA_START, HAVE__PUTENV): New macros.
-rw-r--r--nt/ChangeLog6
-rw-r--r--nt/config.nt18
2 files changed, 17 insertions, 7 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index fab143fcddc..e9ff443b947 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,9 @@
12013-03-04 Juanma Barranquero <lekktu@gmail.com>
2
3 * config.nt: Sync with autogen/config.in.
4 (DATA_START, ORDINARY_LINK): Remove.
5 (HAVE_DATA_START, HAVE__PUTENV): New macros.
6
12013-02-25 Eli Zaretskii <eliz@gnu.org> 72013-02-25 Eli Zaretskii <eliz@gnu.org>
2 8
3 * inc/ms-w32.h (BOOT_TIME_FILE): Define. 9 * inc/ms-w32.h (BOOT_TIME_FILE): Define.
diff --git a/nt/config.nt b/nt/config.nt
index cc4e91d9af0..547bb68d80f 100644
--- a/nt/config.nt
+++ b/nt/config.nt
@@ -97,9 +97,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
97/* Extra bits to be or'd in with any pointers stored in a Lisp_Object. */ 97/* Extra bits to be or'd in with any pointers stored in a Lisp_Object. */
98#undef DATA_SEG_BITS 98#undef DATA_SEG_BITS
99 99
100/* Address of the start of the data segment. */
101#undef DATA_START
102
103/* Name of the default sound device. */ 100/* Name of the default sound device. */
104#undef DEFAULT_SOUND_DEVICE 101#undef DEFAULT_SOUND_DEVICE
105 102
@@ -265,6 +262,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
265/* Define to 1 if you have the `copysign' function. */ 262/* Define to 1 if you have the `copysign' function. */
266#undef HAVE_COPYSIGN 263#undef HAVE_COPYSIGN
267 264
265/* Define to 1 if data_start is the address of the start of the main data
266 segment. */
267#undef HAVE_DATA_START
268
268/* Define to 1 if using D-Bus. */ 269/* Define to 1 if using D-Bus. */
269#undef HAVE_DBUS 270#undef HAVE_DBUS
270 271
@@ -1136,6 +1137,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1136/* Define to 1 if you have the `_ftime' function. */ 1137/* Define to 1 if you have the `_ftime' function. */
1137#undef HAVE__FTIME 1138#undef HAVE__FTIME
1138 1139
1140/* Define to 1 if you have the `_putenv' function. */
1141#undef HAVE__PUTENV
1142
1139/* Define to 1 if _setjmp and _longjmp work. */ 1143/* Define to 1 if _setjmp and _longjmp work. */
1140#define HAVE__SETJMP 1 1144#define HAVE__SETJMP 1
1141 1145
@@ -1234,9 +1238,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1234/* Define to 1 if the nlist n_name member is a pointer */ 1238/* Define to 1 if the nlist n_name member is a pointer */
1235#undef N_NAME_POINTER 1239#undef N_NAME_POINTER
1236 1240
1237/* Define if the C compiler is the linker. */
1238#define ORDINARY_LINK 1
1239
1240/* Name of package */ 1241/* Name of package */
1241#define PACKAGE "emacs" 1242#define PACKAGE "emacs"
1242 1243
@@ -1578,13 +1579,16 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1578 _GL_INLINE_HEADER_END contains useful stuff to put 1579 _GL_INLINE_HEADER_END contains useful stuff to put
1579 in the same include file, after uses of _GL_INLINE. 1580 in the same include file, after uses of _GL_INLINE.
1580 1581
1582 Suppress extern inline with HP-UX cc, as it appears to be broken; see
1583 <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>.
1584
1581 Suppress the use of extern inline on Apple's platforms, 1585 Suppress the use of extern inline on Apple's platforms,
1582 as Libc-825.25 (2012-09-19) is incompatible with it; see 1586 as Libc-825.25 (2012-09-19) is incompatible with it; see
1583 <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>. 1587 <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>.
1584 Perhaps Apple will fix this some day. */ 1588 Perhaps Apple will fix this some day. */
1585#if ((__GNUC__ \ 1589#if ((__GNUC__ \
1586 ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ 1590 ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \
1587 : 199901L <= __STDC_VERSION__) \ 1591 : 199901L <= __STDC_VERSION__ && !defined __HP_cc) \
1588 && !defined __APPLE__) 1592 && !defined __APPLE__)
1589# define _GL_INLINE inline 1593# define _GL_INLINE inline
1590# define _GL_EXTERN_INLINE extern inline 1594# define _GL_EXTERN_INLINE extern inline