diff options
author | adrianp <adrianp@pkgsrc.org> | 2005-02-18 16:59:57 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2005-02-18 16:59:57 +0000 |
commit | 8f9ad8a3a9397961176529c2f2d431fcfcc6707a (patch) | |
tree | 8f06ab29d6b664ca8abed88b99942565e3ba8ca0 /net/freeradius/Makefile | |
parent | d2149518cceb1421e7f842ce94a6db3acc01ea74 (diff) | |
download | pkgsrc-8f9ad8a3a9397961176529c2f2d431fcfcc6707a.tar.gz |
- Update freeradius to 1.0.2
- Fix for PR #29437 opened by luiszuccolo(at)ciudad.com.ar, thanks for the PR !
> FreeRADIUS 1.0.2 ; $Date: 2005/02/13 01:03:20 $, urgency=medium
> * Novell eDirectoty support. Patch from Novell.
> * localweb & Trapeze dictionary updates.
> * EAP-SIM fixes.
> * Make "Strip-User-Name = No" work.
> * Don't declare zero-length arrays in rlm_passwd
> * Bug fix to make udpfromto code work
> * radrelay shouldn't dump core if it can't read a VP from the
> detail file.
> * Only initialize the random pool once.
> * In rlm_sql, don't escape characters twice.
> * Fix MD4 calculation on big-endian machines.
> * In rlm_ldap, only claim Auth-Type if a plain text password is present.
> * Treat Quintium VSAs like Cisco VSAs
> * Locking fixes in threading code
> * rlm_krb5 includes /usr/include/et for Fedora Core
> * Fix post-auth REJECT stanza processing for rejections from external
> processes or home RADIUS servers
> * Fix building on gcc-4.0 by not trying to access static auth_port from
> other files.
> * Fix building SNMP support on Solaris 9, which needs -lkstat
Diffstat (limited to 'net/freeradius/Makefile')
-rw-r--r-- | net/freeradius/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/net/freeradius/Makefile b/net/freeradius/Makefile index 57a788afbd2..849a00641e6 100644 --- a/net/freeradius/Makefile +++ b/net/freeradius/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.23 2005/02/09 09:14:26 seb Exp $ +# $NetBSD: Makefile,v 1.24 2005/02/18 16:59:57 adrianp Exp $ -DISTNAME= freeradius-1.0.1 -PKGREVISION= 7 +DISTNAME= freeradius-1.0.2 CATEGORIES= net MASTER_SITES= ftp://ftp.freeradius.org/pub/radius/ \ ftp://ftp.Awfulhak.org/pub/radius/ @@ -50,9 +49,12 @@ CONFIGURE_ARGS+= --without-snmp SUBST_CLASSES= make SUBST_STAGE.make= post-patch SUBST_FILES.make= src/modules/rlm_ldap/Makefile.in \ - src/modules/rlm_mschap/Makefile + src/modules/rlm_mschap/Makefile \ + src/modules/rlm_sql/drivers/rlm_sql_postgresql/Makefile.in SUBST_SED.make= -e "s|RLM_LDFLAGS =|RLM_LDFLAGS = \ - -L../../../src/lib/.libs/ -lradius|g" + -L../../../src/lib/.libs/ -lradius|g" \ + -e "s|RLM_SQL_LIBS =|RLM_SQL_LIBS = \ + -L${PREFIX}/lib|g" SUBST_MESSAGE.make= "Fixing Makefiles." .include "options.mk" |