bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

grep 2.5 problems in irix-6.5.15/MIPSpro Compilers Version 7.3.1.3m


From: Bernd Melchers
Subject: grep 2.5 problems in irix-6.5.15/MIPSpro Compilers Version 7.3.1.3m
Date: Mon, 18 Mar 2002 11:10:41 +0100
User-agent: Mutt/1.3.25i

Spencer bre test #16 failed

additionally i have to write
% chmod u+x tests/*.sh

and i have to modify the file src/dfa.c:

         char expr[6] = { '[', c, '-', c2, ']', '\0' };
         regex_t re;

modify to:
         char expr[6] = { '[', 0, '-', 0, ']', '\0' };
         regex_t re;
expr[1] = c;
expr[3] = c2;



and modify
             char buf[2] = { c, '\0' };
             regmatch_t mat;
to
             char buf[2] = { 0, '\0' };
             regmatch_t mat;
buf[0] = c;


i use IRIX-6.5.15:
% cc -version
MIPSpro Compilers: Version 7.3.1.3m



Ciao
Bernd
--
Bernd Melchers             | address@hidden
Freie Universitaet Berlin  | "We don't write software, we compose it."
CIS - Center for Information Services http://www.cis.fu-berlin.de/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]