diff options
| author | Glenn Morris | 2013-04-30 06:17:35 -0400 |
|---|---|---|
| committer | Glenn Morris | 2013-04-30 06:17:35 -0400 |
| commit | 7b427ad11f3d646f89e67967acdf27a299cb1e1d (patch) | |
| tree | 67495a767bd7c511c706f1279cc4476b1f6fcbb4 | |
| parent | 38d8527bab7f84b94d2e0a759e25a64f33838257 (diff) | |
| download | emacs-7b427ad11f3d646f89e67967acdf27a299cb1e1d.tar.gz emacs-7b427ad11f3d646f89e67967acdf27a299cb1e1d.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/config.in | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/autogen/config.in b/autogen/config.in index 25f060b9bb9..f1b3abd94dd 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -1579,13 +1579,21 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1579 | Suppress extern inline with HP-UX cc, as it appears to be broken; see | 1579 | Suppress extern inline with HP-UX cc, as it appears to be broken; see |
| 1580 | <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>. | 1580 | <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>. |
| 1581 | 1581 | ||
| 1582 | Suppress the use of extern inline on Apple's platforms, | 1582 | Suppress extern inline with Sun C in standards-conformance mode, as it |
| 1583 | as Libc-825.25 (2012-09-19) is incompatible with it; see | 1583 | mishandles inline functions that call each other. E.g., for 'inline void f |
| 1584 | (void) { } inline void g (void) { f (); }', c99 incorrectly complains | ||
| 1585 | 'reference to static identifier "f" in extern inline function'. | ||
| 1586 | This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. | ||
| 1587 | |||
| 1588 | Suppress the use of extern inline on Apple's platforms, as Libc at least | ||
| 1589 | through Libc-825.26 (2013-04-09) is incompatible with it; see, e.g., | ||
| 1584 | <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>. | 1590 | <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>. |
| 1585 | Perhaps Apple will fix this some day. */ | 1591 | Perhaps Apple will fix this some day. */ |
| 1586 | #if ((__GNUC__ \ | 1592 | #if ((__GNUC__ \ |
| 1587 | ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ | 1593 | ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ |
| 1588 | : 199901L <= __STDC_VERSION__ && !defined __HP_cc) \ | 1594 | : (199901L <= __STDC_VERSION__ \ |
| 1595 | && !defined __HP_cc \ | ||
| 1596 | && !(defined __SUNPRO_C && __STDC__))) \ | ||
| 1589 | && !defined __APPLE__) | 1597 | && !defined __APPLE__) |
| 1590 | # define _GL_INLINE inline | 1598 | # define _GL_INLINE inline |
| 1591 | # define _GL_EXTERN_INLINE extern inline | 1599 | # define _GL_EXTERN_INLINE extern inline |