diff options
| author | Glenn Morris | 2012-08-22 06:17:28 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-08-22 06:17:28 -0400 |
| commit | bfef4149cf6451bdd888dace455214c51914ec42 (patch) | |
| tree | 21c4e6b1b5ccd0357cd105de1667a7642a3960fc | |
| parent | 4ce7a13803d72d6def8943033a94656f9b02cbd8 (diff) | |
| download | emacs-bfef4149cf6451bdd888dace455214c51914ec42.tar.gz emacs-bfef4149cf6451bdd888dace455214c51914ec42.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/config.in | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/autogen/config.in b/autogen/config.in index bd10c9f4076..9b208cc513a 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -1554,20 +1554,34 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1554 | #if __GNUC__ ? __GNUC_STDC_INLINE__ : 199901L <= __STDC_VERSION__ | 1554 | #if __GNUC__ ? __GNUC_STDC_INLINE__ : 199901L <= __STDC_VERSION__ |
| 1555 | # define _GL_INLINE inline | 1555 | # define _GL_INLINE inline |
| 1556 | # define _GL_EXTERN_INLINE extern inline | 1556 | # define _GL_EXTERN_INLINE extern inline |
| 1557 | # if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ | 1557 | #elif 2 < __GNUC__ + (7 <= __GNUC_MINOR__) |
| 1558 | # define _GL_INLINE_HEADER_BEGIN \ | 1558 | # if __GNUC_GNU_INLINE__ |
| 1559 | _Pragma ("GCC diagnostic push") \ | 1559 | /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ |
| 1560 | _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ | 1560 | # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) |
| 1561 | _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") | 1561 | # else |
| 1562 | # define _GL_INLINE_HEADER_END \ | 1562 | # define _GL_INLINE extern inline |
| 1563 | _Pragma ("GCC diagnostic pop") | ||
| 1564 | # endif | 1563 | # endif |
| 1564 | # define _GL_EXTERN_INLINE extern | ||
| 1565 | #else | 1565 | #else |
| 1566 | # define _GL_INLINE static inline | 1566 | # define _GL_INLINE static inline |
| 1567 | # define _GL_EXTERN_INLINE static inline | 1567 | # define _GL_EXTERN_INLINE static inline |
| 1568 | #endif | 1568 | #endif |
| 1569 | 1569 | ||
| 1570 | #ifndef _GL_INLINE_HEADER_BEGIN | 1570 | #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) |
| 1571 | # if __GNUC_STDC_INLINE__ | ||
| 1572 | # define _GL_INLINE_HEADER_CONST_PRAGMA | ||
| 1573 | # else | ||
| 1574 | # define _GL_INLINE_HEADER_CONST_PRAGMA \ | ||
| 1575 | _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") | ||
| 1576 | # endif | ||
| 1577 | # define _GL_INLINE_HEADER_BEGIN \ | ||
| 1578 | _Pragma ("GCC diagnostic push") \ | ||
| 1579 | _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ | ||
| 1580 | _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ | ||
| 1581 | _GL_INLINE_HEADER_CONST_PRAGMA | ||
| 1582 | # define _GL_INLINE_HEADER_END \ | ||
| 1583 | _Pragma ("GCC diagnostic pop") | ||
| 1584 | #else | ||
| 1571 | # define _GL_INLINE_HEADER_BEGIN | 1585 | # define _GL_INLINE_HEADER_BEGIN |
| 1572 | # define _GL_INLINE_HEADER_END | 1586 | # define _GL_INLINE_HEADER_END |
| 1573 | #endif | 1587 | #endif |