Re: july 3rd kbs update note
Rene Zaumseil <[email protected]> Sun, 8 Jul 2007 11:16:52 +0200
| Newsgroups | gmane.comp.lang.tcl.starkit |
|---|---|
| Message-ID | <[email protected]> |
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