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 [EMAIL PROTECTED]  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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to