Skip to content

Commit 040dacd

Browse files
author
wilx
committed
Merge revisions 1001-1174 from 1.1 branch.
1 parent 64fe2aa commit 040dacd

File tree

120 files changed

+13449
-2229
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+13449
-2229
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ set (log4cplus_sources
7777
src/logger.cxx
7878
src/loggerimpl.cxx
7979
src/loggingevent.cxx
80+
src/loggingmacros.cxx
8081
src/loglevel.cxx
8182
src/loglog.cxx
8283
src/logloguser.cxx

Makefile.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
5151
$(top_srcdir)/m4/acx_pthread.m4 \
5252
$(top_srcdir)/m4/ax_declspec.m4 \
5353
$(top_srcdir)/m4/ax_tls_support.m4 \
54-
$(top_srcdir)/m4/ax__sync.m4 $(top_srcdir)/configure.in
54+
$(top_srcdir)/m4/ax__sync.m4 \
55+
$(top_srcdir)/m4/ax_macro_va_args.m4 \
56+
$(top_srcdir)/m4/ax_macro_function.m4 \
57+
$(top_srcdir)/configure.in
5558
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
5659
$(ACLOCAL_M4)
5760
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
@@ -126,6 +129,8 @@ LIBTOOL = @LIBTOOL@
126129
LIPO = @LIPO@
127130
LN_S = @LN_S@
128131
LOG4CPLUS_NDEBUG = @LOG4CPLUS_NDEBUG@
132+
LOG4CPLUS_PROFILING_CXXFLAGS = @LOG4CPLUS_PROFILING_CXXFLAGS@
133+
LOG4CPLUS_PROFILING_LDFLAGS = @LOG4CPLUS_PROFILING_LDFLAGS@
129134
LTLIBOBJS = @LTLIBOBJS@
130135
LT_VERSION = @LT_VERSION@
131136
MAKEINFO = @MAKEINFO@

acinclude.m4

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ m4_include([m4/acx_pthread.m4])
77
m4_include([m4/ax_declspec.m4])
88
m4_include([m4/ax_tls_support.m4])
99
m4_include([m4/ax__sync.m4])
10+
m4_include([m4/ax_macro_va_args.m4])
11+
m4_include([m4/ax_macro_function.m4])

0 commit comments

Comments
 (0)