aboutsummaryrefslogtreecommitdiffstats
path: root/nt
diff options
context:
space:
mode:
Diffstat (limited to 'nt')
-rw-r--r--nt/ChangeLog6
-rw-r--r--nt/config.nt6
2 files changed, 9 insertions, 3 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index d615151310e..7e064cc3e42 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,6 +1,10 @@
12012-09-30 Juanma Barranquero <lekktu@gmail.com>
2
3 * config.nt: Sync with autogen/config.in.
4
12012-09-29 Juanma Barranquero <lekktu@gmail.com> 52012-09-29 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * config.nt: Sync with autogen/config.in 7 * config.nt: Sync with autogen/config.in.
4 (HAVE_TIMER_SETTIME): New macro. 8 (HAVE_TIMER_SETTIME): New macro.
5 9
62012-09-23 Eli Zaretskii <eliz@gnu.org> 102012-09-23 Eli Zaretskii <eliz@gnu.org>
diff --git a/nt/config.nt b/nt/config.nt
index f8ba4ff9c6c..3b398eae04c 100644
--- a/nt/config.nt
+++ b/nt/config.nt
@@ -1531,7 +1531,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1531 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113>. 1531 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113>.
1532 _GL_INLINE_HEADER_END contains useful stuff to put 1532 _GL_INLINE_HEADER_END contains useful stuff to put
1533 in the same include file, after uses of _GL_INLINE. */ 1533 in the same include file, after uses of _GL_INLINE. */
1534#if __GNUC__ ? __GNUC_STDC_INLINE__ : 199901L <= __STDC_VERSION__ 1534#if (__GNUC__ \
1535 ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \
1536 : 199901L <= __STDC_VERSION__)
1535# define _GL_INLINE inline 1537# define _GL_INLINE inline
1536# define _GL_EXTERN_INLINE extern inline 1538# define _GL_EXTERN_INLINE extern inline
1537#elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__) 1539#elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
@@ -1548,7 +1550,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1548#endif 1550#endif
1549 1551
1550#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) 1552#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
1551# if __GNUC_STDC_INLINE__ 1553# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__
1552# define _GL_INLINE_HEADER_CONST_PRAGMA 1554# define _GL_INLINE_HEADER_CONST_PRAGMA
1553# else 1555# else
1554# define _GL_INLINE_HEADER_CONST_PRAGMA \ 1556# define _GL_INLINE_HEADER_CONST_PRAGMA \