summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-05-14 18:52:53 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-05-14 18:52:53 +0200
commitce0569ec3ecb2116fb41006ca57498eccf1de43c (patch)
tree1ffc7254a8daca0d657528e970fc20f674e21f8f
parentd2b63414ef92cde8a3107b8d17b74b1518775df6 (diff)
downloadrsyslog-ce0569ec3ecb2116fb41006ca57498eccf1de43c.tar.gz
rsyslog-ce0569ec3ecb2116fb41006ca57498eccf1de43c.tar.xz
rsyslog-ce0569ec3ecb2116fb41006ca57498eccf1de43c.zip
ugfix: lmtcpclt, lmtcpsrv and lmgssutil did all link to the static runtime library,
resulting in a large size increase (and potential "interesting" effects). Thanks to Michael Biebel for reporting the size issue.
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.am6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 637f7b61..905c2594 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
---------------------------------------------------------------------------
+Version 3.19.3 (rgerhards), 2008-05-??
+- bugfix: lmtcpclt, lmtcpsrv and lmgssutil did all link to the static
+ runtime library, resulting in a large size increase (and potential
+ "interesting" effects). Thanks to Michael Biebel for reporting the size
+ issue.
+---------------------------------------------------------------------------
Version 3.19.2 (rgerhards), 2008-05-14
- fixed potential segfault due to invalid call to cfsysline
thanks to varmojfekoj for the patch
diff --git a/Makefile.am b/Makefile.am
index b16e5beb..61edc634 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -14,7 +14,7 @@ lmtcpsrv_la_SOURCES = \
tcpsrv.c \
tcpsrv.h
lmtcpsrv_la_CPPFLAGS = $(pthreads_cflags) $(rsrt_cflags)
-lmtcpsrv_la_LDFLAGS = -module -avoid-version $(rsrt_libs)
+lmtcpsrv_la_LDFLAGS = -module -avoid-version
lmtcpsrv_la_LIBADD =
#
@@ -24,7 +24,7 @@ lmtcpclt_la_SOURCES = \
tcpclt.c \
tcpclt.h
lmtcpclt_la_CPPFLAGS = $(pthreads_cflags) $(rsrt_cflags)
-lmtcpclt_la_LDFLAGS = -module -avoid-version $(rsrt_libs)
+lmtcpclt_la_LDFLAGS = -module -avoid-version
lmtcpclt_la_LIBADD =
endif # if ENABLE_INET
@@ -36,7 +36,7 @@ if ENABLE_GSSAPI
pkglib_LTLIBRARIES += lmgssutil.la
lmgssutil_la_SOURCES = gss-misc.c gss-misc.h
lmgssutil_la_CPPFLAGS = $(pthreads_cflags) $(rsrt_cflags)
-lmgssutil_la_LDFLAGS = -module -avoid-version $(rsrt_libs)
+lmgssutil_la_LDFLAGS = -module -avoid-version
lmgssutil_la_LIBADD = $(gss_libs)
endif