You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2005/12/18 11:26:04 UTC

DO NOT REPLY [Bug 36911] - Make fails while building jsvc on mac os x, multiple errors

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=36911>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36911





------- Additional Comments From d.malenicic@gmx.net  2005-12-18 11:26 -------
Looks like problem is connected with definition of typedef { false, true } bool;.
Seems that gcc 4.01 that is default compiler on OSX 10.4.x has problem with name
bool. I have tested two workarrounds:
- in jsvc.h remove 
    typedef { false, true } bool; 
  and 
    #include <stdbool.h>
  instead
- rename 
    typedef { false, true } bool; 
  to 
    typedef { false, true }  t_bool; /* or somethin similar */
  and replace all references to bool to references on following type.
Program than compiles but still doesn't work on Tiger and Java 1.4 or Java 5
since it tries to load libappshell.dylib that does exists only for Java 1.3.1.
But that's another bug.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org