diff options
author | dinoex <dinoex@FreeBSD.org> | 2005-11-25 15:34:47 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2005-11-25 15:34:47 +0000 |
commit | 53208f187e32ffbd13d1d890d6aa17ca84c33e25 (patch) | |
tree | 34fee55e2a8586510f0b9d6aff2160e9906e8ec9 | |
parent | f8a890393c67aafd026b09b3a14bb2c0f0659650 (diff) | |
download | FreeBSD-ports-53208f187e32ffbd13d1d890d6aa17ca84c33e25.zip FreeBSD-ports-53208f187e32ffbd13d1d890d6aa17ca84c33e25.tar.gz |
- warn users of option OPENSSL_OVERWRITE_BASE
-rw-r--r-- | security/openssl/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 3f148d8..5f9cc0d 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -925,6 +925,16 @@ pre-everything:: @${FALSE} .endif +.if exists(/usr/lib/libcrypto.so.3) && ${OPENSSL_SHLIBVER} != 3 +pre-everything:: + @${ECHO_CMD} "#" + @${ECHO_CMD} "# this ports conflicts with your base system" + @${ECHO_CMD} "# please undefine OPENSSL_OVERWRITE_BASE" + @${ECHO_CMD} "# and use WITH_OPENSSL_PORT=yes instead." + @${ECHO_CMD} "#" + @${FALSE} + +.endif BASE_SUFFIX= -overwrite-base PREFIX= /usr OPENSSLDIR= /etc/ssl |