> > you replace
> >     #pragma weak foo = bar
> > with either
> >     #pragma weak foo = "bar" /* this is easier */
> > or
> >     if __GNUC__ >= 3
> >             int foo() __attribute__ ((weak, alias ("bar")));
> >     #endif /* __GNUC__ */
> > .

I tried the quotation mark fix, and all it does is change the error
message to

UIThrStubs.c:102: warning: malformed #pragma weak, ignored
UIThrStubs.c:103: warning: malformed #pragma weak, ignored
UIThrStubs.c:104: warning: malformed #pragma weak, ignored
UIThrStubs.c:105: warning: malformed #pragma weak, ignored
UIThrStubs.c:106: warning: malformed #pragma weak, ignored
UIThrStubs.c:107: warning: malformed #pragma weak, ignored
UIThrStubs.c:108: warning: malformed #pragma weak, ignored
UIThrStubs.c:109: warning: malformed #pragma weak, ignored
UIThrStubs.c:110: warning: malformed #pragma weak, ignored
UIThrStubs.c:111: warning: malformed #pragma weak, ignored
UIThrStubs.c:113: warning: malformed #pragma weak, ignored
UIThrStubs.c:114: warning: malformed #pragma weak, ignored
UIThrStubs.c:115: warning: malformed #pragma weak, ignored
UIThrStubs.c:131: warning: `_Xthr_self_stub_' defined but not used
UIThrStubs.c:139: warning: `_Xthr_zero_stub_' defined but not used

which doesn't really seem to be a solution.

-- 
Michael D. Harnois                   bilocational bivocational
Pastor, Redeemer Lutheran Church                Washburn, Iowa
2L, UST School of Law                   Minneapolis, Minnesota
 There are things that are so serious 
 that you can only joke about them. -- Werner Heisenberg


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to