diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-14 18:52:53 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-14 18:52:53 +0200 |
commit | ce0569ec3ecb2116fb41006ca57498eccf1de43c (patch) | |
tree | 1ffc7254a8daca0d657528e970fc20f674e21f8f /Makefile.am | |
parent | d2b63414ef92cde8a3107b8d17b74b1518775df6 (diff) | |
download | rsyslog-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.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
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 |