mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 20:20:06 +02:00
OpenSSL: fix lib versionning.
While the package is at version 1.0.1, it is binary compatible with 1.0.0 and the sonames didn't change. Fix the version of the libraries to reflect this (thanks to korli for the hint!)
This commit is contained in:
@@ -29,8 +29,8 @@ PATCHES="openssl-1.0.1h.patchset"
|
||||
|
||||
PROVIDES="
|
||||
openssl$secondaryArchSuffix = $portVersion compat >= 1.0.1
|
||||
lib:libcrypto$secondaryArchSuffix = $portVersion compat >= 1.0.1
|
||||
lib:libssl$secondaryArchSuffix = $portVersion compat >= 1.0.1
|
||||
lib:libcrypto$secondaryArchSuffix = 1.0.0 compat >= 1.0
|
||||
lib:libssl$secondaryArchSuffix = 1.0.0 compat >= 1.0
|
||||
"
|
||||
if [ -z "$secondaryArchSuffix" ]; then
|
||||
PROVIDES="$PROVIDES
|
||||
@@ -113,8 +113,8 @@ TEST()
|
||||
|
||||
PROVIDES_devel="
|
||||
openssl${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libcrypto${secondaryArchSuffix} = $portVersion compat >= 1.0.1
|
||||
devel:libssl${secondaryArchSuffix} = $portVersion compat >= 1.0.1
|
||||
devel:libcrypto${secondaryArchSuffix} = 1.0.0 compat >= 1.0
|
||||
devel:libssl${secondaryArchSuffix} = 1.0.0 compat >= 1.0
|
||||
"
|
||||
REQUIRES_devel="
|
||||
openssl${secondaryArchSuffix} == $portVersion base
|
||||
|
||||
Reference in New Issue
Block a user