X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=ld%2Fconfigure.in;h=32fc5f65ad16a91b847585264d08e65ee46b6a8f;hb=a74801baf8df63929f4ea34ae35a1b72f38b07e9;hp=a0fef19f7905d9098ff078690e53cc0121ec3c13;hpb=a8100d5bb4759ac2d306ff0cd03a8b0f880a7b02;p=deliverable%2Fbinutils-gdb.git diff --git a/ld/configure.in b/ld/configure.in index a0fef19f79..32fc5f65ad 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 @@ -186,5 +188,15 @@ else fi AC_SUBST(TESTBFDLIB) +target_vendor=${target_vendor=$host_vendor} +case "$target_vendor" in + hp) EXTRA_SHLIB_EXTENSION=".sl" ;; + *) EXTRA_SHLIB_EXTENSION= ;; +esac +if test x${EXTRA_SHLIB_EXTENSION} != x ; then + AC_DEFINE_UNQUOTED(EXTRA_SHLIB_EXTENSION, "$EXTRA_SHLIB_EXTENSION", + [Additional extension a shared object might have.]) +fi + AC_OUTPUT(Makefile po/Makefile.in:po/Make-in, [sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])