* m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [openbsd3.3]: Set

need_version to yes or no depending on the os release.
Reported by Dalibor Topic <robilad@kaffe.org>
This commit is contained in:
Gary V. Vaughan 2004-09-24 10:15:16 +00:00
parent cd11b6995f
commit 4d35a15aee
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-09-24 Gary V. Vaughan <gary@gnu.org>
* m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [openbsd3.3]: Set
need_version to yes or no depending on the os release.
Reported by Dalibor Topic <robilad@kaffe.org>
2004-09-23 Gary V. Vaughan <gary@gnu.org>
* tests/cdemo-conf.test, tests/cdemo-exec.test,

6
m4/libtool.m4 vendored
View File

@ -2015,7 +2015,11 @@ newsos6)
openbsd*)
version_type=sunos
need_lib_prefix=no
need_version=no
# Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
case $host_os in
openbsd3.3 | openbsd3.3.*) need_version=yes ;;
*) need_version=no ;;
esac
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
shlibpath_var=LD_LIBRARY_PATH