* configure.in: Set EXTRA_SHLIB_EXTENSION to .a for LynxOS.
* configure: Regenerate.
This commit is contained in:
parent
2f305df11e
commit
f234d5fec1
3 changed files with 239 additions and 222 deletions
|
@ -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
451
ld/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -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.])
|
||||
|
|
Loading…
Reference in a new issue