Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
02bd7257
Commit
02bd7257
authored
Jul 10, 2012
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Auto-commit of generated files.
parent
19faa8e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
3 deletions
+48
-3
autogen/config.in
autogen/config.in
+12
-1
autogen/configure
autogen/configure
+36
-2
No files found.
autogen/config.in
View file @
02bd7257
...
...
@@ -66,6 +66,12 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
/* Define to 1 if using 'alloca.c'. */
#undef C_ALLOCA
/* Extra bits to be or'd in with any pointers stored in a Lisp_Object. */
#undef DATA_SEG_BITS
/* Address of the start of the data segment. */
#undef DATA_START
/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
#undef DGUX
...
...
@@ -1089,10 +1095,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Number of chars of output in the buffer of a stdio stream. */
#undef PENDING_OUTPUT_COUNT
/* Define to empty to suppress deprecation warnings when building with
--enable-gcc-warnings and with libpng versions before 1.5, which lack
png_longjmp. */
#undef PNG_DEP
RECATED
#undef PNG_DEP
STRUCT
/* Define to 1 if pthread_sigmask(), when it fails, returns -1 and sets errno.
*/
...
...
@@ -1501,6 +1510,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))
#endif
#define ATTRIBUTE_CONST _GL_ATTRIBUTE_CONST
/* Some versions of GNU/Linux define noinline in their headers. */
#ifdef noinline
#undef noinline
...
...
autogen/configure
View file @
02bd7257
...
...
@@ -7161,7 +7161,6 @@ fi
# The following lines should be removable at some point.
nw="$nw -Wstack-protector"
nw="$nw -Wstrict-overflow"
nw="$nw -Wsuggest-attribute=const"
nw="$nw -Wsuggest-attribute=pure"
...
...
@@ -20266,7 +20265,7 @@ if test "x$ac_cv_have_decl_png_longjmp" = x""yes; then :
else
$as_echo "#define PNG_DEP
RECATED
/**/" >>confdefs.h
$as_echo "#define PNG_DEP
STRUCT
/**/" >>confdefs.h
fi
...
...
@@ -22661,6 +22660,41 @@ $as_echo "#define HAVE_PROCFS 1" >>confdefs.h
;;
esac
case $opsys in
cygwin | darwin | freebsd | netbsd | openbsd )
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)" >>confdefs.h
;;
unixware)
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__ptr - (FILE)->__base)" >>confdefs.h
;;
gnu)
$as_echo "#define DATA_START ({ extern int data_start; (char *) &data_start; })" >>confdefs.h
;;
hpux*)
$as_echo "#define DATA_START 0x40000000" >>confdefs.h
$as_echo "#define DATA_SEG_BITS 0x40000000" >>confdefs.h
;;
irix6-5)
$as_echo "#define DATA_START 0x10000000" >>confdefs.h
$as_echo "#define DATA_SEG_BITS 0x10000000" >>confdefs.h
;;
esac
case $opsys in
gnu-kfreebsd) opsysfile="s/gnu-linux.h" ;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment