ltmain.in: update QNX version_type handling

QNX handles ELF SONAME versioning just like most other targets.
This commit is contained in:
Stephen Webb 2024-03-22 12:49:53 -04:00 committed by Ileana Dumitrescu
parent 98ed9b7b51
commit a956f5ce7d
No known key found for this signature in database
GPG Key ID: 6570EA01146F7354

View File

@ -6955,13 +6955,13 @@ func_mode_link ()
#
case $version_type in
# correct linux to gnu/linux during the next big refactor
darwin|freebsd-elf|linux|midnightbsd-elf|osf|windows|none)
darwin|freebsd-elf|linux|midnightbsd-elf|osf|qnx|windows|none)
func_arith $number_major + $number_minor
current=$func_arith_result
age=$number_minor
revision=$number_revision
;;
freebsd-aout|qnx|sco|sunos)
freebsd-aout|sco|sunos)
current=$number_major
revision=$number_minor
age=0
@ -7108,8 +7108,9 @@ func_mode_link ()
;;
qnx)
major=.$current
versuffix=.$current
func_arith $current - $age
major=.$func_arith_result
versuffix=$major.$age.$revision
;;
sco)