diff options
author | sem <sem@FreeBSD.org> | 2008-04-25 23:42:13 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2008-04-25 23:42:13 +0800 |
commit | 6f651ed056f527ae597dc7e94d21a25856c79e7c (patch) | |
tree | 1de7f378e7a27e35f629e3510520392b4568a5cd /net/quagga | |
parent | 108a149d117d98459004f5c9244faac0082a49d3 (diff) | |
download | freebsd-ports-gnome-6f651ed056f527ae597dc7e94d21a25856c79e7c.tar.gz freebsd-ports-gnome-6f651ed056f527ae597dc7e94d21a25856c79e7c.tar.zst freebsd-ports-gnome-6f651ed056f527ae597dc7e94d21a25856c79e7c.zip |
- fix a message: 'options FAST_IPSEC' changed to 'options IPSEC' for 7.0+
Diffstat (limited to 'net/quagga')
-rw-r--r-- | net/quagga/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/quagga/Makefile b/net/quagga/Makefile index 7112dd538d22..10e85e5851ab 100644 --- a/net/quagga/Makefile +++ b/net/quagga/Makefile @@ -198,7 +198,11 @@ post-install: @${ECHO} "Note!!! To use MD5 passwords on BGP sessions, your kernel must" @${ECHO} "be built with the following options:" @${ECHO} " options TCP_SIGNATURE" +.if ${OSVERSION} < 700000 @${ECHO} " options FAST_IPSEC" +.else + @${ECHO} " options IPSEC" +.endif @${ECHO} " device crypto" @${ECHO} " device cryptodev" @${ECHO} "" |