Changeset View
Changeset View
Standalone View
Standalone View
Mk/bsd.default-versions.mk
| Show First 20 Lines • Show All 150 Lines • ▼ Show 20 Lines | |||||
| # Possible values: 3.2, 3.3, 3.4, 4.0 | # Possible values: 3.2, 3.3, 3.4, 4.0 | ||||
| RUBY_DEFAULT?= 3.3 | RUBY_DEFAULT?= 3.3 | ||||
| # Possible values: rust, rust-nightly | # Possible values: rust, rust-nightly | ||||
| RUST_DEFAULT?= rust | RUST_DEFAULT?= rust | ||||
| # Possible values: 4.16, 4.19, 4.20, 4.22, 4.23 | # Possible values: 4.16, 4.19, 4.20, 4.22, 4.23 | ||||
| SAMBA_DEFAULT?= 4.16 | SAMBA_DEFAULT?= 4.16 | ||||
| # When updating this, please also update the same list in ssl.mk and the checks | # When updating this, please also update the same list in ssl.mk and the checks | ||||
| # for USES=ssl in qa.sh! | # for USES=ssl in qa.sh! | ||||
| # Possible values: base, openssl, openssl111, openssl34, openssl35, | # Possible values: base, openssl, openssl34, openssl35, | ||||
| # openssl36, libressl, libressl-devel | # openssl36, libressl, libressl-devel | ||||
| . if !defined(SSL_DEFAULT) | . if !defined(SSL_DEFAULT) | ||||
| # If no preference was set, check for an installed base version | # If no preference was set, check for an installed base version | ||||
| # but give an installed port preference over it. | # but give an installed port preference over it. | ||||
| . if !defined(SSL_DEFAULT) && \ | . if !defined(SSL_DEFAULT) && \ | ||||
| !exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) && \ | !exists(${DESTDIR}/${LOCALBASE}/lib/libcrypto.so) && \ | ||||
| exists(${DESTDIR}/usr/include/openssl/opensslv.h) | exists(${DESTDIR}/usr/include/openssl/opensslv.h) | ||||
| SSL_DEFAULT= base | SSL_DEFAULT= base | ||||
| Show All 36 Lines | |||||