head	1.4;
access;
symbols
	RELEASE_6_1_0:1.3
	RELEASE_5_5_0:1.3
	RELEASE_6_0_0:1.3
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.3
	RELEASE_4_8_0:1.3
	RELEASE_5_0_0:1.3
	RELEASE_4_7_0:1.3
	RELEASE_4_6_2:1.3
	RELEASE_4_6_1:1.3
	RELEASE_4_6_0:1.3
	RELEASE_5_0_DP1:1.3
	RELEASE_4_5_0:1.3
	RELEASE_4_4_0:1.3
	RELEASE_4_3_0:1.3
	RELEASE_4_2_0:1.3
	RELEASE_4_1_1:1.3
	RELEASE_4_1_0:1.3
	RELEASE_3_5_0:1.3
	RELEASE_4_0_0:1.3
	RELEASE_3_4_0:1.2
	RELEASE_3_3_0:1.2
	RELEASE_3_2_0:1.2
	RELEASE_3_1_0:1.1
	RELEASE_2_2_8:1.1;
locks; strict;
comment	@# @;


1.4
date	2006.04.06.13.54.44;	author archie;	state dead;
branches;
next	1.3;

1.3
date	2000.01.26.01.55.22;	author archie;	state Exp;
branches;
next	1.2;

1.2
date	99.03.10.22.27.54;	author archie;	state Exp;
branches;
next	1.1;

1.1
date	98.11.23.19.29.58;	author archie;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Remove the skip port. Created before there was an IPSec implementation on
FreeBSD, it is now extremely obsolete. In any case it doesn't compile. Earlier
version of this port can still be used on older versions of FreeBSD of course.
@
text
@diff -ur --unidirectional-new-file skipsrc-1.0.orig/skip/man/install_skip_keys.1m work.new/skip/man/install_skip_keys.1m
--- skipsrc-1.0.orig/skip/man/install_skip_keys.1m	Fri Oct 25 13:12:56 1996
+++ work.new/skip/man/install_skip_keys.1m	Mon Jan 24 12:35:41 2000
@@@@ -41,20 +41,13 @@@@
 .RE
 .P
 .SH FILES
-.SS Solaris 1.x systems:
 .P
-/etc/skip/certdb.dir
+@@@@PREFIX@@@@/etc/skip/certdb.dir
 .br
-/etc/skip/localid/..
+@@@@PREFIX@@@@/etc/skip/localid/..
 .br
-/etc/skip/CAs/...
+@@@@PREFIX@@@@/etc/skip/CAs/...
 .br
-.P
-.SS Solaris 2.x systems:
-.P
-/etc/opt/SUNWicg/skip/certdb
-/etc/opt/SUNWicg/skip/localid/...
-/etc/opt/SUNWicg/skip/CAs/...
 .P
 .SH NOTES
 Currently the name of the Certificate is hard coded into the code.  We 
@


1.3
log
@Bash this port until it compiles under -current again.
@
text
@@


1.2
log
@Build SKIP port as a KLD instead of an LKM.
@
text
@d1 5
a5 5
diff -ur --unidirectional-new-file skipsrc-1.0.orig/skip/man/skiplocal.1m work.new/skip/man/skiplocal.1m
--- skipsrc-1.0.orig/skip/man/skiplocal.1m	Fri Oct 25 13:12:58 1996
+++ work.new/skip/man/skiplocal.1m	Mon Mar  8 21:33:40 1999
@@@@ -171,13 +171,9 @@@@
 \fBskipd_restart\fP in order for the changes to take effect.
d10 2
a11 2
-/etc/skip/localids
+@@@@PREFIX@@@@/etc/skip/localids
d13 7
d22 3
a24 1
-/etc/opt/SUNWicg/skip/localids
d26 2
a27 2
 .SH BUGS
 skiplocal export does not work well for communicating with multiple keys.
@


1.1
log
@Fix compile problems under 3.0; haven't tested it with a 3.0 kernel yet.
@
text
@d1 18
a18 58
diff -ur --unidirectional-new-file skipsrc-1.0.orig/libdb/hash/hash.c skipsrc-1.0/libdb/hash/hash.c
--- skipsrc-1.0.orig/libdb/hash/hash.c	Fri Oct 25 13:12:20 1996
+++ skipsrc-1.0/libdb/hash/hash.c	Sun Nov 22 21:21:29 1998
@@@@ -505,7 +505,7 @@@@
 	else
 		if (wsize != sizeof(HASHHDR)) {
 			errno = EFTYPE;
-			hashp->errno = errno;
+			hashp->errnum = errno;
 			return (-1);
 		}
 	for (i = 0; i < NCACHED; i++)
@@@@ -536,7 +536,7 @@@@
 
 	hashp = (HTAB *)dbp->internal;
 	if (flag) {
-		hashp->errno = errno = EINVAL;
+		hashp->errnum = errno = EINVAL;
 		return (ERROR);
 	}
 	return (hash_access(hashp, HASH_GET, (DBT *)key, data));
@@@@ -553,11 +553,11 @@@@
 
 	hashp = (HTAB *)dbp->internal;
 	if (flag && flag != R_NOOVERWRITE) {
-		hashp->errno = errno = EINVAL;
+		hashp->errnum = errno = EINVAL;
 		return (ERROR);
 	}
 	if ((hashp->flags & O_ACCMODE) == O_RDONLY) {
-		hashp->errno = errno = EPERM;
+		hashp->errnum = errno = EPERM;
 		return (ERROR);
 	}
 	return (hash_access(hashp, flag == R_NOOVERWRITE ?
@@@@ -574,11 +574,11 @@@@
 
 	hashp = (HTAB *)dbp->internal;
 	if (flag && flag != R_CURSOR) {
-		hashp->errno = errno = EINVAL;
+		hashp->errnum = errno = EINVAL;
 		return (ERROR);
 	}
 	if ((hashp->flags & O_ACCMODE) == O_RDONLY) {
-		hashp->errno = errno = EPERM;
+		hashp->errnum = errno = EPERM;
 		return (ERROR);
 	}
 	return (hash_access(hashp, HASH_DELETE, (DBT *)key, NULL));
@@@@ -729,7 +729,7 @@@@
 
 	hashp = (HTAB *)dbp->internal;
 	if (flag && flag != R_FIRST && flag != R_NEXT) {
-		hashp->errno = errno = EINVAL;
+		hashp->errnum = errno = EINVAL;
 		return (ERROR);
 	}
 #ifdef HASH_STATISTICS
@

