diff options
Diffstat (limited to 'libstdc++-v3/configure')
-rwxr-xr-x | libstdc++-v3/configure | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 17d59229ff0..549acb43657 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -104367,7 +104367,13 @@ fi; *) have_unwind_getipinfo=yes ;; esac else - have_unwind_getipinfo=yes + # Darwin before version 9 does not have _Unwind_GetIPInfo. + + case ${target} in + *-*-darwin[3-8]|*-*-darwin[3-8].*) have_unwind_getipinfo=no ;; + *) have_unwind_getipinfo=yes ;; + esac + fi if test x$have_unwind_getipinfo = xyes; then |