ports/58828: patch to fix build of japanese/vflib

Hiroo Ono hiroo at oikumene.gcd.org
Sun Nov 2 04:50:20 UTC 2003


>Number:         58828
>Category:       ports
>Synopsis:       patch to fix build of japanese/vflib
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Nov 01 20:50:17 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Hiroo Ono
>Release:        FreeBSD 5.1-CURRENT i386
>Organization:
none
>Environment:
System: FreeBSD barleycoren.oikumene.gcd.org 5.1-CURRENT FreeBSD 5.1-CURRENT #2: Wed Oct 22 00:22:53 JST 2003 hiroo at barleycoren.oikumene.gcd.org:/build/usr/src/sys/BARLEYCOREN i386

gcc version 3.3.1 [FreeBSD]

>Description:
	the file tools/disol.c of japanese/vflib include varargs.h
	obsoleted with GCC 3, resulting to compile error.
>How-To-Repeat:
	make japanese/vflib from ports.
>Fix:
	Patch below worked. As stdarg.h exists in 4-stable, it should be
	fine with 4-stable too.

--- tools/disol.c.orig	Sun Nov  2 11:32:40 2003
+++ tools/disol.c	Sun Nov  2 11:32:52 2003
@@ -33,7 +33,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <varargs.h>
+#include <stdarg.h>
 #include "../src/VF.h"
 
 #define CommentLine printf


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list