View | Details | Raw Unified | Return to bug 136434
Collapse All | Expand All

(-)openradius/Makefile (-5 / +1 lines)
Lines 12-18 Link Here
12
MASTER_SITES=	http://www.xs4all.nl/~evbergen/openradius/download/ \
12
MASTER_SITES=	http://www.xs4all.nl/~evbergen/openradius/download/ \
13
		http://www.mirrors.wiretapped.net/security/authentication/radius/openradius/
13
		http://www.mirrors.wiretapped.net/security/authentication/radius/openradius/
14
14
15
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	utisoft@gmail.com
16
COMMENT=	A RADIUS server with some actual documentation
16
COMMENT=	A RADIUS server with some actual documentation
17
17
18
LOGFILE?=	/var/log/openradius.log
18
LOGFILE?=	/var/log/openradius.log
Lines 38-47 Link Here
38
PLIST_SUB+=	LDAP="@comment "
38
PLIST_SUB+=	LDAP="@comment "
39
.endif
39
.endif
40
40
41
.if ${OSVERSION} >= 800034 || (${OSVERSION} >= 700109 && ${OSVERSION} < 800000) || (${OSVERSION} >= 603103 && ${OSVERSION} < 700000)
42
BROKEN=		does not compile
43
.endif
44
45
post-install:
41
post-install:
46
.if !defined(NOPORTDOCS)
42
.if !defined(NOPORTDOCS)
47
	${MKDIR} ${DOCSDIR}
43
	${MKDIR} ${DOCSDIR}
(-)openradius/files/patch-common-misc.c (+11 lines)
Line 0 Link Here
1
--- common/misc.c.orig	2009-07-07 18:15:41.000000000 +0100
2
+++ common/misc.c	2009-07-07 18:17:20.000000000 +0100
3
@@ -43,7 +43,7 @@
4
  */
5
 
6
 
7
-char *memrchr(char *s, int c, ssize_t len)
8
+char *memrchr9(char *s, int c, ssize_t len)
9
 {
10
 	char *ret;
11
 
(-)openradius/files/patch-common-misc.h (+11 lines)
Line 0 Link Here
1
--- common/misc.h.orig	2009-07-07 18:15:47.000000000 +0100
2
+++ common/misc.h	2009-07-07 18:17:01.000000000 +0100
3
@@ -90,7 +90,7 @@
4
  * PROTOTYPES
5
  */
6
 
7
-char *memrchr(char *s, int c, ssize_t len);
8
+char *memrchr9(char *s, int c, ssize_t len);
9
 void hex(char *buf, const char *src, ssize_t len);
10
 void hmac_md5(char *out, char *in, META_ORD inl, char *key, META_ORD keyl);
11
 void get_random_data(char *p, ssize_t len);

Return to bug 136434