Index: head/japanese/kcc/Makefile =================================================================== --- head/japanese/kcc/Makefile (revision 99187) +++ head/japanese/kcc/Makefile (revision 99188) @@ -1,27 +1,22 @@ # New ports collection makefile for: kcc # Date created: 26 May 1997 # Whom: Satoshi TAOKA # # $FreeBSD$ # PORTNAME= kcc PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_PORTS_JP} DISTNAME= ${PORTNAME} MAINTAINER= taoka@FreeBSD.org COMMENT= Kanji code conversion Filter INSTALL_TARGET= install install.man MANLANG= ja MAN1= kcc.1 -.include - -.if ${OSVERSION} >= 501000 -USE_GCC=2.95 -.endif - -.include +.include Property changes on: head/japanese/kcc/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.12 \ No newline at end of property +1.13 \ No newline at end of property Index: head/japanese/kcc/files/patch-ab =================================================================== --- head/japanese/kcc/files/patch-ab (nonexistent) +++ head/japanese/kcc/files/patch-ab (revision 99188) @@ -0,0 +1,36 @@ +--- kcc.c.dist Mon Mar 28 20:00:12 1994 ++++ kcc.c Wed Jan 21 06:01:11 2004 +@@ -134,7 +134,7 @@ + extern unsigned short hiragana[]; + unsigned short *kanatbl = katakana; + +-void error(); ++void error(char* fmt, ...); + + /********************************************************************** + * * +@@ -364,18 +364,17 @@ + NAME + error - print formatted error message on stderr and die + ---------------------------------------------------------------------*/ +-#include ++#include + +-void error(va_alist) +- va_dcl ++void error(char *fmt, ...) + { +- va_list args; ++ va_list ap; + +- va_start(args); ++ va_start(ap, fmt); + fprintf(stderr, "%s: ", progname); +- vfprintf(stderr, va_arg(args, char *), args); ++ vfprintf(stderr, fmt, ap); + putc('\n', stderr); +- va_end(args); ++ va_end(ap); + exit(1); + } + Property changes on: head/japanese/kcc/files/patch-ab ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property