mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 12:40:45 -04:00
DoCoMo's Open Source SEND project provides an implementation of RFC3971 Secure Neighbor Discovery (SEND). SEND cryptographically secures the IPv6 neighbor discovery protocol, countering the threats discussed in RFC3756 (IPv6 Neighbor Discovery (ND) Trust Models and Threats). DoCoMo's SEND is implemented completely in user space, so it is portable and lends itself to experimentation. It currently runs on Linux (tested on 2.6 kernels) and FreeBSD (tested on 5.4). Also included in the distribution are implementations of RFC3972 Cryptographically Generated Addresses (CGAs) and RFC3779 X.509 Extensions for IP Addresses and AS Identifiers. WWW: http://www.docomolabs-usa.com/lab_osrc_guide.html Doesn't work on FreeBSD > 6.x though. Hopefully the submitter will submit patches for it now it is commited. PR: ports/116540 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
25 lines
393 B
Text
25 lines
393 B
Text
|
|
$FreeBSD$
|
|
|
|
--- Makefile.config.orig
|
|
+++ Makefile.config
|
|
@@ -4,8 +4,8 @@
|
|
#
|
|
|
|
# Uncomment the line for your OS
|
|
-OS=linux
|
|
-#OS=freebsd
|
|
+#OS=linux
|
|
+OS=freebsd
|
|
|
|
# Linux only: Where is your linux kernel source?
|
|
# Ignored for non-Linux
|
|
@@ -19,7 +19,7 @@
|
|
#CC=gcc-4.0
|
|
|
|
# Where to install
|
|
-prefix=/usr
|
|
+prefix=%%PREFIX%%
|
|
|
|
# Set to "y" to build MT versions of sendd and cgatool
|
|
USE_THREADS=n
|