diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-03 11:54:39 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-12-03 11:54:39 +0000 |
commit | a078fac8411a40e5ef761077343bc63a4e217e32 (patch) | |
tree | 2477ba84f459fa56b2f95e0b68f5027d4cc58e14 | |
parent | 315145d0434ec3a028aed2d6de479c42886bd0f1 (diff) | |
download | rsyslog-a078fac8411a40e5ef761077343bc63a4e217e32.tar.gz rsyslog-a078fac8411a40e5ef761077343bc63a4e217e32.tar.xz rsyslog-a078fac8411a40e5ef761077343bc63a4e217e32.zip |
library defintion was missing in build line - thx to Michael Biebl for fix
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index a7825447..c49deeeb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -63,7 +63,7 @@ rsyslogd_SOURCES = \ gss-misc.h rsyslogd_CPPFLAGS = -D_PATH_MODDIR=\"$(pkglibdir)/\" $(pthreads_cflags) -rsyslogd_LDADD = $(zlib_libs) $(pthreads_libs) -ldl +rsyslogd_LDADD = $(zlib_libs) $(pthreads_libs) $(gss_libs) -ldl rsyslogd_LDFLAGS = -export-dynamic man_MANS = rfc3195d.8 rklogd.8 rsyslogd.8 rsyslog.conf.5 |