head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.2 pkgsrc-2013Q2-base:1.2 pkgsrc-2013Q1:1.1.0.30 pkgsrc-2013Q1-base:1.1 pkgsrc-2012Q4:1.1.0.28 pkgsrc-2012Q4-base:1.1 pkgsrc-2012Q3:1.1.0.26 pkgsrc-2012Q3-base:1.1 pkgsrc-2012Q2:1.1.0.24 pkgsrc-2012Q2-base:1.1 pkgsrc-2012Q1:1.1.0.22 pkgsrc-2012Q1-base:1.1 pkgsrc-2011Q4:1.1.0.20 pkgsrc-2011Q4-base:1.1 pkgsrc-2011Q3:1.1.0.18 pkgsrc-2011Q3-base:1.1 pkgsrc-2011Q2:1.1.0.16 pkgsrc-2011Q2-base:1.1 pkgsrc-2011Q1:1.1.0.14 pkgsrc-2011Q1-base:1.1 pkgsrc-2010Q4:1.1.0.12 pkgsrc-2010Q4-base:1.1 pkgsrc-2010Q3:1.1.0.10 pkgsrc-2010Q3-base:1.1 pkgsrc-2010Q2:1.1.0.8 pkgsrc-2010Q2-base:1.1 pkgsrc-2010Q1:1.1.0.6 pkgsrc-2010Q1-base:1.1 pkgsrc-2009Q4:1.1.0.4 pkgsrc-2009Q4-base:1.1 pkgsrc-2009Q3:1.1.0.2 pkgsrc-2009Q3-base:1.1; locks; strict; comment @# @; 1.2 date 2013.04.24.02.20.37; author rodent; state dead; branches; next 1.1; 1.1 date 2009.07.17.08.19.29; author roy; state Exp; branches; next ; desc @@ 1.2 log @Moving ispell-* packages as discussed on tech-pkg@@. Reasons being: 1) Shorter package name; 2) Be consistent with kde3-l18n-*, kde4-l10n-*, hunspell-*, aspell-*, lang-* PKG_OPTIONS; 3) Simplify modifications to PKGNAME in some Makefiles; 4) Accordance with international language naming standards; and rename the ispell-base package to ispell, to be consistent with aspell and hunspell. Bump PKGREVISION where necessary. @ text @$NetBSD: patch-as,v 1.1 2009/07/17 08:19:29 roy Exp $ Avoid conflit with system getline. Fixes PR pkg/41746, thanks to Tom Stejskal. --- correct.c.orig 2009-07-17 09:14:29.000000000 +0100 +++ correct.c 2009-07-17 09:14:46.000000000 +0100 @@@@ -245,7 +245,7 @@@@ struct flagent * sufent, ichar_t savearea[MAX_CAPS][INPUTWORDLEN + MAXAFFIXLEN], int * nsaved)); -static char * getline P ((char * buf, int bufsize)); +static char * get_line P ((char * buf, int bufsize)); void askmode P ((void)); void copyout P ((unsigned char ** cc, int cnt)); static void lookharder P ((unsigned char * string)); @@@@ -571,7 +571,7 @@@@ imove (li - 1, 0); (void) putchar ('!'); - if (getline ((char *) buf, sizeof buf) == NULL) + if (get_line ((char *) buf, sizeof buf) == NULL) { (void) putchar (7); ierase (); @@@@ -596,7 +596,7 @@@@ (void) printf ("%s ", CORR_C_READONLY); } (void) printf (CORR_C_REPLACE_WITH); - if (getline ((char *) ctok, ctokl) == NULL) + if (get_line ((char *) ctok, ctokl) == NULL) { (void) putchar (7); /* Put it back */ @@@@ -664,7 +664,7 @@@@ unsigned char buf[100]; imove (li - 1, 0); (void) printf (CORR_C_LOOKUP_PROMPT); - if (getline ((char *) buf, sizeof buf) == NULL) + if (get_line ((char *) buf, sizeof buf) == NULL) { (void) putchar (7); ierase (); @@@@ -1583,7 +1583,7 @@@@ return; } -static char * getline (s, len) +static char * get_line (s, len) register char * s; register int len; { @ 1.1 log @Avoid conflit with system getline. Fixes PR pkg/41746, thanks to Tom Stejskal. @ text @d1 1 a1 1 $NetBSD$ @