re PR ada/42554 (Can't build GNAT tools)

PR ada/42554
	* configure.ac: Only pass -c to ranlib for darwin9 and earlier.
	* configure: Regenerate.

From-SVN: r157563
This commit is contained in:
Jack Howarth 2010-03-19 10:19:52 +00:00 committed by Mike Stump
parent 3e999e7b28
commit 0aeb3cc6c9
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
PR ada/42554
* configure.ac: Only pass -c to ranlib for darwin9 and earlier.
* configure: Regenerate.
2010-03-18 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* MAINTAINERS: Update my email address.

4
configure vendored
View File

@ -7292,8 +7292,8 @@ case "${target}" in
extra_arflags_for_target=" -X32_64"
extra_nmflags_for_target=" -B -X32_64"
;;
*-*-darwin*)
# ranlib from Darwin requires the -c flag to look at common symbols.
*-*-darwin[3-9]*)
# ranlib before Darwin10 requires the -c flag to look at common symbols.
extra_ranlibflags_for_target=" -c"
;;
mips*-*-pe | sh*-*-pe | *arm-wince-pe)

View File

@ -2405,8 +2405,8 @@ case "${target}" in
extra_arflags_for_target=" -X32_64"
extra_nmflags_for_target=" -B -X32_64"
;;
*-*-darwin*)
# ranlib from Darwin requires the -c flag to look at common symbols.
*-*-darwin[[3-9]]*)
# ranlib before Darwin10 requires the -c flag to look at common symbols.
extra_ranlibflags_for_target=" -c"
;;
mips*-*-pe | sh*-*-pe | *arm-wince-pe)