Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Dec 2004 17:39:47 GMT
From:      Stuart Barkley <stuartb@4gh.net>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/75193: asterisk build on 5.3: work around tr bug (VI_ZERO)
Message-ID:  <200412171739.iBHHdleD098580@www.freebsd.org>
Resent-Message-ID: <200412171740.iBHHeNvI067633@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         75193
>Category:       ports
>Synopsis:       asterisk build on 5.3: work around tr bug (VI_ZERO)
>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:   Fri Dec 17 17:40:23 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Stuart Barkley
>Release:        5.3-RELEASE
>Organization:
>Environment:
FreeBSD delphi-5.4gh.net 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Wed Dec  8 11:37:19 EST 2004     stuartb@delphi-5.4gh.net:/usr/src/sys/i386/compile/4GH  i386

>Description:
Building net/asterisk on FreeBSD 5.3-RELEASE fails with error:

map.c:682: error: `VI_ZERO' undeclared here (not in a function)

>How-To-Repeat:
cd /usr/ports/net/asterisk
make
>Fix:
--- editline/makelist.orig      Fri Dec 17 01:58:14 2004
+++ editline/makelist   Fri Dec 17 01:58:46 2004
@@ -145,7 +145,7 @@
 #
 -fh)
     cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
-    sort | tr '[a-z]' '[A-Z]' | $AWK '
+    sort | tr 'a-z' 'A-Z' | $AWK '
        BEGIN {
            printf("/* Automatically generated file, do not edit */\n");
            printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200412171739.iBHHdleD098580>