Re: ant OSX build problem.

2006-10-13 Thread Derek Baum
!! Shai -Original Message- From: "Derek Baum" <[EMAIL PROTECTED]> Sent: Thu, October 12, 2006 5:40 pm To: "Log4CXX User" Subject: Re: ant OSX build problem. There are two problems here: 1. unwanted references to UnicodeHelper::encodeWide() etc 2. reference to _

Re: ant OSX build problem.

2006-10-12 Thread Derek Baum
There are two problems here: 1. unwanted references to UnicodeHelper::encodeWide() etc 2. reference to _Unwind_Resume The first should be fixed with a clean build using -Dhas.wchar_t=0 that re-runs configure. The second is because we need to use the g++ linker. I have re-investigated my

Re: ant build problem.

2006-10-12 Thread Derek Baum
codeHelper so it seems like the source of my problems is with the UnicodeHelper and not the linker. I have xcode 2.4 installed if it matters. any ideas ? thx Shai -Original Message----- From: "Derek Baum" <[EMAIL PROTECTED]> Sent: Thu, October 12, 2006 3:25 am To: "

Re: ant build problem.

2006-10-12 Thread Derek Baum
This error is because gcc rather than g++ is being used for the link. This is because the compiler setting on line 229 of build.xml takes precedence over the one on line 235: 227 228 229 230 231 232 233 234 235 236 Howe

Re: Does log4cxx support variable-arguments?

2006-09-18 Thread Derek Baum
I've defined my own logging macros that use , for example: #include // define logging macros using streams #define LOG_LOG(_logger_, _level_, _message_) { \ if (_logger_->isEnabledFor(_level_)) {\ ::std::stringstream sstr;\ sstr << _message_;\ _logger_->forcedLo