1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
|
2013-10-03 František Dvořák <valtri@civ.zcu.cz>
* src/sd/test.c, tests/log4c/bench.c, tests/log4c/bench_fwrite.c:
Proper formating of long long integers in MSVC and MinGW ports.
* release: Release covering also MinGW binaries with tests. Script
small improvements.
* configure.in, release, src/log4c/Makefile.am: Generate .def file in
MinGW platform, launch MSVC linker during release if available.
* ChangeLog, NEWS, configure.in: log4c-1.2.4
2013-09-30 František Dvořák <valtri@civ.zcu.cz>
* src/sd/domnode-xml.c: Build with disabled expat and available
nl_langinfo.
* src/log4c/config-win32.h, src/log4c/layout_type_basic_r.c,
src/sd/sd_xplatform.c, src/sd/sd_xplatform.h:
Replacement function for buggy snprintf()/vsnrpintf on MinGW. Also
removed sd_xplatform.h header from the sd_xplatform.c as we need the
original vsnprintf() function.
* src/sd/test.c, tests/log4c/Makefile.am:
Launching tests under MinGW (and keep FreeBSD working).
2013-09-29 František Dvořák <valtri@civ.zcu.cz>
* README, configure.in, examples/application_1.c,
examples/application_2.c, examples/application_3.c,
src/log4c/Makefile.am, src/log4c/category.c, src/sd/sd_xplatform.h:
MinGW port improvements:
- add required '-no-undefined' linker flag (shared dll library is created now)
- don't call non-portable autoconf functions (==> environment hacks are not needed anymore)
- update README
- sleep function (fix build with mingw >= 4.8, cover implicit declaration with mingw 4.7)
- alloca function
- warning fixes
* configure.in, examples/application_1.c, examples/application_2.c,
examples/application_3.c, src/log4c/config-win32.h, src/log4c/init.c,
src/log4c/layout_type_dated.c, src/log4c/layout_type_dated_r.c,
src/log4c/logging_event.h, src/sd/malloc.c, src/sd/sd_xplatform.c,
src/sd/sd_xplatform.h, src/sd/test.c, tests/log4c/bench.c,
tests/log4c/test_rollingfile_appender_mt.c:
MinGW port bugfixes and cleanups:
- fix mismatch between FILETIME and timeval structures
- move gmtime_r replacement function from layouts to sd_xplatform.c
- reentrant layouts cleanups
- reentrant layouts enabled on all platforms (POSIX, MinGW, Windows native)
- warnings fixes
* examples/helloworld/helloworld.c, examples/userloc_formatter.c,
src/log4c/appender_type_rollingfile.c,
src/log4c/appender_type_stream2.c, src/log4c/init.c,
src/sd/domnode-expat.c, src/sd/test.c, tests/log4c/bench_fwrite.c,
tests/log4c/test_category.c:
Warnings fixes - unused variables and implicit declarations.
* src/sd/test.c, tests/log4c/Makefile.am:
Porting tests on FreeBSD:
- no libtool prefix on binaries
- NULL pointer printed as "0x0" instead of "(nil)"
* examples/application_3.h, src/log4c/category.h, src/log4c/defs.h,
src/sd/defs.h, src/sd/error.h, src/sd/factory.c, src/sd/sprintf.h:
Add GNU C format attribute to enable checks of format string with
provided parameters. Used internally and in public API.
* doc/Makefile.am:
Tuning documentation build:
- disable paralelism because of latex (whole log4c can be built parallel after that)
- don't repeat build of the documentation when not needed - removed phony target
* doc/Doxyfile.in, src/log4c/rollingpolicy.h:
Update doxygen documentation: work properly with __attribute__,
doxygen warnings.
* doc/main.doc.in: Update summary documentation (typos, URL to log4j
1.2).
* tests/log4c/test_rc.c, tests/log4c/test_rc.ref:
Memory leak in test_rc.
* src/log4c/Makefile.am, src/log4c/init.c,
src/log4c/layout_type_dated_local.c,
src/log4c/layout_type_dated_local.h,
src/log4c/layout_type_dated_local_r.c,
src/log4c/layout_type_dated_local_r.h:
New dated layouts using localtime (requested in SF bug #21).
2013-04-06 František Dvořák <valtri@civ.zcu.cz>
* README: typos
* Makefile.am, configure.in: work with newer autotools
* bootstrap: warn when autoconf older than 2.69 (required for aarch64,
Fedora bug #926084
* src/log4c/appender.c, src/log4c/appender.h, src/log4c/init.c,
src/log4c/layout.c, src/log4c/layout.h, src/log4c/rollingpolicy.c,
src/log4c/rollingpolicy.h:
memory leaks in log4c_fini (SF patch #3605649)
* release: update release cookbook
* src/log4c/appender_type_syslog.c: fix syslog appender - missing
format string for syslog() lead to crashes
* NEWS: create the NEWS file
* Changelog, NEWS, configure.in: log4c-1.2.3
* log4crc.sample.in: remove version from the sample config file
2013-03-25 František Dvořák <valtri@civ.zcu.cz>
* Makefile.am, configure.in, log4c-config.1, log4c-config.in,
log4c.pc.in, log4c.spec.in:
manpage for log4c-config, add development files (pkgconfig), remove
libtool files from rpm
* COPYING, src/sd/malloc.c: update FSF address
* AUTHORS, log4c.spec.in: rpmlint fixes, use UTF-8 encoding
2012-10-04 František Dvořák <valtri@civ.zcu.cz>
* release, doc/main.doc.in: update documentation
* config/va_copy.m4, configure.in, examples/example_formatters.c,
examples/helloworld/helloworld.c, examples/helloworld1/helloworld1.c,
examples/userloc_formatter.c, src/log4c/logging_event.c,
src/sd/sprintf.c, tests/log4c/test_big.c, tests/log4c/test_category.c,
tests/log4c/test_layout_r.c, tests/log4c/test_rc.c,
tests/log4c/test_stream2.c:
build with C89 compiler (but at least __va_copy is still required)
* ChangeLog: log4c-1.2.2
2012-10-02 František Dvořák <valtri@civ.zcu.cz>
* tests/log4c/bench.c: fix build of the tests on FreeBSD
* README, config/gethostname.m4, configure.in, examples/Makefile.am,
examples/application_1.c, examples/application_2.c,
examples/application_3.c, src/log4c/Makefile.am,
src/log4c/config-win32.h, src/log4c/logging_event.h:
MinGW port
* configure.in: prep for release 1.2.2
* tests/log4c/Makefile.am: missing test reference files in
distribution
2012-09-30 František Dvořák <valtri@civ.zcu.cz>
* configure.in: missing macro AC_PROG_CXX
* src/sd/test.c, src/sd/test.h, tests/log4c/Makefile.am,
tests/log4c/test_category.c, tests/log4c/test_category.ref,
tests/log4c/test_layout_r.c, tests/log4c/test_layout_r.ref,
tests/log4c/test_rc.ref: update regression tests
* src/sd/sprintf.c, tests/log4c/Makefile.am, tests/log4c/test_big.c,
tests/log4c/test_big.ref:
fix segmentation fault on messages longer than 1024 bytes (SF bug
#3022803), new test
* src/log4c/init.c:
load only the first log4crc file (SF patch #1578148)
* src/log4c/appender_type_rollingfile.c,
src/log4c/appender_type_stream2.c, tests/log4c/bench_fwrite.c,
tests/log4c/test_stream2.c:
get rid of C++ comments (SourceForge bug #1848855)
* configure.in, src/log4c/init.c:
proper build without rollingfile appender (SourceForge bug #1911791)
* src/log4c/appender_type_rollingfile.c:
fix rare crash in rollingfile appender (SourceForge bug #1924072)
* tests/log4c/bench.c:
memory leak
* src/log4c/init.h:
missing extern "C" declarations in init.h for C++ (SourceForge bug #2032785)
* src/log4c/appender_type_stream.c:
fix a problem with reopening stream appender - clear udata with file
descriptior after closing (Sourceforge bug #3168808)
* src/log4c/appender_type_mmap.c:
proper copy message over end of file in mmap appender (Sourceforge bug
#3189231)
* ChaneLog: update changelog
2007-09-18 Joel Schaubert <joel4700@sbcglobal.net>
* configure.in: prep for release 1.2.1
2007-09-17 Joel Schaubert <joel4700@sbcglobal.net>
* src/sd/list.c: correct a comment
* ChangeLog: update changelog
* tests/Makefile.am, tests/log4c/Makefile.am, tests/log4c/cpp_compile_test.cpp, src/log4c/Makefile.am, src/log4c/create_cpp_tester.sh, src/log4c/rc.c:
simplify c++ syntax checker
* src/log4c/category.h:
guards for hpp compiler problem with inlines and varags
2007-09-12 Cedric Le Goater <legoater@free.fr>
* examples/README: fix line wrapping.
2007-09-11 Joel Schaubert <joel4700@sbcglobal.net>
* examples/README: new rollingfile appender
* ChangeLog: update changelog
* examples/log4crc.in: add rolling file appender for testing
* examples/application_3.h: syntax fix for hpux
* src/sd/list.c: make sd_list_delete delete iterators
* src/log4c/rollingpolicy_type_sizewin.c: fix a memory leak
* src/log4c/rc.c:
allow use of KB,MB,GB when specifying sizes in config file
2007-09-11 Joel Schaubert <joel4700@sbcglobal.net>
* examples/log4crc.in add rolling file appender for testing
* src/log4c/rollingpolicy.h fix c++ compile error
* src/log4c/appender_type_stream2.h fix c++ compile error
* src/tests/log4c/Makefile.am build c++ syntax test program
* src/tests/log4c/cpp_compile_test.cpp added
* Francisco Camenforte Torres fct.dev@gmail.com patches
* src/log4c/rc.c allow use of KB,MB,GB when specifying sizes in config file
* src/log4c/rollingpolicy_type_sizewin.c fix a memory leak
* src/sd/list.c make sd_list_delete do a deep delete
* examples/application_3.h syntax fix for hpux
* src/log4c/category.h guards for hp compiler
2007-06-20 Cedric Le Goater <legoater@free.fr>
* log4c.spec.in: minor updates
2007-06-08 Cedric Le Goater <legoater@free.fr>
* README, doc/main.doc.in: minor updates
* examples/example_formatters.c, examples/helloworld/Makefile.am, examples/helloworld1/Makefile.am, examples/userloc_formatter.c, examples/Makefile.am:
don't install examples
* examples/Makefile.am, examples/helloworld1/Makefile.am:
included .h files in tarball
* doc/Makefile.am: don't copy log4c.pdf when LATEX is not available
* doc/Makefile.am: removed old log4cHowto.html file
* ChangeLog, configure.in: Getting prepared for 1.2.0.
2006-12-15 bikeracer4700
* configure.in, examples/README, examples/log4crc.in,
src/log4c/category.c, src/log4c/init.c, src/log4c/rc.c,
src/log4c/rc.h, src/sd/sd_xplatform.c, src/sd/sd_xplatform.h:
log4crc reread patch
2006-12-05 bikeracer4700
* examples/application_3.c, examples/application_3.h,
examples/userloc_formatter.c, ChangeLog, examples/Makefile.am,
examples/README, examples/example_formatters.c, examples/log4crc.in,
src/log4c/category.h, src/log4c/location_info.h:
adding user defined location information patch
2006-12-05 Joel Schaubert <joel4700@sbcglobal.net>
* src/log4c/location_info.h: Change location initialzing macro to accept
additional parameter for user info.
* src/log4c/category.h: Added new API for a logging message
with user provided location_info
* examples/: Added example usage of new extended location info
2006-11-12 Robert Byrne <robert.byrne@sun.com>
* configure.in: add the without-expat option
for those who know they do not want that dependency.
* config/expat.m4: add some text to error messages in the case where
we look for expat but fail to find it. Recall that Log4C will still
work using the bundled lex/yacc code for parsing the conf file.
2006-11-12 Robert Byrne <robert.byrne@sun.com>
* Mostly stuff to tidy up the windows code:
* tidy up in app*.c examples: to remove compile warnings on msvc6
* tidy up msvc6/Makefile: to take account of some difference
in msvc6 and msvc8 (former doesn't have manifest files for debug
version).
* bug fix in stream2 appender: not allocating the udata
correctly. Showed up if you did open/close, open/close on
the stream2 appender on windows.
* introduce LOG4C_DATA (analagous to LOG4C_API): to be used
for exporting data symbols. Need this to export sd_optind
from the sd library so that bench.c can use sd_getopt()
correctly to process it's command line. Bug was that
bench.exe on windows was not getting it's command line.
* replace several counter variables previously of type int
with type size_t: to avoid compile warnings
* align the files bench.c, sd/test.c, test_rollingfile_appender_mt.c
on the way they get timestamps on windows.
* in bench.c, ditched the timed_loop macro--too hard to work with.
2005-12-16 Cedric Le Goater <legoater@free.fr>
* configure.in: log4c-1.1.0
2005-12-16 Robert Byrne <robert.byrne@sun.com>
* msvc6/gotest.sh:
add some helper comments at the start of the hlper script
2005-12-15 Robert Byrne <robert.byrne@sun.com>
* tests/log4c/bench.c: . include some sd_xplatform stuff...
* src/log4c/logging_event.h: . only include sys/time.h on non
windoows platforms. Originally thought to use ifdef
HAVE_SYS_TIME_H but that would require applications knowing that
they needed to define that...whereas this way the right thing
happens naturally.
* src/sd/test.c: . #warning doesn't work with msvc6
* tests/log4c/test_rc.c, tests/log4c/test_stream2.c: . patch some
of the tests for msvc6: need explicit call to log4c_init() and use
the getopt from sd.
* msvc6/Makefile, src/log4c/init.c, src/log4c/layout_type_basic.c,
src/log4c/layout_type_dated.c, src/log4c/priority.c,
src/log4c/rc.c, src/sd/Makefile.am, src/sd/domnode-xml-scanner.c,
src/sd/domnode-xml-scanner.h, src/sd/error.c, src/sd/error.h,
src/sd/sprintf.c: . include the sd_xplatform.h file where needed
(it redefines things liek sprintf, strcasecmp etc. for use with
msvc6) . introduce an error.c to hold sd_debug functions used to
replace analogous macros with msvc6 (variable number of args
problem)
* src/log4c/logging_event.h:
back out this HAVE_SYS_TIME test for the moment....
means would have to include config.h.....need to think about that
2005-12-15 Cedric Le Goater <legoater@free.fr>
* examples/Makefile.am: fixed make dist issue
2005-12-15 Robert Byrne <robert.byrne@sun.com>
* src/log4c/logging_event.h: only use systime if you have it patch
* src/log4c/appender.c: only use syslog if you have it patch
* src/log4c/config-win32.h: Need to include these files to avoid
timeval undefined issues in logging_event.h
* src/sd/malloc.c: sense of the ifdef HAVA_SBRK was wrong
2005-12-15 Cedric Le Goater <legoater@free.fr>
* Makefile.am, configure.in, examples/Makefile.am,
examples/README, examples/application_1.c,
examples/application_2.c, examples/example_appenders.c,
examples/example_formatters.c, examples/log4crc: example library
contributed by joel schaubert <foxyjoel@gmail.com>
* src/sd/factory.c, src/sd/factory.h, tests/log4c/test_category.c,
src/log4c/category.c, src/log4c/category.h: added
log4c_category_list()
2005-12-13 Cedric Le Goater <legoater@free.fr>
* configure.in: added brk detection
* src/log4c/appender.h, src/log4c/appender_type_stream2.h,
src/log4c/category.h, src/log4c/init.h, src/log4c/layout.h,
src/log4c/logging_event.h, src/log4c/priority.h, src/log4c/rc.h:
added LOG4C_API macro and removed some inline for win32 support
* src/log4c/defs.h, msvc6/Makefile, msvc6/gotest.sh,
msvc6/log4c/version.h, src/log4c/Makefile.am,
src/log4c/config-win32.h: added win32 support from Rob Byrne
* src/log4c/init.c: added loading of layout and appender types
when log4c is not compiled with gcc
* src/sd/Makefile.am, src/sd/sd_xplatform.c:
minor fix in portabiliy layer
* src/log4c/appender_type_mmap.c, src/sd/malloc.c, tests/log4c/bench.c:
fixed unistd.h
* src/log4c/category.c, src/log4c/layout_type_dated.c,
src/log4c/layout_type_dated_r.c, src/log4c/logging_event.c,
src/sd/sd_xplatform.c, src/sd/sd_xplatform.h, src/sd/test.c: added
portability layer to support win32 platform
* src/sd/domnode-xml-scanner.c, src/sd/domnode-xml-scanner.l:
removed useless inlineCedric Le Goater
* src/sd/malloc.c:
added HAVE_CONFIG_H and HAVE_SBRK #ifdefs to ease portability
* src/sd/factory.c: removed useless unistd.h
* src/log4c/appender_type_syslog.c:
use HAVE_SYSLOG_H to protect generation
* src/log4c/Makefile.am, src/log4c/layout_type_basic_r.c,
src/log4c/layout_type_basic_r.h, src/log4c/layout_type_dated_r.c,
src/log4c/layout_type_dated_r.h, tests/log4c/Makefile.am,
tests/log4c/test_layout_r.c: added threadsafe layouts
* src/log4c/category.c, src/log4c/logging_event.h: added a
preallocated buffer to the logging event to be used by layouts in
a multithreaded environment
* src/log4c/Makefile.am, src/log4c/buffer.h:
added a new buffer object to implement threadsafe logging
2005-12-11 Cedric Le Goater <legoater@free.fr>
* doc/Doxyfile.in, src/log4c/rc.c, src/log4c/rc.h: export log4_rc
object and add documentation (light) on log4c configuration
2005-12-06 Cedric Le Goater <legoater@free.fr>
* src/log4c/rc.c, tests/log4c/test_rc.in:
add additivity to configuration file
* src/log4c/appender_type_stream.c: avoid closing stdio streams
* src/log4c/init.c: fixed possible double free() in log4_fini()
* src/log4c/init.c, src/log4c/rc.c, src/log4c/rc.h,
tests/log4c/test_rc.c: modified the rc API to enable some fixes in
log4c cleanup. This breaks internal API.
2005-12-05 Cedric Le Goater <legoater@free.fr>
* bootstrap, config/configure-solaris.patch:
removed old hack to replace native solaris linker with gcc
2005-11-30 Cedric Le Goater <legoater@free.fr>
* doc/Makefile.am, doc/log4cHowto.html, log4c.spec.in:
added log4cHowto.html contribution in documentation
2005-11-08 Robert Byrne <Robert.Byrne@Sun.COM>
* tests/log4c/bench.c: . add bench for the stream2 appender.
. add some command line options to suppress appenders that write
to the screen
* tests/log4c/bench_fwrite.c: fix compile warnings
* tests/log4c/test_category.c: add a comment and print a note on
the known double free of the file pointer (causes that scary "***
glibc detected *** double free or corruption (!prev): 0x09cf16d8
*** Aborted" message.
2005-11-07 Robert Byrne <Robert.Byrne@Sun.COM>
* src/log4c/appender_type_stream2.c:
remove an extraneous initialializer from the stream2 type struct
* src/log4c/Makefile.am, src/log4c/appender_type_stream2.c,
src/log4c/appender_type_stream2.h, tests/log4c/Makefile.am,
tests/log4c/bench_fwrite.c, tests/log4c/test_stream2.c: . stream2
appender. More configurable than the original stream appender.
. remove some compile warnings in bench_fwrite.c
2005-11-04 Robert Byrne <Robert.Byrne@Sun.COM>
* configure.in, tests/log4c/Makefile.am, tests/log4c/bench_fwrite.c:
. utility to compare fwrite() performance and fprintf() performance
2005-11-03 Robert Byrne <Robert.Byrne@Sun.COM>
* README:
. update README with some info on where to find Solaris automake tools
. include some examples of using ./configure options
2005-09-14 Cedric Le Goater <legoater@meiosys.com>
* src/sd/test.c, tests/log4c/appender_test.c, tests/log4c/bench.c,
tests/log4c/layout_test.c, tests/log4c/test_category.c: fixes from
Robert.Byrne@Sun.COM
2005-07-11 Cedric Le Goater <legoater@meiosys.com>
* src/sd/test.c: fixed libtool naming issue
2005-06-07 Cedric Le Goater <legoater@meiosys.com>
* doc/main.doc.in: fixed typo
2005-05-24 Cedric Le Goater <legoater@meiosys.com>
* bootstrap: removed redhat 7.x support
* src/sd/error.h: BugId: 1062842
BugId: 1070029
Removed deprecated string concatenation with __FUNCTION__
* src/sd/hash.c, src/sd/hash.h: removed dead code
* configure.in: minor updates
* src/log4c/category.c: Added alloca support for Solaris cc
* src/sd/list.c: fixed unreached statement
* README, src/sd/Makefile.am, src/sd/domnode-xml-parser.c,
src/sd/domnode-xml-parser.y, src/sd/domnode-xml-scanner.c,
src/sd/domnode-xml-scanner.h, src/sd/domnode-xml-scanner.l: BugId:
1062842
Added lex/yacc source code. It requires flex-2.5.27 and bison-1.35.
* src/log4c/init.c: fixed log4c_init() robustness issues
2005-01-07 Cedric Le Goater <legoater@meiosys.com>
* log4c-config.in: Added support for suse-8
2004-11-17 Cedric Le Goater <legoater@meiosys.com>
* log4c.spec.in: added support for new rpm on sles 9
* doc/Makefile.am: added missing DESTDIR
2004-11-02 Olger Warnier <terranvs>
* macosx/log4c.xcode/project.pbxproj, bootstrap: changed the
bootstrap to work on Mac OS X with xcode 1.5 adapted the xcode
project to work with the bootstrap
2004-10-27 Cedric Le Goater <legoater@meiosys.com>
* macosx/English.lproj/InfoPlist.strings,
macosx/log4c.xcode/project.pbxproj, src/sd/malloc.c,
macosx/Info.plist, macosx/version.plist:
Added mac osx support
2004-08-18 Cedric Le Goater <legoater@rmeiosys.com>
* log4c.spec.in: enable documentation creation
2004-08-16 Cedric Le Goater <legoater@meiosys.com>
* doc/main.doc.in: updated supported plateform
* configure.in: increase current revision, log4c-1.0.12
* log4c.m4: added missing include
* tests/log4c/test_category.c: fixed compulation problems with
gcc-3.4 Patch by Olaf Freyer <aaron@cs.tu-berlin.de>
(http://bugs.gentoo.org/show_bug.cgi?id=60061)
* doc/Makefile.am: use $(DESTDIR) when installing
* configure.in: fixed condition on documentation creation
2003-09-13 Cedric Le Goater <legoater@meiosys.com>
* src/log4c/appender.c, src/log4c/appender_type_mmap.c,
src/log4c/appender_type_stream.c,
src/log4c/appender_type_syslog.c, src/log4c/category.c,
src/log4c/layout.c, src/log4c/layout_type_basic.c,
src/log4c/layout_type_dated.c: BugId: 764485
Removed labels within structs which is a GNU C extension.
* src/sd/test.c: BugId: 769637
Fixed getopt return value for AIX
2003-09-12 Cedric Le Goater <legoater@meiosys.com>
* src/sd/test.h, tests/log4c/appender_test.c,
tests/log4c/layout_test.c, tests/log4c/test_category.c,
tests/log4c/test_rc.c, src/log4c.h, src/log4c/appender.c,
src/log4c/appender.h, src/log4c/appender_type_mmap.c,
src/log4c/appender_type_mmap.h, src/log4c/appender_type_stream.c,
src/log4c/appender_type_stream.h,
src/log4c/appender_type_syslog.c,
src/log4c/appender_type_syslog.h, src/log4c/category.c,
src/log4c/category.h, src/log4c/defs.h, src/log4c/init.c,
src/log4c/init.h, src/log4c/layout.c, src/log4c/layout.h,
src/log4c/layout_type_basic.c, src/log4c/layout_type_basic.h,
src/log4c/layout_type_dated.c, src/log4c/layout_type_dated.h,
src/log4c/location_info.h, src/log4c/logging_event.c,
src/log4c/logging_event.h, src/log4c/priority.c,
src/log4c/priority.h, src/log4c/rc.c, src/log4c/rc.h,
src/log4c/version.c, src/log4c/version.h.in, src/sd/defs.h,
src/sd/domnode-xml.c, src/sd/domnode-xml.h, src/sd/domnode.c,
src/sd/domnode.h, src/sd/error.h, src/sd/factory.c,
src/sd/factory.h, src/sd/hash.c, src/sd/hash.h, src/sd/list.c,
src/sd/list.h, src/sd/malloc.h, src/sd/sprintf.c,
src/sd/sprintf.h, src/sd/stack.h, src/sd/test.c, ChangeLog,
README, bootstrap: cleanup
2003-04-02 Cedric Le Goater <legoater@meiosys.com>
* src/sd/test.h, tests/log4c/test_category.ref, src/sd/test.c,
src/sd/domnode.h, src/sd/stack.h, src/sd/domnode-xml.c,
src/sd/domnode-xml.h, src/sd/domnode.c,
src/sd/domnode-xml-scanner.h, src/sd/domnode-xml-parser.h,
src/sd/domnode-xml-scanner.c, src/sd/domnode-xml-parser.c,
src/sd/Makefile.am, src/log4c/category.c, src/log4c/Makefile.am,
config/configure-solaris.patch, doc/main.doc.in, log4c.spec.in,
configure.in, README, ChangeLog: removed expat parser
2003-04-02 Cedric Le goater <legoater@meiosys.com>
* Changelog: log4c-1.0.11
* configure.in, Makefile.am, ...: removed expat
* category.c: replaced bsd rindex() by strrchr()
* sd/ : new library with local XML parser.
* copyright cleanups
2002-11-22 Cedric Le goater <legoater@meiosys.com>
* Changelog: log4c-1.0.10
* rc.h: remove useless include
2002-11-21 Cedric Le goater <legoater@meiosys.com>
* Changelog: log4c-1.0.9
* category.c (__log4c_category_vlog): did some optimizations
* init.h: exported resource configuration API rc.h
* sd: synchronized from sd dev tree
2002-08-20 Cedric Le goater <legoater@meiosys.com>
* Changelog: log4c-1.0.8
* configure.in: upgraded to 2.52
* sd: synchronized from sd dev tree
2002-05-15 Cedric Le goater <legoater@cimai.com>
* Changelog: log4c-1.0.7
* init.c, init.h: constructors and destructors routines are now
exported
* category.c (call_appenders): reversed change made in 1.0.4
2002-05-02 Cedric Le goater <legoater@cimai.com>
* Changelog: log4c-1.0.6
* rc.c: rewrote all configuration system with a DOM like interface
* category.c: added dynamic/stack buffer allocation
* appender.c: added type configuration
* layout.c: added type configuration
2002-04-17 Gregory Kurz <gkurz@cimai.com>
* Changelog: log4c-1.0.5
* init.c (__log4c_fini): cleanup flag in the destructor
* rc.c (start_element): configuration of the cleanup flag, attributes
of the <log4c> element are parsed (bug fix)
2002-04-10 Cedric Le goater <legoater@cimai.com>
* Changelog: log4c-1.0.4
* appender_stream.c (stream_open): switched to unbuffered mode
* category.c (call_appenders): check current category priority
before appending events
2002-02-06 Cedric Le goater <legoater@cimai.com>
* Changelog: log4c-1.0.3
* solaris 8 modifications
2002-01-10 Cedric Le goater <legoater@cimai.com>
* Changelog: log4c-1.0.2
* type names changes
2002-01-07 Cedric Le goater <legoater@cimai.com>
* Changelog: log4c-1.0.1
* osf4.0f modifications
2001-12-20 Cedric Le goater <legoater@cimai.com>
* Changelog: log4c-1.0.0
* initial revision
|