diff options
author | cy <cy@FreeBSD.org> | 2013-02-19 05:17:12 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2013-02-19 05:17:12 +0800 |
commit | b130dbd454210619a69e013a53f7411ca7544f6d (patch) | |
tree | 448203d8940d5de62fc202e70711574204def3a6 /net/ntp-rc | |
parent | a69af0eb7aa0e2adb4c41ab4d6405385397f3eea (diff) | |
download | freebsd-ports-gnome-b130dbd454210619a69e013a53f7411ca7544f6d.tar.gz freebsd-ports-gnome-b130dbd454210619a69e013a53f7411ca7544f6d.tar.zst freebsd-ports-gnome-b130dbd454210619a69e013a53f7411ca7544f6d.zip |
Add non-default NTP signed option.
PR: 175918
Diffstat (limited to 'net/ntp-rc')
-rw-r--r-- | net/ntp-rc/Makefile | 4 | ||||
-rw-r--r-- | net/ntp-rc/Makefile.inc | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/net/ntp-rc/Makefile b/net/ntp-rc/Makefile index aaa2d7103d4a..de90ee8f1740 100644 --- a/net/ntp-rc/Makefile +++ b/net/ntp-rc/Makefile @@ -57,6 +57,10 @@ PLIST_SUB+= SSL="" CONFIGURE_ARGS+= --enable-ipv6 .endif +.if !defined(WITH_NTP_SIGND) +CONFIGURE_ARGS+= --enable-ntp-signd +.endif + .for D in ${NTP_DRIVERS} .if defined(WITH_${D}) CONFIGURE_ARGS+= --enable-${D} diff --git a/net/ntp-rc/Makefile.inc b/net/ntp-rc/Makefile.inc index 400aa4a36f9c..7cdaf128a0fa 100644 --- a/net/ntp-rc/Makefile.inc +++ b/net/ntp-rc/Makefile.inc @@ -3,6 +3,7 @@ OPTIONS= NTPSNMPD "Build and install ntpsnmpd" OFF \ SSL "Enable SSL" ON \ IPV6 "Enable IPv6" OFF \ + NTP_SIGND "Enable signed NTP" OFF \ BANCOMM "Enable Datum/Bancomm bc635/VME interface" OFF \ GPSVME "Enable TrueTime GPS receiver/VME interface" OFF \ ACTS "Enable ACTS modem service" OFF \ |