diff options
author | pav <pav@FreeBSD.org> | 2010-12-02 22:26:21 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2010-12-02 22:26:21 +0800 |
commit | da593a7961ed4eef507517a1446e78a146f86f1b (patch) | |
tree | b4e3bbf952ee5ac6334a8fb38d9fbc1a9a8ce998 /net/ntp | |
parent | 1349f905e8b69826862800d8a791d281e354f7bc (diff) | |
download | freebsd-ports-gnome-da593a7961ed4eef507517a1446e78a146f86f1b.tar.gz freebsd-ports-gnome-da593a7961ed4eef507517a1446e78a146f86f1b.tar.zst freebsd-ports-gnome-da593a7961ed4eef507517a1446e78a146f86f1b.zip |
- Fix SSL option: USE_OPENSSL must be before pre.mk
PR: ports/152330
Reported by: Alexander Krivnetsov <akriventsov@hc.ru>
Approved by: maintainer timeout (cy; 15 days)
Diffstat (limited to 'net/ntp')
-rw-r--r-- | net/ntp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ntp/Makefile b/net/ntp/Makefile index 2d55c985e316..92a37ced00c5 100644 --- a/net/ntp/Makefile +++ b/net/ntp/Makefile @@ -33,7 +33,7 @@ OPTIONS= NTPSNMPD "Build and install ntpsnmpd" OFF \ RAWDCF "Enable RAWDCF option" OFF \ SSL "Enable SSL" ON -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> .if defined(WITH_RAWDCF) CONFIGURE_ARGS+= --enable-RAWDCF @@ -71,4 +71,4 @@ post-install: ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} --quiet ${DOCSDIR} .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |