ports/69430: [PATCH] databases/firebird: patch to fix broken build

chris at e-easy.com.au chris at e-easy.com.au
Fri Jul 23 07:30:33 UTC 2004


The following reply was made to PR ports/69430; it has been noted by GNATS.

From: chris at e-easy.com.au
To: freebsd-gnats-submit at FreeBSD.org, renato at galle.com.br
Cc: chris at e-easy.com.au
Subject: Re: ports/69430: [PATCH] databases/firebird: patch to fix broken build
Date: Fri, 23 Jul 2004 17:25:53 +1000 (EST)

 Howdy,
 
 Sorry, on further investigation, the correct patch to be committed
 should be the following. This will perform the correct transliteration
 regardless of locale. A pity that the 'a-z' 'A-Z' semantic of lower
 to upper doesn't work any more :-(
 
 Regards,
 Chris Knight
 
 Index: files/patch-src::extern::editline::makelist
 ===================================================================
 RCS file: files/patch-src::extern::editline::makelist
 diff -N files/patch-src::extern::editline::makelist
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ files/patch-src::extern::editline::makelist	23 Jul 2004 07:13:00 -0000
 @@ -0,0 +1,11 @@
 +--- src/extern/editline/makelist.orig	Mon May 24 04:24:25 2004
 ++++ src/extern/editline/makelist	Fri Jul 23 17:09:43 2004
 +@@ -145,7 +145,7 @@
 + #
 + -fh)
 +     cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
 +-    sort | tr '[a-z]' '[A-Z]' | $AWK '
 ++    sort | tr '[:lower:]' '[:upper:]' | $AWK '
 + 	BEGIN {
 + 	    printf("/* Automatically generated file, do not edit */\n");
 + 	    printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");
 



More information about the freebsd-ports-bugs mailing list