diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2008-11-14 10:20:54 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2008-11-14 10:20:54 +0100 |
commit | 22f96a0fe278fa8d3646024eb6899b9d16d10a2a (patch) | |
tree | 0a70af529b68a83d6a184b39ea217570dc894b2d | |
parent | 04487a2f0b483ff10c3511f2efb6d8436cca1d0a (diff) | |
download | gcc-22f96a0fe278fa8d3646024eb6899b9d16d10a2a.zip gcc-22f96a0fe278fa8d3646024eb6899b9d16d10a2a.tar.gz gcc-22f96a0fe278fa8d3646024eb6899b9d16d10a2a.tar.bz2 |
configure.ac (gcc_cv_libc_provides_ssp): Also consider GNU/kFreeBSD, GNU/kNetBSD systems in the `*-*-linux*' case.
2008-11-14 Thomas Schwinge <tschwinge@gnu.org>
* configure.ac (gcc_cv_libc_provides_ssp): Also consider GNU/kFreeBSD,
GNU/kNetBSD systems in the `*-*-linux*' case.
* configure: Regenerate.
From-SVN: r141850
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.ac | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 55afd9c..63de7b1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-11-14 Thomas Schwinge <tschwinge@gnu.org> + + * configure.ac (gcc_cv_libc_provides_ssp): Also consider GNU/kFreeBSD, + GNU/kNetBSD systems in the `*-*-linux*' case. + * configure: Regenerate. + 2008-11-14 Jakub Jelinek <jakub@redhat.com> PR middle-end/36125 diff --git a/gcc/configure b/gcc/configure index f40c08c..d384729 100755 --- a/gcc/configure +++ b/gcc/configure @@ -24074,7 +24074,7 @@ if test "${gcc_cv_libc_provides_ssp+set}" = set; then else gcc_cv_libc_provides_ssp=no case "$target" in - *-*-linux*) + *-*-linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu) if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x; then if test "x$with_sysroot" = x; then glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-include" diff --git a/gcc/configure.ac b/gcc/configure.ac index 3e53b02..d420d8c 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -3474,7 +3474,7 @@ AC_CACHE_CHECK(__stack_chk_fail in target C library, gcc_cv_libc_provides_ssp, [gcc_cv_libc_provides_ssp=no case "$target" in - *-*-linux*) + *-*-linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu) if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x; then if test "x$with_sysroot" = x; then glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-include" |