diff options
author | dinoex <dinoex@FreeBSD.org> | 2014-03-03 13:43:38 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2014-03-03 13:43:38 +0800 |
commit | 2741ba895b509206ee4267735f4e53a3189c75e2 (patch) | |
tree | d62b0489b611ed9a613ed61205ef51d9b35bb3a2 /Mk | |
parent | 75c8caab20de48832a8a38efc3c26a6a2fb1ea0a (diff) | |
download | freebsd-ports-graphics-2741ba895b509206ee4267735f4e53a3189c75e2.tar.gz freebsd-ports-graphics-2741ba895b509206ee4267735f4e53a3189c75e2.tar.zst freebsd-ports-graphics-2741ba895b509206ee4267735f4e53a3189c75e2.zip |
- remove WITH_OPENSSL_HACK7
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.openssl.mk | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Mk/bsd.openssl.mk b/Mk/bsd.openssl.mk index 605826b768d..c6e8fe0e556 100644 --- a/Mk/bsd.openssl.mk +++ b/Mk/bsd.openssl.mk @@ -8,7 +8,6 @@ # # WITH_OPENSSL_BASE=yes - Use the version in the base system. # WITH_OPENSSL_PORT=yes - Use the port, even if base is up to date -# WITH_OPENSSL_HACK7=yes - Use not the version in the base system on FreeBSD 7.x # # USE_OPENSSL_RPATH=yes - Pass RFLAGS options in CFLAGS, # needed for ports who don't use LDFLAGS @@ -40,13 +39,6 @@ WITH_OPENSSL_BASE=yes WITH_OPENSSL_PORT=yes .endif -.if defined(WITH_OPENSSL_HACK7) -.if ${OSVERSION} < 800000 -# the openssl in base of FreeBSD 7.x is too old -WITH_OPENSSL_PORT?= yes -.endif -.endif - # if no preference was set, check for an installed base version # but give an installed port preference over it. .if !defined(WITH_OPENSSL_BASE) && \ @@ -153,7 +145,7 @@ OPENSSLINC= ${OPENSSLBASE}/include .if defined(USE_OPENSSL_RPATH) CFLAGS+= -Wl,-rpath,${OPENSSLRPATH} .endif -OPENSSL_LDFLAGS+= -Wl,-rpath=${OPENSSLRPATH} +OPENSSL_LDFLAGS+= -Wl,-rpath,${OPENSSLRPATH} LDFLAGS+=${OPENSSL_LDFLAGS} |