diff options
| author | Glenn Morris | 2013-03-02 06:17:34 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-03-02 06:17:34 -0500 |
| commit | c175d44072c6a54eb921a3c55fdc2bf2f7816ddd (patch) | |
| tree | 672ccb2f6cdaad647358dd0d0dc1a5462e8d577a | |
| parent | 18f2ac090d74eb0e91d5b3b8a6db01063264f254 (diff) | |
| download | emacs-c175d44072c6a54eb921a3c55fdc2bf2f7816ddd.tar.gz emacs-c175d44072c6a54eb921a3c55fdc2bf2f7816ddd.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/config.in | 8 | ||||
| -rwxr-xr-x | autogen/configure | 13 |
2 files changed, 20 insertions, 1 deletions
diff --git a/autogen/config.in b/autogen/config.in index 10cc3c68196..12bfc70b090 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -1130,6 +1130,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1130 | /* Define to 1 if you have the `_ftime' function. */ | 1130 | /* Define to 1 if you have the `_ftime' function. */ |
| 1131 | #undef HAVE__FTIME | 1131 | #undef HAVE__FTIME |
| 1132 | 1132 | ||
| 1133 | /* Define to 1 if you have the `_putenv' function. */ | ||
| 1134 | #undef HAVE__PUTENV | ||
| 1135 | |||
| 1133 | /* Define to 1 if _setjmp and _longjmp work. */ | 1136 | /* Define to 1 if _setjmp and _longjmp work. */ |
| 1134 | #undef HAVE__SETJMP | 1137 | #undef HAVE__SETJMP |
| 1135 | 1138 | ||
| @@ -1570,13 +1573,16 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1570 | _GL_INLINE_HEADER_END contains useful stuff to put | 1573 | _GL_INLINE_HEADER_END contains useful stuff to put |
| 1571 | in the same include file, after uses of _GL_INLINE. | 1574 | in the same include file, after uses of _GL_INLINE. |
| 1572 | 1575 | ||
| 1576 | Suppress extern inline with HP-UX cc, as it appears to be broken; see | ||
| 1577 | <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>. | ||
| 1578 | |||
| 1573 | Suppress the use of extern inline on Apple's platforms, | 1579 | Suppress the use of extern inline on Apple's platforms, |
| 1574 | as Libc-825.25 (2012-09-19) is incompatible with it; see | 1580 | as Libc-825.25 (2012-09-19) is incompatible with it; see |
| 1575 | <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>. | 1581 | <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html>. |
| 1576 | Perhaps Apple will fix this some day. */ | 1582 | Perhaps Apple will fix this some day. */ |
| 1577 | #if ((__GNUC__ \ | 1583 | #if ((__GNUC__ \ |
| 1578 | ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ | 1584 | ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ |
| 1579 | : 199901L <= __STDC_VERSION__) \ | 1585 | : 199901L <= __STDC_VERSION__ && !defined __HP_cc) \ |
| 1580 | && !defined __APPLE__) | 1586 | && !defined __APPLE__) |
| 1581 | # define _GL_INLINE inline | 1587 | # define _GL_INLINE inline |
| 1582 | # define _GL_EXTERN_INLINE extern inline | 1588 | # define _GL_EXTERN_INLINE extern inline |
diff --git a/autogen/configure b/autogen/configure index b8ced336979..a1844067f9d 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -23273,6 +23273,19 @@ $as_echo "$gl_cv_func_svid_putenv" >&6; } | |||
| 23273 | 23273 | ||
| 23274 | gl_LIBOBJS="$gl_LIBOBJS putenv.$ac_objext" | 23274 | gl_LIBOBJS="$gl_LIBOBJS putenv.$ac_objext" |
| 23275 | 23275 | ||
| 23276 | |||
| 23277 | for ac_func in _putenv | ||
| 23278 | do : | ||
| 23279 | ac_fn_c_check_func "$LINENO" "_putenv" "ac_cv_func__putenv" | ||
| 23280 | if test "x$ac_cv_func__putenv" = x""yes; then : | ||
| 23281 | cat >>confdefs.h <<_ACEOF | ||
| 23282 | #define HAVE__PUTENV 1 | ||
| 23283 | _ACEOF | ||
| 23284 | |||
| 23285 | fi | ||
| 23286 | done | ||
| 23287 | |||
| 23288 | |||
| 23276 | fi | 23289 | fi |
| 23277 | 23290 | ||
| 23278 | 23291 | ||