aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-07-10 06:17:29 -0400
committerGlenn Morris2012-07-10 06:17:29 -0400
commit02bd72573bef39cf345c0b0a945b6bb739dda67d (patch)
treee63dc9a22a4af7e80a06a3288de24009626dd04c
parent19faa8e8535ff2c23aa122025145e2d159c0aa77 (diff)
downloademacs-02bd72573bef39cf345c0b0a945b6bb739dda67d.tar.gz
emacs-02bd72573bef39cf345c0b0a945b6bb739dda67d.zip
Auto-commit of generated files.
-rw-r--r--autogen/config.in13
-rwxr-xr-xautogen/configure38
2 files changed, 48 insertions, 3 deletions
diff --git a/autogen/config.in b/autogen/config.in
index bb9c2d5339e..99c67c05d95 100644
--- a/autogen/config.in
+++ b/autogen/config.in
@@ -66,6 +66,12 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
66/* Define to 1 if using 'alloca.c'. */ 66/* Define to 1 if using 'alloca.c'. */
67#undef C_ALLOCA 67#undef C_ALLOCA
68 68
69/* Extra bits to be or'd in with any pointers stored in a Lisp_Object. */
70#undef DATA_SEG_BITS
71
72/* Address of the start of the data segment. */
73#undef DATA_START
74
69/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */ 75/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
70#undef DGUX 76#undef DGUX
71 77
@@ -1089,10 +1095,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1089/* Define to the version of this package. */ 1095/* Define to the version of this package. */
1090#undef PACKAGE_VERSION 1096#undef PACKAGE_VERSION
1091 1097
1098/* Number of chars of output in the buffer of a stdio stream. */
1099#undef PENDING_OUTPUT_COUNT
1100
1092/* Define to empty to suppress deprecation warnings when building with 1101/* Define to empty to suppress deprecation warnings when building with
1093 --enable-gcc-warnings and with libpng versions before 1.5, which lack 1102 --enable-gcc-warnings and with libpng versions before 1.5, which lack
1094 png_longjmp. */ 1103 png_longjmp. */
1095#undef PNG_DEPRECATED 1104#undef PNG_DEPSTRUCT
1096 1105
1097/* Define to 1 if pthread_sigmask(), when it fails, returns -1 and sets errno. 1106/* Define to 1 if pthread_sigmask(), when it fails, returns -1 and sets errno.
1098 */ 1107 */
@@ -1501,6 +1510,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1501 ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument)) 1510 ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))
1502#endif 1511#endif
1503 1512
1513#define ATTRIBUTE_CONST _GL_ATTRIBUTE_CONST
1514
1504/* Some versions of GNU/Linux define noinline in their headers. */ 1515/* Some versions of GNU/Linux define noinline in their headers. */
1505#ifdef noinline 1516#ifdef noinline
1506#undef noinline 1517#undef noinline
diff --git a/autogen/configure b/autogen/configure
index 7dc2f8cee48..875ef806318 100755
--- a/autogen/configure
+++ b/autogen/configure
@@ -7161,7 +7161,6 @@ fi
7161 # The following lines should be removable at some point. 7161 # The following lines should be removable at some point.
7162 nw="$nw -Wstack-protector" 7162 nw="$nw -Wstack-protector"
7163 nw="$nw -Wstrict-overflow" 7163 nw="$nw -Wstrict-overflow"
7164 nw="$nw -Wsuggest-attribute=const"
7165 nw="$nw -Wsuggest-attribute=pure" 7164 nw="$nw -Wsuggest-attribute=pure"
7166 7165
7167 7166
@@ -20266,7 +20265,7 @@ if test "x$ac_cv_have_decl_png_longjmp" = x""yes; then :
20266 20265
20267else 20266else
20268 20267
20269$as_echo "#define PNG_DEPRECATED /**/" >>confdefs.h 20268$as_echo "#define PNG_DEPSTRUCT /**/" >>confdefs.h
20270 20269
20271fi 20270fi
20272 20271
@@ -22661,6 +22660,41 @@ $as_echo "#define HAVE_PROCFS 1" >>confdefs.h
22661 ;; 22660 ;;
22662esac 22661esac
22663 22662
22663
22664
22665
22666
22667
22668case $opsys in
22669 cygwin | darwin | freebsd | netbsd | openbsd )
22670 $as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)" >>confdefs.h
22671
22672 ;;
22673
22674 unixware)
22675 $as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__ptr - (FILE)->__base)" >>confdefs.h
22676
22677 ;;
22678
22679 gnu)
22680 $as_echo "#define DATA_START ({ extern int data_start; (char *) &data_start; })" >>confdefs.h
22681
22682 ;;
22683
22684 hpux*)
22685 $as_echo "#define DATA_START 0x40000000" >>confdefs.h
22686
22687 $as_echo "#define DATA_SEG_BITS 0x40000000" >>confdefs.h
22688
22689 ;;
22690 irix6-5)
22691 $as_echo "#define DATA_START 0x10000000" >>confdefs.h
22692
22693 $as_echo "#define DATA_SEG_BITS 0x10000000" >>confdefs.h
22694
22695 ;;
22696esac
22697
22664case $opsys in 22698case $opsys in
22665 gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;; 22699 gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;;
22666 22700