diff options
author | Nick Clifton <nickc@redhat.com> | 2004-06-18 16:13:13 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2004-06-18 16:13:13 +0000 |
commit | f234d5fec15945746925a6075d56cb3f50a5eeea (patch) | |
tree | eccb856c05ff1a7684f91bc9ef8deb3257557047 /ld/configure.in | |
parent | 2f305df11e92cf8e6c21194f4cccf37e0cf7d571 (diff) | |
download | binutils-gdb-f234d5fec15945746925a6075d56cb3f50a5eeea.tar.gz |
* configure.in: Set EXTRA_SHLIB_EXTENSION to .a for LynxOS.
* configure: Regenerate.
Diffstat (limited to 'ld/configure.in')
-rw-r--r-- | ld/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ld/configure.in b/ld/configure.in index 4358cbe0bb2..87a9bba74c7 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -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.]) |