Hylafax Mailing List Archives
|
[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
Re: Compiliation Problems
this is a problem i found many moons ago, but it never made it into the
patches. there is a "misfeature" in gcc that isn't treating function
names as addresses of functions, so it gets confused and can't find a
matching function protoype. i don't have the patch handy anymore, but
basically wherever it is whining, you'll want to make the following kind
of change:
< && sendData(fd, FaxClient::storeTemp, info.doc, emsg);
---
> && sendData(fd, &FaxClient::storeTemp, info.doc, emsg);