diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 1999-11-26 16:19:30 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 1999-11-26 16:19:30 +0000 |
commit | e4dabd0ef53d766ea2b01478cfabd989b5b77995 (patch) | |
tree | a3b836e9198404e194240e1f104798f91b2d29ce /ld/configure.in | |
parent | 20cfcaae7be9de914b81b35ff98317e33695a60c (diff) | |
download | gdb-e4dabd0ef53d766ea2b01478cfabd989b5b77995.zip gdb-e4dabd0ef53d766ea2b01478cfabd989b5b77995.tar.gz gdb-e4dabd0ef53d766ea2b01478cfabd989b5b77995.tar.bz2 |
* configure.in: Put AC_MSG_CHECKING/AC_MSG_RESULT around check for
STRINGIFY. Use yes/no instead of true/false as value for cache
variable.
* configure: Regenerate.
Diffstat (limited to 'ld/configure.in')
-rw-r--r-- | ld/configure.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ld/configure.in b/ld/configure.in index c3d5e97..32fc5f6 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -74,11 +74,13 @@ BFD_NEED_DECLARATION(environ) # broken Microsoft MSVC compiler, which limits the length of string # constants, while still supporting pre-ANSI compilers which do not # support string concatenation. +AC_MSG_CHECKING([whether ANSI C string concatenation works]) AC_CACHE_VAL(ld_cv_string_concatenation, [AC_TRY_COMPILE(,[char *a = "a" "a";], - [ld_cv_string_concatenation=true], - [ld_cv_string_concatenation=false])]) -if test "$ld_cv_string_concatenation" = "true"; then + [ld_cv_string_concatenation=yes], + [ld_cv_string_concatenation=no])]) +AC_MSG_RESULT($ld_cv_string_concatenation) +if test "$ld_cv_string_concatenation" = "yes"; then STRINGIFY=astring.sed else STRINGIFY=ostring.sed |