mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead of gcc_AC_FUNC_MMAP_BLACKLIST.
fixincludes/ * configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead of gcc_AC_FUNC_MMAP_BLACKLIST. * Makefile.in (ACLOCAL_AMFLAGS): Don't include ../gcc. * aclocal.m4: Regenerate. * configure: Regenerate. From-SVN: r187984
This commit is contained in:
parent
3f417959fd
commit
678abdd924
|
@ -1,3 +1,11 @@
|
||||||
|
2012-05-29 Thomas Schwinge <thomas@codesourcery.com>
|
||||||
|
|
||||||
|
* configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead of
|
||||||
|
gcc_AC_FUNC_MMAP_BLACKLIST.
|
||||||
|
* Makefile.in (ACLOCAL_AMFLAGS): Don't include ../gcc.
|
||||||
|
* aclocal.m4: Regenerate.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2012-04-24 Tristan Gingold <gingold@adacore.com>
|
2012-04-24 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* fixincl.c (fix_with_system): Add missing specifier.
|
* fixincl.c (fix_with_system): Add missing specifier.
|
||||||
|
|
|
@ -66,7 +66,7 @@ mkinstalldirs=$(SHELL) $(srcdir)/../mkinstalldirs
|
||||||
AUTOCONF = autoconf
|
AUTOCONF = autoconf
|
||||||
AUTOHEADER = autoheader
|
AUTOHEADER = autoheader
|
||||||
ACLOCAL = aclocal
|
ACLOCAL = aclocal
|
||||||
ACLOCAL_AMFLAGS = -I ../gcc -I .. -I ../config
|
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||||
|
|
||||||
default : all
|
default : all
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,6 @@
|
||||||
# PARTICULAR PURPOSE.
|
# PARTICULAR PURPOSE.
|
||||||
|
|
||||||
m4_include([../config/acx.m4])
|
m4_include([../config/acx.m4])
|
||||||
|
m4_include([../config/mmap.m4])
|
||||||
m4_include([../config/override.m4])
|
m4_include([../config/override.m4])
|
||||||
m4_include([../config/warnings.m4])
|
m4_include([../config/warnings.m4])
|
||||||
m4_include([../gcc/acinclude.m4])
|
|
||||||
|
|
|
@ -5222,7 +5222,7 @@ else
|
||||||
# read() to the same fd. The only system known to have a problem here
|
# read() to the same fd. The only system known to have a problem here
|
||||||
# is VMS, where text files have record structure.
|
# is VMS, where text files have record structure.
|
||||||
case "$host_os" in
|
case "$host_os" in
|
||||||
vms* | ultrix*)
|
*vms* | ultrix*)
|
||||||
gcc_cv_func_mmap_file=no ;;
|
gcc_cv_func_mmap_file=no ;;
|
||||||
*)
|
*)
|
||||||
gcc_cv_func_mmap_file=yes;;
|
gcc_cv_func_mmap_file=yes;;
|
||||||
|
@ -5246,7 +5246,7 @@ else
|
||||||
# Systems known to be in this category are Windows (all variants),
|
# Systems known to be in this category are Windows (all variants),
|
||||||
# VMS, and Darwin.
|
# VMS, and Darwin.
|
||||||
case "$host_os" in
|
case "$host_os" in
|
||||||
vms* | cygwin* | pe | mingw* | darwin* | ultrix* | hpux10* | hpux11.00)
|
*vms* | cygwin* | pe | mingw* | darwin* | ultrix* | hpux10* | hpux11.00)
|
||||||
gcc_cv_func_mmap_dev_zero=no ;;
|
gcc_cv_func_mmap_dev_zero=no ;;
|
||||||
*)
|
*)
|
||||||
gcc_cv_func_mmap_dev_zero=yes;;
|
gcc_cv_func_mmap_dev_zero=yes;;
|
||||||
|
@ -5303,7 +5303,7 @@ else
|
||||||
# above for use of /dev/zero.
|
# above for use of /dev/zero.
|
||||||
# Systems known to be in this category are Windows, VMS, and SCO Unix.
|
# Systems known to be in this category are Windows, VMS, and SCO Unix.
|
||||||
case "$host_os" in
|
case "$host_os" in
|
||||||
vms* | cygwin* | pe | mingw* | sco* | udk* )
|
*vms* | cygwin* | pe | mingw* | sco* | udk* )
|
||||||
gcc_cv_func_mmap_anon=no ;;
|
gcc_cv_func_mmap_anon=no ;;
|
||||||
*)
|
*)
|
||||||
gcc_cv_func_mmap_anon=yes;;
|
gcc_cv_func_mmap_anon=yes;;
|
||||||
|
|
|
@ -96,7 +96,7 @@ AC_CHECK_DECLS(m4_split(m4_normalize(fixincludes_UNLOCKED_FUNCS)))
|
||||||
AC_C_CONST
|
AC_C_CONST
|
||||||
|
|
||||||
# Checks for library functions.
|
# Checks for library functions.
|
||||||
gcc_AC_FUNC_MMAP_BLACKLIST
|
GCC_AC_FUNC_MMAP_BLACKLIST
|
||||||
|
|
||||||
AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
|
AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
|
||||||
AC_ARG_ENABLE(maintainer-mode,
|
AC_ARG_ENABLE(maintainer-mode,
|
||||||
|
|
Loading…
Reference in New Issue