aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Verona2012-12-13 02:27:08 +0100
committerJoakim Verona2012-12-13 02:27:08 +0100
commit7fca2eb1c07df076716862a8e4d617ba7186a6d6 (patch)
tree59e1f8df822434a9a112c9e8a28c195e65e9e1fc
parent8fef0521a762381740cd492fd18b4e24a293f330 (diff)
parentde8cbebe112804e3f7f8e5ebd1e5a3661e311b9c (diff)
downloademacs-7fca2eb1c07df076716862a8e4d617ba7186a6d6.tar.gz
emacs-7fca2eb1c07df076716862a8e4d617ba7186a6d6.zip
auto upstream
-rw-r--r--nt/ChangeLog5
-rw-r--r--nt/config.nt26
2 files changed, 24 insertions, 7 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index ced3733da07..4a82a97b58e 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,8 @@
12012-12-13 Juanma Barranquero <lekktu@gmail.com>
2
3 * config.nt: Sync with autogen/config.in.
4 (HAVE_INOTIFY, HAVE_SYS_INOTIFY_H): New macros.
5
12012-12-11 Juanma Barranquero <lekktu@gmail.com> 62012-12-11 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * config.nt: Sync with autogen/config.in. 8 * config.nt: Sync with autogen/config.in.
diff --git a/nt/config.nt b/nt/config.nt
index 789a1a8b2af..db26bf6cbae 100644
--- a/nt/config.nt
+++ b/nt/config.nt
@@ -524,6 +524,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
524/* Define to 1 if you have inet sockets. */ 524/* Define to 1 if you have inet sockets. */
525#define HAVE_INET_SOCKETS 1 525#define HAVE_INET_SOCKETS 1
526 526
527/* Define to 1 to use inotify. */
528#undef HAVE_INOTIFY
529
527/* Define to 1 if you have the <inttypes.h> header file. */ 530/* Define to 1 if you have the <inttypes.h> header file. */
528#undef HAVE_INTTYPES_H 531#undef HAVE_INTTYPES_H
529 532
@@ -920,6 +923,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
920/* Define to 1 if you have the <sys/bitypes.h> header file. */ 923/* Define to 1 if you have the <sys/bitypes.h> header file. */
921#undef HAVE_SYS_BITYPES_H 924#undef HAVE_SYS_BITYPES_H
922 925
926/* Define to 1 if you have the <sys/inotify.h> header file. */
927#undef HAVE_SYS_INOTIFY_H
928
923/* Define to 1 if you have the <sys/inttypes.h> header file. */ 929/* Define to 1 if you have the <sys/inttypes.h> header file. */
924#undef HAVE_SYS_INTTYPES_H 930#undef HAVE_SYS_INTTYPES_H
925 931
@@ -1536,13 +1542,19 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1536 when FOO is an inline function in the header; see 1542 when FOO is an inline function in the header; see
1537 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113>. 1543 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113>.
1538 _GL_INLINE_HEADER_END contains useful stuff to put 1544 _GL_INLINE_HEADER_END contains useful stuff to put
1539 in the same include file, after uses of _GL_INLINE. */ 1545 in the same include file, after uses of _GL_INLINE.
1540#if (__GNUC__ \ 1546
1541 ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ 1547 Suppress the use of extern inline on Apple's platforms,
1542 : 199901L <= __STDC_VERSION__) 1548 as Libc-825.25 (2012-09-19) is incompatible with it; see
1549 <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>.
1550 Perhaps Apple will fix this some day. */
1551#if ((__GNUC__ \
1552 ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \
1553 : 199901L <= __STDC_VERSION__) \
1554 && !defined __APPLE__)
1543# define _GL_INLINE inline 1555# define _GL_INLINE inline
1544# define _GL_EXTERN_INLINE extern inline 1556# define _GL_EXTERN_INLINE extern inline
1545#elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__) 1557#elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __APPLE__
1546# if __GNUC_GNU_INLINE__ 1558# if __GNUC_GNU_INLINE__
1547 /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ 1559 /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */
1548# define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) 1560# define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))
@@ -1551,8 +1563,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1551# endif 1563# endif
1552# define _GL_EXTERN_INLINE extern 1564# define _GL_EXTERN_INLINE extern
1553#else 1565#else
1554# define _GL_INLINE static 1566# define _GL_INLINE static _GL_UNUSED
1555# define _GL_EXTERN_INLINE static 1567# define _GL_EXTERN_INLINE static _GL_UNUSED
1556#endif 1568#endif
1557 1569
1558#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) 1570#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)