summaryrefslogtreecommitdiff
path: root/net/tinyldap/files/patch-tinyldap.c
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2004-02-26 20:25:02 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2004-02-26 20:25:02 +0000
commitae12e2aa4145aa48d203443b8ed927734af7f747 (patch)
tree0076b419cdccaa623e2d43fd2887f051d6aab37f /net/tinyldap/files/patch-tinyldap.c
parentAdd gpt 3.1, (diff)
tinyldap is an attempt to write a very small and very fast LDAP server.
openldap is the reference when it comes to LDAP servers, and it performs very poorly despite using techniques such as thread pools. WWW: http://www.fefe.de/tinyldap/
Notes
Notes: svn path=/head/; revision=102230
Diffstat (limited to 'net/tinyldap/files/patch-tinyldap.c')
-rw-r--r--net/tinyldap/files/patch-tinyldap.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/net/tinyldap/files/patch-tinyldap.c b/net/tinyldap/files/patch-tinyldap.c
new file mode 100644
index 000000000000..76eb407f07fd
--- /dev/null
+++ b/net/tinyldap/files/patch-tinyldap.c
@@ -0,0 +1,15 @@
+--- tinyldap.c.orig Thu Feb 5 02:29:18 2004
++++ tinyldap.c Thu Feb 26 16:03:58 2004
+@@ -14,7 +14,12 @@
+ #ifdef STANDALONE
+ #include "socket.h"
+ #include "ip6.h"
++#ifdef __FreeBSD__
++#include <sys/types.h>
++#include <sys/wait.h>
++#else
+ #include <wait.h>
++#endif
+ #endif
+ #include "case.h"
+ #include <signal.h>