diff options
| author | Paul Eggert | 2016-11-19 16:00:57 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-11-19 16:01:32 -0800 |
| commit | bbd84f86bce9c04ae08d9bccbad19c48e74f3f8b (patch) | |
| tree | 19d511f0e9094149fc61dfe19af992bff0cb03d8 /m4 | |
| parent | 493a8f33ba916403d1fab620e08146632b826101 (diff) | |
| download | emacs-bbd84f86bce9c04ae08d9bccbad19c48e74f3f8b.tar.gz emacs-bbd84f86bce9c04ae08d9bccbad19c48e74f3f8b.zip | |
Merge from gnulib
This incorporates:
2016-11-15 sys_time: add gnulib::timeval for C++
2016-11-14 snippet/c++defs: fix real-floating arg functions in C++ mode
2016-11-13 strftime: don't use __THROW
2016-11-12 strftime: tune %q
2016-11-12 Merge strftime.c changes from glibc
2016-11-09 manywarnings: fix -Wno-missing-field-initializers detection
2016-11-05 strftime,strptime: support %q to represent the quarter
The glibc changes in turn incorporate the following strftime.c changes:
2015-10-20 Convert misc function definitions to prototype style
2015-09-26 [BZ #18985] out of range data to strftime() causes segfault
2010-01-09 Add support for XPG7 testing
2009-10-30 Implement Burmese language locale for Myanmar
2008-06-13 [BZ #6612] pass reference to tzset_called around
2007-10-16 [BZ #5184] Add tzset_called argument
* build-aux/snippet/c++defs.h, lib/strftime.c, lib/sys_time.in.h:
* m4/manywarnings.m4: Copy from gnulib.
Diffstat (limited to 'm4')
| -rw-r--r-- | m4/manywarnings.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/manywarnings.m4 b/m4/manywarnings.m4 index 89fd0ae38e3..4f701f4eaca 100644 --- a/m4/manywarnings.m4 +++ b/m4/manywarnings.m4 | |||
| @@ -62,10 +62,11 @@ AC_DEFUN([gl_MANYWARN_ALL_GCC], | |||
| 62 | CFLAGS="$CFLAGS -W -Werror" | 62 | CFLAGS="$CFLAGS -W -Werror" |
| 63 | AC_COMPILE_IFELSE( | 63 | AC_COMPILE_IFELSE( |
| 64 | [AC_LANG_PROGRAM( | 64 | [AC_LANG_PROGRAM( |
| 65 | [[void f (void) | 65 | [[int f (void) |
| 66 | { | 66 | { |
| 67 | typedef struct { int a; int b; } s_t; | 67 | typedef struct { int a; int b; } s_t; |
| 68 | s_t s1 = { 0, }; | 68 | s_t s1 = { 0, }; |
| 69 | return s1.b; | ||
| 69 | } | 70 | } |
| 70 | ]], | 71 | ]], |
| 71 | [[]])], | 72 | [[]])], |