Skip to content
Permalink
Browse files

qt5*: minor tweak for consistency among Qt 5 ports

This change make no difference for qt55 and qt56 since neither builds
for ${os.major} < 11.
However, this change allows consistency with qt53.
  • Loading branch information
MarcusCalhoun-Lopez committed Apr 21, 2019
1 parent 9719936 commit d9dd27439cf751025b9128cf0b5aff313aae2309
Showing with 2 additions and 2 deletions.
  1. +1 −1 aqua/qt55/Portfile
  2. +1 −1 aqua/qt56/Portfile
@@ -696,7 +696,7 @@ foreach {module module_info} [array get modules] {
# see https://developer.apple.com/reference/security/sslprotocol/ktlsprotocol11
# see https://developer.apple.com/reference/security/sslprotocol?language=objc
pre-fetch {
if { ${os.major} == 11 && ![variant_isset openssl] } {
if { ${os.major} < 12 && ![variant_isset openssl] } {
ui_error "using Secure Transport requires OS X 10.8 or later"
ui_error "please use openssl variant"
return -code error "incompatible variant choice"
@@ -737,7 +737,7 @@ foreach {module module_info} [array get modules] {
# see https://developer.apple.com/reference/security/sslprotocol/ktlsprotocol11
# see https://developer.apple.com/reference/security/sslprotocol?language=objc
pre-fetch {
if { ${os.major} == 11 && ![variant_isset openssl] } {
if { ${os.major} < 12 && ![variant_isset openssl] } {
ui_error "using Secure Transport requires OS X 10.8 or later"
ui_error "please use openssl variant"
return -code error "incompatible variant choice"

0 comments on commit d9dd274

Please sign in to comment.
You can’t perform that action at this time.