
On Thu, Jul 15, 2004 at 05:26:47PM -0700, Kees Cook wrote:
Currently I'm stuck because "configure" appears to have not set "ENABLE_NLS", but did set HAVE_BIND_TEXTDOMAIN_CODESET in config.h.
Interesting... there appears to be a possible bug with gcc 3.3 that causes autoconf to fail certain function tests.
http://gcc.gnu.org/ml/gcc/2003-01/msg00875.html http://fluxbox.sourceforge.net/download/patches/fluxbox-0.1.14-gcc33_autocon...
There appears to be no way around this, so once configure is done running, I just edited config.h:
#define ENABLE_NLS
(btw: the autoconf "fix" for this with strftime was to _remove_ strftime from being detected! Agh!)
Also, ran into the following warnings (a lot):
sp-item.cpp: In function `NRMatrix* sp_item_i2root_affine(const SPItem*, NRMatrix*)': sp-item.cpp:858: warning: choosing `NR::Matrix::operator NRMatrix&()' over ` NR::Matrix::operator const NRMatrix&() const' sp-item.cpp:858: warning: for conversion from `NR::Matrix' to `const NRMatrix&' sp-item.cpp:858: warning: because conversion sequence for the argument is better
is that something to correct?
But! The good news is.... it compiled! And it appears to load too!