cutting a pasting in browsers doesnt seem to present well.
just to reiterate:
this is an easy fix. i just snagged the cvs tree and fixed the freebsd
part. now it works swimmingly at my house :-)
the Compiler/Makefile just needs to reference the GCCDefs the same way the
linux and mac ports do. so i just hacked this in:
ifeq (${PLATFORM},LINUX)
CPP_OBJECTS = GCCDefs.$(TO)
endif
ifeq (${PLATFORM},FREEBSD)
CPP_OBJECTS = GCCDefs.$(TO)
endif
ifeq (${PLATFORM},MACOSX)
CPP_OBJECTS = GCCDefs.$(TO)
endif
whoever has commit priviledges to Makefile.in can fix it correctly :-).
On 15 Feb 2002 [EMAIL PROTECTED] wrote:
> DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
> RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
> <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6092>.
> ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
> INSERTED IN THE BUG DATABASE.
>
> http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6092
>
> stricmp and strnicmp not present in FreeBSD
>
>
>
>
>
> ------- Additional Comments From [EMAIL PROTECTED] 2002-02-15 05:53 -------
> fixing this is quite simple!
stricmp and strnicmp are implemented in
>GCCDefs.cpp

so modify the Makefile in compilers accordingly
 ifeq
>(${PLATFORM},LINUX)
 CPP_OBJECTS = GCCDefs.$(TO)
 endif
>ifeq (${PLATFORM},FREEBSD)
 CPP_OBJECTS = GCCDefs.$(TO)
>endif
 ifeq (${PLATFORM},MACOSX)
 CPP_OBJECTS =
>GCCDefs.$(TO)
 endif
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]