diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2002-11-20 15:59:07 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2002-11-20 15:59:07 +0000 |
commit | e6226a2f87a75d3daf21896affc0857a94d5d4ac (patch) | |
tree | 364c58b7975a1024e3f7790e762f2842ef95420c /boehm-gc | |
parent | 54d9d34a9bafd79987e6b7ea3aefb4fd26f539e3 (diff) | |
download | gcc-e6226a2f87a75d3daf21896affc0857a94d5d4ac.zip gcc-e6226a2f87a75d3daf21896affc0857a94d5d4ac.tar.gz gcc-e6226a2f87a75d3daf21896affc0857a94d5d4ac.tar.bz2 |
ltconfig (osf[345]): Append $major to soname_spec.
* ltconfig (osf[345]): Append $major to soname_spec.
Reflect this in library_names_spec.
* ltmain.sh (osf): Prefix $major with . for use as extension.
boehm-gc:
* ltconfig (osf[345]): Append $major to soname_spec.
Reflect this in library_names_spec.
* ltmain.sh (osf): Prefix $major with . for use as extension.
From-SVN: r59306
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 6 | ||||
-rwxr-xr-x | boehm-gc/ltconfig | 4 | ||||
-rw-r--r-- | boehm-gc/ltmain.sh | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index a0d5917..21d304df 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2002-11-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * ltconfig (osf[345]): Append $major to soname_spec. + Reflect this in library_names_spec. + * ltmain.sh (osf): Prefix $major with . for use as extension. + 2002-10-02 Andreas Jaeger <aj@suse.de> * include/private/gcconfig.h (HBLKSIZE): Define for x86-64. diff --git a/boehm-gc/ltconfig b/boehm-gc/ltconfig index a01334f..b8eef56 100755 --- a/boehm-gc/ltconfig +++ b/boehm-gc/ltconfig @@ -2017,8 +2017,8 @@ os2*) osf3* | osf4* | osf5*) version_type=osf need_version=no - soname_spec='${libname}${release}.so' - library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so' + soname_spec='${libname}${release}.so$major' + library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' shlibpath_var=LD_LIBRARY_PATH # this will be overridden with pass_all, but let us keep it just in case deplibs_check_method='file_magic COFF format alpha shared library' diff --git a/boehm-gc/ltmain.sh b/boehm-gc/ltmain.sh index 50515ad..72699be 100644 --- a/boehm-gc/ltmain.sh +++ b/boehm-gc/ltmain.sh @@ -1715,7 +1715,7 @@ compiler." ;; osf) - major=`expr $current - $age` + major=.`expr $current - $age` versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" |