head 1.8; access; symbols pkgsrc-2013Q2:1.8.0.8 pkgsrc-2013Q2-base:1.8 pkgsrc-2012Q4:1.8.0.6 pkgsrc-2012Q4-base:1.8 pkgsrc-2011Q4:1.8.0.4 pkgsrc-2011Q4-base:1.8 pkgsrc-2011Q2:1.8.0.2 pkgsrc-2011Q2-base:1.8 pkgsrc-2011Q1:1.7.0.6 pkgsrc-2011Q1-base:1.7 pkgsrc-2010Q4:1.7.0.4 pkgsrc-2010Q4-base:1.7 pkgsrc-2010Q3:1.7.0.2 pkgsrc-2010Q3-base:1.7 pkgsrc-2009Q4:1.6.0.24 pkgsrc-2009Q4-base:1.6 pkgsrc-2008Q4:1.6.0.22 pkgsrc-2008Q4-base:1.6 pkgsrc-2008Q3:1.6.0.20 pkgsrc-2008Q3-base:1.6 cube-native-xorg:1.6.0.18 cube-native-xorg-base:1.6 pkgsrc-2008Q2:1.6.0.16 pkgsrc-2008Q2-base:1.6 pkgsrc-2008Q1:1.6.0.14 pkgsrc-2008Q1-base:1.6 pkgsrc-2007Q4:1.6.0.12 pkgsrc-2007Q4-base:1.6 pkgsrc-2007Q3:1.6.0.10 pkgsrc-2007Q3-base:1.6 pkgsrc-2007Q2:1.6.0.8 pkgsrc-2007Q2-base:1.6 pkgsrc-2007Q1:1.6.0.6 pkgsrc-2007Q1-base:1.6 pkgsrc-2006Q4:1.6.0.4 pkgsrc-2006Q4-base:1.6 pkgsrc-2006Q3:1.6.0.2 pkgsrc-2006Q3-base:1.6 pkgsrc-2006Q2:1.5.0.8 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.6 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.4 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.5.0.2 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.4.0.8 pkgsrc-2005Q2-base:1.4 pkgsrc-2005Q1:1.4.0.6 pkgsrc-2005Q1-base:1.4 pkgsrc-2004Q4:1.4.0.4 pkgsrc-2004Q4-base:1.4 pkgsrc-2004Q3:1.4.0.2 pkgsrc-2004Q3-base:1.4 pkgsrc-2004Q2:1.3.0.8 pkgsrc-2004Q2-base:1.3 pkgsrc-2004Q1:1.3.0.6 pkgsrc-2004Q1-base:1.3 pkgsrc-2003Q4:1.3.0.4 pkgsrc-2003Q4-base:1.3 netbsd-1-6-1:1.3.0.2 netbsd-1-6-1-base:1.3 netbsd-1-6:1.2.0.8 netbsd-1-6-RELEASE-base:1.2 pkgviews:1.2.0.4 pkgviews-base:1.2 buildlink2:1.2.0.2 buildlink2-base:1.2 netbsd-1-5-PATCH003:1.2 netbsd-1-5-PATCH001:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.8 date 2011.04.12.00.49.36; author mrg; state dead; branches; next 1.7; 1.7 date 2010.08.12.04.02.28; author mrg; state Exp; branches; next 1.6; 1.6 date 2006.07.22.09.13.11; author mrg; state dead; branches; next 1.5; 1.5 date 2005.07.01.04.12.20; author grant; state Exp; branches; next 1.4; 1.4 date 2004.08.20.03.20.54; author mrg; state dead; branches 1.4.8.1; next 1.3; 1.3 date 2002.08.25.21.49.35; author jlam; state Exp; branches; next 1.2; 1.2 date 2001.07.15.12.22.17; author jlam; state Exp; branches 1.2.2.1; next 1.1; 1.1 date 2000.12.15.00.36.32; author wiz; state Exp; branches 1.1.1.1; next ; 1.4.8.1 date 2005.07.22.02.47.41; author snj; state Exp; branches; next ; 1.2.2.1 date 2002.05.11.02.08.59; author jlam; state Exp; branches; next ; 1.1.1.1 date 2000.12.15.00.36.32; author wiz; state Exp; branches; next ; desc @@ 1.8 log @update to ircII 20110228. major changes: - warn the user if the IRCHOST may be wrong - make /save save /ignore'd things - remove K&R C support - remove many old UNIX platforms support - avoid a spurious SIGALRM - avoid printing some 8-bit unprintable chars - add support for modern qnx @ text @$NetBSD: patch-aa,v 1.7 2010/08/12 04:02:28 mrg Exp $ Index: source/mkmksiginc.pl =================================================================== RCS file: /home/cvs/ircii/source/mkmksiginc.pl,v retrieving revision 1.6 retrieving revision 1.9 diff -p -u -r1.6 -r1.9 --- source/mkmksiginc.pl 16 Feb 2004 09:55:53 -0000 1.6 +++ source/mkmksiginc.pl 12 Aug 2010 03:50:39 -0000 1.9 @@@@ -46,8 +46,8 @@@@ IRCII_RCSID("@@(#)$eterna$"); #define NSIG 64 #endif -#define MAXSIG NSIG+1 -char *signames[MAXSIG]; +#define MY_MAXSIG NSIG+1 +char *signames[MY_MAXSIG]; int main(int, char *[], char *[]); int @@@@ -59,7 +59,7 @@@@ main(argc, argv, envp) int i; signames[0] = "ZERO"; - for (i = 1; i < MAXSIG; i++); + for (i = 1; i < MY_MAXSIG; i++) signames[i] = 0; __eop1__ @@@@ -69,7 +69,7 @@@@ sub main { print $part_one; while ($_ = ) { chomp; - print "#ifdef SIG$_\n"; + print "#if defined(SIG$_) && SIG$_ < MY_MAXSIG\n"; print "\tsignames[SIG$_] = \"$_\";\n"; print "#endif\n\n"; } @@@@ -79,7 +79,7 @@@@ sub main { $part_two = <<'__eop2__'; printf("int max_signo = %d;\n", NSIG); puts("char *signals[] = { "); - for (i = 0; i < MAXSIG; i++) + for (i = 0; i < MY_MAXSIG; i++) if (signames[i]) printf("\"%s\", ", signames[i]); else @ 1.7 log @avoid accessing arrays out of bounds. should fix build isses on freebsd8. @ text @d1 1 a1 1 $NetBSD$ @ 1.6 log @update to ircII 20060721. changes include: o default status line now tells you when you are scrolled up o new variables status_scrolled and status_scrolled_lines o new status format modifiers %P and %s o fixed a bug with the input prompt being overtaken o /set translation has been removed. all encoding support now depends on the existance of iconv(3) support, enhancing the capabilities and correctness of codeset conversion. the translation and iso2022_support variables have been replaced with input_encoding, display_encoding and irc_encoding o /msg -server now works to send message on specific servers ie, other than the current window's server o support new $IRCSERVERSFILE that overrides $LIBDIR/ircII.servers @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.5 2005/07/01 04:12:20 grant Exp $ d3 46 a48 12 --- configure.orig 2004-07-03 20:37:00.000000000 +1000 +++ configure @@@@ -1107,9 +1107,6 @@@@ then 5.*) echo "$ac_t""yes" 1>&6 svr4=1 - if test $ac_cv_prog_gcc = no; then - CFLAGS="-Xc $CFLAGS" - fi ;; esac else @ 1.5 log @don't pass -Xc on Solaris if not building with gcc. passing -Xc to sunpro defines __STDC__=1 and the build fails in ircsig.c because only declares sigaction if __STD__=0. fixes build on Solaris w/ sunpro. @ text @d1 1 a1 1 $NetBSD$ @ 1.4 log @update to ircii 20040820. changes include: o /msg . now works for ICB mode as well o /topic now works by default for ICB o fix building on SunOS4 with GCC @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.3 2002/08/25 21:49:35 jlam Exp $ d3 11 a13 8 --- configure.orig Wed Mar 27 09:20:46 2002 +++ configure Wed May 8 05:34:40 2002 @@@@ -5578,7 +5578,7 @@@@ fi if test "x$COPY_DIRECTORY" = "xpax"; then - INSTALL_HELP_CMD='cd $(topdir)/help; pax -r -w -s ";.*/\.?CVS$$;;" -s ";.*/\.?CVS/.*;;" . $(HELP_DIR)' + INSTALL_HELP_CMD='cd $(topdir)/help; pax -r -w -s ";.*/\.CVS$$;;" -s ";.*/\.CVS/.*;;" . $(HELP_DIR)' a14 2 if test "x$COPY_DIRECTORY" = "xtar"; then @ 1.4.8.1 log @Pullup ticket 602 - requested by grant beattie portability fix for ircII Revisions pulled up: - pkgsrc/chat/ircII/distinfo 1.25 - pkgsrc/chat/ircII/patches/patch-aa 1.5 Module Name: pkgsrc Committed By: grant Date: Fri Jul 1 04:12:20 UTC 2005 Modified Files: pkgsrc/chat/ircII: distinfo Added Files: pkgsrc/chat/ircII/patches: patch-aa Log Message: don't pass -Xc on Solaris if not building with gcc. passing -Xc to sunpro defines __STDC__=1 and the build fails in ircsig.c because only declares sigaction if __STD__=0. fixes build on Solaris w/ sunpro. @ text @d1 1 a1 1 $NetBSD$ d3 8 a10 11 --- configure.orig 2004-07-03 20:37:00.000000000 +1000 +++ configure @@@@ -1107,9 +1107,6 @@@@ then 5.*) echo "$ac_t""yes" 1>&6 svr4=1 - if test $ac_cv_prog_gcc = no; then - CFLAGS="-Xc $CFLAGS" - fi ;; esac d12 2 @ 1.3 log @Merge packages from the buildlink2 branch back into the main trunk that have been converted to USE_BUILDLINK2. @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.2.2.1 2002/05/11 02:08:59 jlam Exp $ @ 1.2 log @Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. @ text @d1 1 a1 1 $NetBSD$ d3 3 a5 20 --- configure.orig Mon Feb 12 07:46:44 2001 +++ configure @@@@ -538,16 +538,6 @@@@ -# So many systems seem to need this that it is better do it here automatically. -if test "x$prefix" != xNONE; then - if test -d "$prefix/lib"; then - LIBS="-L${prefix}/lib $LIBS" - fi -else - if test -d "$ac_default_prefix/lib"; then - LIBS="-L${ac_default_prefix}/lib $LIBS" - fi -fi VERSION=`sed -n -e 's/"[^"]*$//' -e '/#define[ ]*IRCII_VERSION[ ]*"/s///p' -e '/#define IRCII_VERSION/q' < ${srcdir}/source/irc.c` @@@@ -5499,7 +5489,7 @@@@ @ 1.2.2.1 log @First pass at conversion of various packages to use the buildlink2 framework. Add many buildlink2.mk files to add to the framework. Please see buildlink2.txt for more details. @ text @d3 20 a22 3 --- configure.orig Wed Mar 27 09:20:46 2002 +++ configure Wed May 8 05:34:40 2002 @@@@ -5578,7 +5578,7 @@@@ @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.10 2000/08/03 05:46:50 tron Exp $ d3 20 a22 3 --- configure.orig Sun Apr 9 09:11:08 2000 +++ configure Thu Aug 3 07:43:46 2000 @@@@ -5241,7 +5241,7 @@@@ @ 1.1.1.1 log @Create new 'chat' category, featuring chat clients and servers of all kinds. Move some packages from 'net' here. @ text @@