diff options
author | Ivan Maidanski <ivmai@mail.ru> | 2019-03-24 12:03:01 +0300 |
---|---|---|
committer | Ivan Maidanski <ivmai@mail.ru> | 2019-03-26 21:34:46 +0300 |
commit | 28a121e5b00177aa19410b9981f32d5e7605c78f (patch) | |
tree | 03caa2debbd7257861ee74093aa43ee61309bcd1 | |
parent | f871c5420e034e0cd333d9f1ee0584d2772ca664 (diff) | |
download | bdwgc-28a121e5b00177aa19410b9981f32d5e7605c78f.tar.gz |
Fix configure message about 'AIX gcc optimization fix'
* configure.ac [$host=*aix*]: Update comment and AC_MSG_CHECKING
message to match the checked condition.
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 8036ae4c..985e75ab 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # Copyright (c) 1999-2001 by Red Hat, Inc. All rights reserved. # Copyright (c) 2005-2009 Hewlett-Packard Development Company, L.P. -# Copyright (c) 2009-2018 Ivan Maidanski +# Copyright (c) 2009-2019 Ivan Maidanski # # THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED # OR IMPLIED. ANY USE IS AT YOUR OWN RISK. @@ -618,10 +618,9 @@ if false; then AC_EXEEXT fi -dnl As of 4.13a2, the collector will not properly work on Solaris when +dnl The collector might not properly work on IBM AIX when dnl built with gcc and -O. So we remove -O in the appropriate case. -dnl Not needed anymore on Solaris. -AC_MSG_CHECKING(whether Solaris gcc optimization fix is necessary) +AC_MSG_CHECKING(whether AIX gcc optimization fix is necessary) case "$host" in *aix*) if test "$GCC" = yes; then |