diff options
author | Tristan Gingold <gingold@adacore.com> | 2009-07-02 08:24:01 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2009-07-02 08:24:01 +0000 |
commit | 85bd1942b5a87c71d84faa442a6385236a5c9355 (patch) | |
tree | 393ef25ad36ffc364e86dc44c3f889d499c868c4 /configure | |
parent | e57f8c655cb90b3b73e5906ada99ab72c83f95af (diff) | |
download | gdb-85bd1942b5a87c71d84faa442a6385236a5c9355.zip gdb-85bd1942b5a87c71d84faa442a6385236a5c9355.tar.gz gdb-85bd1942b5a87c71d84faa442a6385236a5c9355.tar.bz2 |
2009-07-02 Tristan Gingold <gingold@adacore.com>
* configure.ac: Do not exclude gas for i386-*-darwin.
Add a case for x86_64-*-darwin.
* configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,7 +2,7 @@ # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59. # -# Copyright (C) 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## @@ -2215,7 +2215,11 @@ case "${target}" in noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; - i[3456789]86-*-darwin* | x86_64-*-darwin9*) + i[3456789]86-*-darwin*) + noconfigdirs="$noconfigdirs ld gprof" + noconfigdirs="$noconfigdirs sim target-rda" + ;; + x86_64-*-darwin9*) noconfigdirs="$noconfigdirs ld gas gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; |