Curt, Here is the copyright information.
/* This is part of libio/iostream, providing -*- C++ -*- input/output. Copyright (C) 1993 Free Software Foundation This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. As a special exception, if you link this library with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. */ Sorry, I'm not an expert in configure either :-). By the way, does log4cxx 0.9.7 use the C++ locale? I was thinking that maybe for now I can revert to this version. thanks, Nitinan -----Original Message----- From: Curt Arnold [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 2:39 PM To: Log4CXX User Subject: Re: Compile issues on solaris 2.8 clocale is a C++ wrapperfor the C RTL locale.h and is of no interest. I would have expected streambuf to contain several instances of locale, particularly in the definitions for stl::streambuf::imbue. Out of curiosity, could you provide the copyright info from the streambuf header. It looks like that version of GCC (or that version of GCC for that platform) did not provide the Standard Template Library locale classes. I'll explore how to provide a fallback implementation when stl::locale is missing and get back with you. The fallback implementation will highly likely be fixed to the default C locale (aka English). The configure script will have to (eventually) be modified to detect the lack of <locale>. I'm not an configure guru, if you are and can suggest changes that would that would allow me to do something like: #if LOG4CXX_HAS_STL_LOCALE #include <locale> #else #include <log4cxx/include/mocklocale> #endif
