diff options
author | adrianp <adrianp@pkgsrc.org> | 2006-02-04 21:13:54 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2006-02-04 21:13:54 +0000 |
commit | a17e110eb2f8e6592b94a10b2468d6164d1bbbd7 (patch) | |
tree | 13d31b08e7efa648e3499bdc06bee59d1ade2973 /chat/unrealircd/Makefile | |
parent | 9ad7f9581af440d47a7f3b5b965b206b30c2f007 (diff) | |
download | pkgsrc-a17e110eb2f8e6592b94a10b2468d6164d1bbbd7.tar.gz |
Update to 3.2.4
This is just a summary of changes, for full details see:
http://www.unrealircd.com/txt/unreal3_2_4_release_notes.txt
> ==[ MAJOR BUGS FIXED ]==
> - Two issues with an incorrect badword { } block in the config file causing a crash.
> - Incorrect TKL/*LINE causing a crash
> - Complete resolver recode: now using c-ares + caching to fix some (rare?) crash bugs and
> to make our code much more cleaner.
> - Using GCC4 caused a crash on-link.
> - Crash when a class block was removed and had any other blocks were referencing it.
> - OpenBSD crash on /REHASH.
> - Several AMD64 crash issues.
> - Sometimes a serious flood of notices was generated if link::options::nodnscache was used.
> - Spamfilter: action 'viruschan' combined with target 'user' caused crashes.
> - chinese-* nick characters support caused memory corruption.
> - Crash issue regarding SSL and junk snomask.
>
> ==[ MINOR BUGS FIXED ]==
> - Now properly resolves hostnames again that use CNAME delegation (got broken in 3.2.3).
> - Fedora Core w/IPv6 failed to compile.
> - A few read-after-free bugs that could have caused crashes.
> - ./Config was not loading the settings properly on Solaris 10
> - Crash if high ascii in set::network-name
> - Fixed advanced channel aliases not working properly
> - Fixed \* and \? escaping not always working properly (for example in ~r/~c bans).
Diffstat (limited to 'chat/unrealircd/Makefile')
-rw-r--r-- | chat/unrealircd/Makefile | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/chat/unrealircd/Makefile b/chat/unrealircd/Makefile index 74ac997f3f4..d1ee99cb675 100644 --- a/chat/unrealircd/Makefile +++ b/chat/unrealircd/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2005/12/29 06:21:33 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2006/02/04 21:13:54 adrianp Exp $ -DISTNAME= Unreal3.2.3 -PKGNAME= unrealircd-3.2.3 -PKGREVISION= 1 +DISTNAME= Unreal3.2.4 +PKGNAME= unrealircd-3.2.4 CATEGORIES= chat MASTER_SITES= http://unrealircd.atlanti-ka.org/ \ http://www.ilmarinen.us/unreal/ \ @@ -15,16 +14,21 @@ COMMENT= Advanced IRC server with IPv6 and SSL support CONFLICTS+= ircu-[0-9]* GNU_CONFIGURE= YES -USE_TOOLS+= pkg-config +USE_TOOLS+= pkg-config gmake WRKSRC= ${WRKDIR}/Unreal3.2 TRE_NEEDED= 0.7.2 +CARES_NEEDED= 1.3.0 BUILDLINK_DEPENDS.tre+= tre-${TRE_NEEDED} +BUILDLINK_DEPENDS.libcares+= libcares-${CARES_NEEDED} .include "../../mk/bsd.prefs.mk" CONFIGURE_ENV+= tre_version=${TRE_NEEDED:Q} CONFIGURE_ENV+= TRELIBS="-L${PREFIX}/lib -ltre" +CONFIGURE_ENV+= cares_version=${CARES_NEEDED:Q} +CONFIGURE_ENV+= CARESINCDIR="${PREFIX}/include" +CONFIGURE_ENV+= CARESLIBS="-L${PREFIX}/lib -lcares" CONFIGURE_ARGS+= --with-dpath=${UIRCD_HOME:Q} CONFIGURE_ARGS+= --with-spath=${PREFIX}/sbin/ircd @@ -57,7 +61,7 @@ UIRCD_SENDQ?= 3000000 UIRCD_LISTEN?= 5 UIRCD_BUFFER?= 18 UIRCD_NICKHIST?= 2000 -UIRCD_FDSIZE?= 512 +UIRCD_FDSIZE?= 1024 UIRCD_USER?= uircd UIRCD_GROUP?= uircd UIRCD_HOST?= localhost @@ -73,7 +77,7 @@ PKG_GROUPS= ${UIRCD_GROUP} RCD_SCRIPTS= unrealircd MESSAGE_SRC+= ${WRKDIR}/.MESSAGE_SRC -MESSAGE_SUBST+= UIRCD_HOME=${UIRCD_HOME} +MESSAGE_SUBST+= UIRCD_HOME=${UIRCD_HOME:Q} FILES_SUBST+= UIRCD_HOME=${UIRCD_HOME:Q} FILES_SUBST+= UIRCD_USER=${UIRCD_USER:Q} FILES_SUBST+= UIRCD_GROUP=${UIRCD_GROUP:Q} @@ -83,7 +87,7 @@ SUBST_STAGE.homedir= post-patch SUBST_FILES.homedir= doc/example.conf SUBST_SED.homedir= -e "s|src/modules|${IRCD_SHARE}/modules|g" \ -e "s|include \"|include \"${IRCD_SHARE}/|g" -SUBST_MESSAGE.homedir= "Fixing home directory of IRC server." +SUBST_MESSAGE.homedir= Fixing home directory of the IRC server. OWN_DIRS_PERMS+= ${UIRCD_HOME} ${UIRCD_USER} ${UIRCD_GROUP} 0770 OWN_DIRS_PERMS+= ${UIRCD_HOME}/tmp ${UIRCD_USER} ${UIRCD_GROUP} 0770 @@ -92,6 +96,7 @@ OWN_DIRS_PERMS+= ${UIRCD_HOME}/tmp ${UIRCD_USER} ${UIRCD_GROUP} 0770 INSTALL_UNSTRIPPED=YES .endif +.include "../../net/libcares/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../devel/tre/buildlink3.mk" |