You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(10) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(17) |
Feb
(11) |
Mar
(2) |
Apr
(6) |
May
(17) |
Jun
(17) |
Jul
(4) |
Aug
(19) |
Sep
(21) |
Oct
(17) |
Nov
(6) |
Dec
(6) |
2003 |
Jan
(6) |
Feb
(6) |
Mar
(14) |
Apr
(16) |
May
(9) |
Jun
|
Jul
(4) |
Aug
(4) |
Sep
(1) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2004 |
Jan
(4) |
Feb
(3) |
Mar
|
Apr
(6) |
May
|
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(3) |
Dec
|
2005 |
Jan
(1) |
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
(7) |
Aug
(1) |
Sep
(8) |
Oct
(6) |
Nov
(4) |
Dec
(6) |
2006 |
Jan
(1) |
Feb
(7) |
Mar
|
Apr
|
May
(3) |
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
|
Nov
(6) |
Dec
(1) |
2007 |
Jan
|
Feb
|
Mar
(7) |
Apr
(3) |
May
|
Jun
(4) |
Jul
(5) |
Aug
(35) |
Sep
(13) |
Oct
(3) |
Nov
|
Dec
(2) |
2008 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
(4) |
May
(5) |
Jun
|
Jul
|
Aug
(2) |
Sep
(4) |
Oct
|
Nov
(2) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(12) |
Nov
(1) |
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(3) |
Mar
|
Apr
(6) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
(5) |
Nov
|
Dec
(2) |
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(3) |
Feb
(3) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
From: James E. <em...@sy...> - 2001-11-22 18:46:04
|
Here's the solution (in case anyone is having the same problem): ./configure --disable-static --prefix=<dir> in the libtool script, change LD="/usr/ucb/ld" to LD="CC -Kpic" Regards, James James Emery wrote: > Hi, > > I am trying to compile/link the log4cpp package using the SunWorkshop > compiler (CC) on a Solaris 7 machine. The library builds, but the > testmain code fails to link properly. There are several error messages > relating to undefined symbols. This appears to be a problem with the > compiler not generating template code in the library. The CC compiler > seems to be quite complicated when it comes to handling templates. > > Has anyone been able to successfully build a usable log4cpp library > using SunW's CC compiler ? > > Any help that you can provide would be most appreciated. > > Thanks, > James > > partial error message: > > ild: (undefined symbol) __type_1 > std::copy<std::deque<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > > >::const_iterator,std::back_insert_iterator<std::deque<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > > > >(__type_0,__type_0,__type_1) -- referenced in > ../src/.libs/liblog4cpp.so > > _______________________________________________ > Log4cpp-devel mailing list > Log...@li... > https://lists.sourceforge.net/lists/listinfo/log4cpp-devel |
From: Bastiaan B. <bas...@li...> - 2001-11-22 00:41:09
|
Hi all, In OstringStream log4cpp uses the vsnprintf() function. Unfortunately many platforms either lack this function or have a broken implementation. To name a few: HPUX: broken security hazard, ignores string size parameter. Solaris: non C99 compliant return value '-1'. glibc <= 2.0.6: non C99 compliant return value '-1'. Tru64: missing (?) Now log4cpp has an alternative snprintf() implementation in case a C99 compliant version is not available. Unfortunately it appears not to be as portable as we would like. At least on HPUX and Solaris it has been reported not to compile. To resolve the issue I want to replace this implementation with a more portable third party one. Both 'Trio" (http://daniel.haxx.se/trio/ ) and "snprintf.c" (http://www.ijs.si/software/snprintf/ ) seem good candidates. If you have experience with either implementation or recommend another please let me know! Thanks, Bastiaan |
From: James E. <em...@sy...> - 2001-11-20 17:41:31
|
Hi, I am trying to compile/link the log4cpp package using the SunWorkshop compiler (CC) on a Solaris 7 machine. The library builds, but the testmain code fails to link properly. There are several error messages relating to undefined symbols. This appears to be a problem with the compiler not generating template code in the library. The CC compiler seems to be quite complicated when it comes to handling templates. Has anyone been able to successfully build a usable log4cpp library using SunW's CC compiler ? Any help that you can provide would be most appreciated. Thanks, James partial error message: ild: (undefined symbol) __type_1 std::copy<std::deque<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::const_iterator,std::back_insert_iterator<std::deque<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > > >(__type_0,__type_0,__type_1) -- referenced in ../src/.libs/liblog4cpp.so |
From: Uwe <ja...@va...> - 2001-10-12 14:15:58
|
Actually, no, none, too busy ... Russell, Mark wrote: > Has any progress been made on the Rolling File Appender? > > Mark A Russell > E-Mail: mar...@cs... > > > > |
From: Russell, M. <Mar...@cs...> - 2001-10-10 19:07:35
|
Has any progress been made on the Rolling File Appender? Mark A Russell E-Mail: mar...@cs... |