* configure.in: Set EXTRA_SHLIB_EXTENSION to .a for LynxOS.

* configure: Regenerate.
This commit is contained in:
Nick Clifton 2004-06-18 16:13:13 +00:00
parent 2f305df11e
commit f234d5fec1
3 changed files with 239 additions and 222 deletions

View File

@ -1,3 +1,8 @@
2004-06-18 Adam Nemet <anemet@lnxw.com>
* configure.in: Set EXTRA_SHLIB_EXTENSION to .a for LynxOS.
* configure: Regenerate.
2004-06-15 Jakub Jelinek <jakub@redhat.com>
* scripttempl/elf.sc: Readd KEEP and .gcc_except_table.* to

451
ld/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -256,6 +256,11 @@ case "$target_vendor" in
hp) EXTRA_SHLIB_EXTENSION=".sl" ;;
*) EXTRA_SHLIB_EXTENSION= ;;
esac
case "$target_os" in
lynxos) EXTRA_SHLIB_EXTENSION=".a" ;;
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.])