aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2022-07-22 12:11:24 +0930
committerAlan Modra <amodra@gmail.com>2022-07-22 12:38:53 +0930
commit6577f365ebdee7dda71cb996efa29d3714cbccd0 (patch)
treec32ad75f7c51c1c9100a18ce3e7883c2dacd434a /ld
parent4686f81068433540a8dcf1104548389922e2bfef (diff)
downloadfsf-binutils-gdb-6577f365ebdee7dda71cb996efa29d3714cbccd0.zip
fsf-binutils-gdb-6577f365ebdee7dda71cb996efa29d3714cbccd0.tar.gz
fsf-binutils-gdb-6577f365ebdee7dda71cb996efa29d3714cbccd0.tar.bz2
PR17122, OSX 10.9 build failure
sbrk hasn't been used in binutils/ or ld/ for quite some time (so the PR was fixed a while ago). Tidy up configury. PR 17122 binutils/ * configure.ac: Don't check for sbrk. * sysdep.h (sbrk): Don't supply fallback declaration. * config.in: Regenerate. * configure: Regenerate. ld/ * configure.ac: Don't check for sbrk. * config.in: Regenerate. * configure: Regenerate.
Diffstat (limited to 'ld')
-rw-r--r--ld/config.in7
-rwxr-xr-xld/configure12
-rw-r--r--ld/configure.ac4
3 files changed, 3 insertions, 20 deletions
diff --git a/ld/config.in b/ld/config.in
index d4c1fc4..0ccd79d 100644
--- a/ld/config.in
+++ b/ld/config.in
@@ -75,10 +75,6 @@
/* Is the prototype for getopt in <unistd.h> in the expected format? */
#undef HAVE_DECL_GETOPT
-/* Define to 1 if you have the declaration of `sbrk', and to 0 if you don't.
- */
-#undef HAVE_DECL_SBRK
-
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
@@ -127,9 +123,6 @@
/* Define to 1 if you have the `realpath' function. */
#undef HAVE_REALPATH
-/* Define to 1 if you have the `sbrk' function. */
-#undef HAVE_SBRK
-
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
diff --git a/ld/configure b/ld/configure
index fbbcb52..1c2b648 100755
--- a/ld/configure
+++ b/ld/configure
@@ -16700,7 +16700,7 @@ fi
done
-for ac_func in close glob lseek mkstemp open realpath sbrk waitpid
+for ac_func in close glob lseek mkstemp open realpath waitpid
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
@@ -16741,16 +16741,6 @@ fi
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_ENVIRON $ac_have_decl
_ACEOF
-ac_fn_c_check_decl "$LINENO" "sbrk" "ac_cv_have_decl_sbrk" "$ac_includes_default"
-if test "x$ac_cv_have_decl_sbrk" = xyes; then :
- ac_have_decl=1
-else
- ac_have_decl=0
-fi
-
-cat >>confdefs.h <<_ACEOF
-#define HAVE_DECL_SBRK $ac_have_decl
-_ACEOF
diff --git a/ld/configure.ac b/ld/configure.ac
index 4331d6b..eb55904 100644
--- a/ld/configure.ac
+++ b/ld/configure.ac
@@ -366,11 +366,11 @@ AC_SUBST(NATIVE_LIB_DIRS)
AC_CHECK_HEADERS(fcntl.h elf-hints.h limits.h inttypes.h stdint.h \
sys/file.h sys/mman.h sys/param.h sys/stat.h sys/time.h \
sys/types.h unistd.h)
-AC_CHECK_FUNCS(close glob lseek mkstemp open realpath sbrk waitpid)
+AC_CHECK_FUNCS(close glob lseek mkstemp open realpath waitpid)
BFD_BINARY_FOPEN
-AC_CHECK_DECLS([asprintf, environ, sbrk])
+AC_CHECK_DECLS([asprintf, environ])
AC_FUNC_MMAP