Re: july 3rd kbs update note

lvirden <[email protected]> Mon, 09 Jul 2007 08:46:58 -0000
Newsgroups gmane.comp.lang.tcl.starkit
Message-ID <[email protected]>
I submitted a patch to fix this vlerq problem and Jean-Claude was
going to update the source. I've not heard whether he has done this
yet or not. And I believe that I was using gnu make - I will check.
It is too bad that gnu make is required though - that just is another
point of potential failure in the build process for that part of the
process.

On Jul 8, 5:16 am, Rene Zaumseil <[email protected]> wrote:
> Am Donnerstag, 5. Juli 2007 17:38 schrieb lvirden:
>
> >make: Fatal error: Don't know how to make target `pwb.o'
> ...
> > Anyone know what has to be tweaked for this?
>
> Do you using a "gmake" compatible "make"? It is necessary for "VPATH"
> statements.
>
> Btw. under SunOS I also had problems in compiling "vlerq.c". The problem was
> at line 39..
>
>  #if WORDS_BIGENDIAN && !defined(_BIG_ENDIAN)
>  #define _BIG_ENDIAN 1
>  #endif
>
> Under SunOS "_BIG_ENDIAN" is #defined but empty and the line #2025 and #2515
>
>  #if _BIG_ENDIAN
>
> fail. Change these two lines to
>
>  #ifdef _BIG_ENDIAN
>
> and everything is fine again.
> Did you also find this problem. I tried to find a script solution last week
> but failed so far. May be I should just patch the source file.
> But I do not like this. Anyone out there with a better solution?
> Is it possible to #undefine on the command line? May be Jean-Claude Wippler
> can change the source to
>
>  #if WORDS_BIGENDIAN
>   #undef _BIG_ENDIAN
>   #define _BIG_ENDIAN 1
>  #endif
>
> rene