thanks scott, i saw the errors that was my fault for being tired and a little lazy that night made adjustments to file now i get no errors when doing the syslog-ng --syntax-only<br><br>but I am not getting any logging of the normal items like login attempt and failures and such<br>

<br>the only log i got was below looks like its just the stats and this was in messages and debug not the main log<br><br>Jun  1 11:48:05 mcm-001 syslog-ng[120]: syslog-ng starting up; version=&#39;3.0.8&#39;<br>Jun  1 11:58:06 mcm-001 syslog-ng[120]: Log statistics; processed=&#39;destination(user)=0&#39;, processed=&#39;destination(mailwarn)=0&#39;, processed=&#39;destination(uucp)=0&#39;, processed=&#39;destination(lpr)=0&#39;, processed=&#39;destination(daemon)=0&#39;, processed=&#39;destination(debug)=1&#39;, processed=&#39;center(received)=0&#39;, processed=&#39;destination(mailerr)=0&#39;, processed=&#39;destination(d_syslog)=1&#39;, processed=&#39;destination(kern)=0&#39;, processed=&#39;source(src)=1&#39;, processed=&#39;destination(mailinfo)=0&#39;, processed=&#39;destination(newsnotice)=0&#39;, processed=&#39;destination(newserr)=0&#39;, processed=&#39;destination(messages)=1&#39;, processed=&#39;destination(authlog)=0&#39;, processed=&#39;destination(ppp)=0&#39;, processed=&#39;center(queued)=0&#39;, processed=&#39;destination(mail)=0&#39;, processed=&#39;destination(newscrit)=0&#39;, processed=&#39;destination(cron)=0&#39;, processed=&#39;src.internal(src#1)=1&#39;, stamp=&#39;src.internal(src#1)=1306943285&#39;, processed=&#39;destination(console)=0&#39;, processed=&#39;destination(console_all)=1&#39;<br>

<br>here is the revised latest config<br><br>@version: 3.0<br>#<br># Syslog-ng example configuration for for Debian GNU/Linux<br>#<br># Copyright (c) 1999 anonymous<br># Copyright (c) 1999 Balazs Scheidler<br># $Id: syslog-ng.conf.sample,v 1.3 2003/05/20 08:57:27 asd Exp $<br>

#<br># Syslog-ng configuration file, compatible with default Debian syslogd<br># installation. <br>#<br><br><br># replaced with Line below fxs options { long_hostnames(off); sync(0); };<br>options { long_hostnames(off); flush_lines(0); };<br>

<br>source src { unix-stream(&quot;/var/run/syslog&quot;); internal(); };<br>source net { udp(); };<br><br>destination authlog { file(&quot;/var/log/auth.log&quot;); };<br># replaced with Line below fxs destination syslog { file(&quot;/var/log/syslog&quot;); };<br>

destination d_syslog { file(&quot;/var/log/syslog.log&quot;); };<br>#destination d_syslog { file(&quot;/var/log/system.log&quot;); };<br>destination cron { file(&quot;/var/log/cron.log&quot;); };<br>destination daemon { file(&quot;/var/log/daemon.log&quot;); };<br>

destination kern { file(&quot;/var/log/kern.log&quot;); };<br>destination lpr { file(&quot;/var/log/lpr.log&quot;); };<br>destination user { file(&quot;/var/log/user.log&quot;); };<br>destination uucp { file(&quot;/var/log/uucp.log&quot;); };<br>

destination ppp { file(&quot;/var/log/ppp.log&quot;); };<br>destination mail { file(&quot;/var/log/mail.log&quot;); };<br><br>destination mailinfo { file(&quot;/var/log/<a href="http://mail.info">mail.info</a>&quot;); };<br>

destination mailwarn { file(&quot;/var/log/mail.warn&quot;); };<br>destination mailerr { file(&quot;/var/log/mail.err&quot;); };<br><br>destination newscrit { file(&quot;/var/log/news/news.crit&quot;); };<br>destination newserr { file(&quot;/var/log/news/news.err&quot;); };<br>

destination newsnotice { file(&quot;/var/log/news/news.notice&quot;); };<br><br>destination debug { file(&quot;/var/log/debug&quot;); };<br>destination messages { file(&quot;/var/log/messages&quot;); };<br>destination console { usertty(&quot;root&quot;); };<br>

#destination console_all { file(&quot;/dev/tty12&quot;); };<br>destination console_all { file(&quot;/dev/console&quot;); };<br>#destination loghost { udp(&quot;loghost&quot; port(999)); };<br><br><br>destination xconsole { pipe(&quot;/dev/xconsole&quot;); };<br>

<br>filter f_auth { facility(auth); };<br>filter f_authpriv { facility(auth, authpriv); };<br>#Changed it to make it filter the messages from the localO fxs  filter f_syslog { not facility(authpriv, mail); };<br>filter f_syslog { facility(local0); };<br>

filter f_cron { facility(cron); };<br>filter f_daemon { facility(daemon); };<br>filter f_kern { facility(kern); };<br>filter f_lpr { facility(lpr); };<br>filter f_mail { facility(mail); };<br>filter f_user { facility(user); };<br>

filter f_uucp { facility(cron); };<br>filter f_ppp { facility(local2); };<br>filter f_news { facility(news); };<br>filter f_debug { not facility(auth, authpriv, news, mail); };<br>filter f_messages { level(info..warn) and not facility(auth, authpriv, mail, news); };<br>

filter f_emergency { level(emerg); };<br><br>filter f_info { level(info); };<br>filter f_notice { level(notice); };<br>filter f_warn { level(warn); };<br>filter f_crit { level(crit); };<br>filter f_err { level(err); };<br>

<br>log { source(src); filter(f_authpriv); destination(authlog); };<br># replaced with Line below fxs log { source(src); filter(f_syslog); destination(syslog); };<br>log { source(src); filter(f_syslog); destination(d_syslog); };<br>

log { source(src); filter(f_cron); destination(cron); };<br>log { source(src); filter(f_daemon); destination(daemon); };<br>log { source(src); filter(f_kern); destination(kern); };<br>log { source(src); filter(f_lpr); destination(lpr); };<br>

log { source(src); filter(f_mail); destination(mail); };<br>log { source(src); filter(f_user); destination(user); };<br>log { source(src); filter(f_uucp); destination(uucp); };<br>log { source(src); filter(f_mail); filter(f_info); destination(mailinfo); };<br>

log { source(src); filter(f_mail); filter(f_warn); destination(mailwarn); };<br>log { source(src); filter(f_mail); filter(f_err); destination(mailerr); };<br>log { source(src); filter(f_news); filter(f_crit); destination(newscrit); };<br>

log { source(src); filter(f_news); filter(f_err); destination(newserr); };<br>log { source(src); filter(f_news); filter(f_notice); destination(newsnotice); };<br>log { source(src); filter(f_debug); destination(debug); };<br>

log { source(src); filter(f_messages); destination(messages); };<br>log { source(src); filter(f_emergency); destination(console); };<br>log { source(src); filter(f_ppp); destination(ppp); };<br>log { source(src); destination(console_all); };<br>

<br><br><br><br><br>
<br><br><div class="gmail_quote">On Wed, Jun 1, 2011 at 6:00 AM,  <span dir="ltr">&lt;<a href="mailto:syslog-ng-request@lists.balabit.hu">syslog-ng-request@lists.balabit.hu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Send syslog-ng mailing list submissions to<br>
        <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="https://lists.balabit.hu/mailman/listinfo/syslog-ng" target="_blank">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:syslog-ng-request@lists.balabit.hu">syslog-ng-request@lists.balabit.hu</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:syslog-ng-owner@lists.balabit.hu">syslog-ng-owner@lists.balabit.hu</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of syslog-ng digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re:  syslog-ng Digest, Vol 73, Issue 37 (Frank Scalzo)<br>
   2.  [Bug 122] [3.2.4]: mixed linking broken for<br>
      libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
   3.  [Bug 122] [3.2.4]: mixed linking broken for<br>
      libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
   4. Re:  syslog-ng Digest, Vol 73, Issue 37 (Scott Rochford)<br>
   5.  [Bug 122] [3.2.4]: mixed linking broken for<br>
      libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
   6.  [Bug 122] [3.2.4]: mixed linking broken for<br>
      libsyslog-ng.so.* (<a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a>)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Tue, 31 May 2011 08:51:17 -0400<br>
From: Frank Scalzo &lt;<a href="mailto:fscalzo@gmail.com">fscalzo@gmail.com</a>&gt;<br>
Subject: Re: [syslog-ng] syslog-ng Digest, Vol 73, Issue 37<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: &lt;BANLkTikpWETLmnTSzSDL_4Cx4p0=<a href="mailto:gPT%2B6w@mail.gmail.com">gPT+6w@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;windows-1252&quot;<br>
<br>
 Gergely,<br>
<br>
sorry after fighting with this for hours i forgot to upload.<br>
<br>
@version: 3.0<br>
#<br>
# Syslog-ng example configuration for for Debian GNU/Linux<br>
#<br>
# Copyright (c) 1999 anonymous<br>
# Copyright (c) 1999 Balazs Scheidler<br>
# $Id: syslog-ng.conf.sample,v 1.3 2003/05/20 08:57:27 asd Exp $<br>
#<br>
# Syslog-ng configuration file, compatible with default Debian syslogd<br>
# installation.<br>
#<br>
<br>
<br>
# replaced with Line below fxs options { long_hostnames(off); sync(0); };<br>
options { long_hostnames(off); flush_lines(0); };<br>
<br>
source src { unix-stream(&quot;/var/run/syslog&quot;); internal(); };<br>
source net { udp(); };<br>
<br>
destination authlog { file(&quot;/var/log/auth.log&quot;); };<br>
# replaced with Line below fxs destination syslog { file(&quot;/var/log/syslog&quot;);<br>
};<br>
destination d_syslog { file(?/var/log/system.log?); };<br>
destination cron { file(&quot;/var/log/cron.log&quot;); };<br>
destination daemon { file(&quot;/var/log/daemon.log&quot;); };<br>
destination kern { file(&quot;/var/log/kern.log&quot;); };<br>
destination lpr { file(&quot;/var/log/lpr.log&quot;); };<br>
destination user { file(&quot;/var/log/user.log&quot;); };<br>
destination uucp { file(&quot;/var/log/uucp.log&quot;); };<br>
destination ppp { file(&quot;/var/log/ppp.log&quot;); };<br>
destination mail { file(&quot;/var/log/mail.log&quot;); };<br>
<br>
destination mailinfo { file(&quot;/var/log/<a href="http://mail.info" target="_blank">mail.info</a>&quot;); };<br>
destination mailwarn { file(&quot;/var/log/mail.warn&quot;); };<br>
destination mailerr { file(&quot;/var/log/mail.err&quot;); };<br>
<br>
destination newscrit { file(&quot;/var/log/news/news.crit&quot;); };<br>
destination newserr { file(&quot;/var/log/news/news.err&quot;); };<br>
destination newsnotice { file(&quot;/var/log/news/news.notice&quot;); };<br>
<br>
destination debug { file(&quot;/var/log/debug&quot;); };<br>
destination messages { file(&quot;/var/log/messages&quot;); };<br>
destination console { usertty(&quot;root&quot;); };<br>
#destination console_all { file(&quot;/dev/tty12&quot;); };<br>
destination console_all { file(?/dev/console?); };<br>
#destination loghost { udp(&quot;loghost&quot; port(999)); };<br>
<br>
<br>
destination xconsole { pipe(&quot;/dev/xconsole&quot;); };<br>
<br>
filter f_auth { facility(auth); };<br>
filter f_authpriv { facility(auth, authpriv); };<br>
#Changed it to make it filter the messages from the localO fxs filter<br>
f_syslog { not facility(authpriv, mail); };<br>
filter f_syslog { facility(local0); };<br>
filter f_cron { facility(cron); };<br>
filter f_daemon { facility(daemon); };<br>
filter f_kern { facility(kern); };<br>
filter f_lpr { facility(lpr); };<br>
filter f_mail { facility(mail); };<br>
filter f_user { facility(user); };<br>
filter f_uucp { facility(cron); };<br>
filter f_ppp { facility(local2); };<br>
filter f_news { facility(news); };<br>
filter f_debug { not facility(auth, authpriv, news, mail); };<br>
filter f_messages { level(info..warn)<br>
    and not facility(auth, authpriv, mail, news); };<br>
filter f_emergency { level(emerg); };<br>
<br>
filter f_info { level(info); };<br>
filter f_notice { level(notice); };<br>
filter f_warn { level(warn); };<br>
filter f_crit { level(crit); };<br>
filter f_err { level(err); };<br>
<br>
log { source(src); filter(f_authpriv); destination(authlog); };<br>
# replaced with Line below fxs log { source(src); filter(f_syslog);<br>
destination(syslog); };<br>
log { source(src); filter(f_syslog); destination(d_syslog); };<br>
log { source(src); filter(f_cron); destination(cron); };<br>
log { source(src); filter(f_daemon); destination(daemon); };<br>
log { source(src); filter(f_kern); destination(kern); };<br>
log { source(src); filter(f_lpr); destination(lpr); };<br>
log { source(src); filter(f_mail); destination(mail); };<br>
log { source(src); filter(f_user); destination(user); };<br>
log { source(src); filter(f_uucp); destination(uucp); };<br>
log { source(src); filter(f_mail); filter(f_info); destination(mailinfo); };<br>
log { source(src); filter(f_mail); filter(f_warn); destination(mailwarn); };<br>
log { source(src); filter(f_mail); filter(f_err); destination(mailerr); };<br>
log { source(src); filter(f_news); filter(f_crit); destination(newscrit); };<br>
log { source(src); filter(f_news); filter(f_err); destination(newserr); };<br>
log { source(src); filter(f_news); filter(f_notice);<br>
destination(newsnotice); };<br>
log { source(src); filter(f_debug); destination(debug); };<br>
log { source(src); filter(f_messages); destination(messages); };<br>
log { source(src); filter(f_emergency); destination(console); };<br>
log { source(src); filter(f_ppp); destination(ppp); };<br>
log { source(src); destination(console_all); };<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110531/6b64dd89/attachment.html" target="_blank">http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110531/6b64dd89/attachment.html</a><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Tue, 31 May 2011 16:22:25 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
        libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: &lt;<a href="mailto:20110531142225.31EB311E053@lists.balabit.hu">20110531142225.31EB311E053@lists.balabit.hu</a>&gt;<br>
Content-Type: text/plain; charset=&quot;UTF-8&quot;<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #1 from Balazs Scheidler &lt;<a href="mailto:bazsi@balabit.hu">bazsi@balabit.hu</a>&gt;  2011-05-31 16:22:24 ---<br>
Can you show me your configure command line?<br>
<br>
In dynamic mode it links against those libraries, in mixed mode it doesn&#39;t, as it fetches those symbols through the main program, which links these<br>
dependencies statically.<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Tue, 31 May 2011 18:01:32 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
        libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: &lt;<a href="mailto:20110531160132.F091739DA75@lists.balabit.hu">20110531160132.F091739DA75@lists.balabit.hu</a>&gt;<br>
Content-Type: text/plain; charset=&quot;UTF-8&quot;<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #2 from Arkadiusz Mi?kiewicz &lt;<a href="mailto:arekm@maven.pl">arekm@maven.pl</a>&gt;  2011-05-31 18:01:33 ---<br>
I always kept forgetting about these weird linking rules used in syslog-ng<br>
(which break all the time with --as-needed or --no-copy-dt-needed-entries linker flags).<br>
<br>
Build log (including configure options):<br>
<br>
<a href="ftp://buildlogs.pld-linux.org/th/x86_64/FAIL/syslog-ng,9a44d5db-398c-4559-b35c-63d55e241838.bz2" target="_blank">ftp://buildlogs.pld-linux.org/th/x86_64/FAIL/syslog-ng,9a44d5db-398c-4559-b35c-63d55e241838.bz2</a><br>


<br>
BUT it is with a patch:<br>
<br>
<a href="http://cvs.pld-linux.org/cgi-bin/cvsweb/packages/syslog-ng/syslog-ng-link.patch?rev=1.12" target="_blank">http://cvs.pld-linux.org/cgi-bin/cvsweb/packages/syslog-ng/syslog-ng-link.patch?rev=1.12</a><br>
<br>
which fixes linking but links with these dynamicly (since libtool is used for that linking and thus -Bstatic is ignored)<br>
thus breaking &quot;mixed linking&quot; idea.<br>
<br>
So maybe the solution is to fail at configure time when --as-needed or --no-copy-dt-needed-entries linker flags are used?<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Wed, 1 Jun 2011 10:09:06 +1100<br>
From: Scott Rochford &lt;<a href="mailto:scott.rochford@amadeus.com">scott.rochford@amadeus.com</a>&gt;<br>
Subject: Re: [syslog-ng] syslog-ng Digest, Vol 73, Issue 37<br>
To: Syslog-ng users&#39; and developers&#39; mailing list<br>
        &lt;<a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:OF5ACCBA5A.7E8675AE-ONCA2578A1.007EBEF5-CA2578A1.007F2D1B@amadeus.com">OF5ACCBA5A.7E8675AE-ONCA2578A1.007EBEF5-CA2578A1.007F2D1B@amadeus.com</a>&gt;<br>
<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
Hi Frank,<br>
<br>
Someone must have used a so-called &quot;smart&quot; editor to edit this file, since<br>
it seems to have used fancy quotes on the console line.<br>
<br>
#destination console_all { file(&quot;/dev/tty12&quot;); };<br>
destination console_all { file(?/dev/console?); };<br>
#destination loghost { udp(&quot;loghost&quot; port(999)); };<br>
<br>
Notice how they are different from those on the line above?  Word<br>
processors often replace quotes with matching pairs like that<br>
automatically; only plain text editors should be used to edit config files<br>
like this.<br>
<br>
Check for this kind of thing with a hex dumper or &#39;cat -vet&#39;:<br>
<br>
$ cat frank<br>
#destination console_all { file(&quot;/dev/tty12&quot;); };<br>
destination console_all { file(&quot;/dev/console&quot;); };<br>
#destination loghost { udp(&quot;loghost&quot; port(999)); };<br>
<br>
$ cat -vet frank<br>
#destination console_all { file(&quot;/dev/tty12&quot;); };$<br>
destination console_all { file(M-bM-^@M-^\/dev/consoleM-bM-^@M-^]); };$<br>
#destination loghost { udp(&quot;loghost&quot; port(999)); };$<br>
<br>
Scott<br>
<br>
<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110601/80342c8a/attachment-0001.htm" target="_blank">http://lists.balabit.hu/pipermail/syslog-ng/attachments/20110601/80342c8a/attachment-0001.htm</a><br>


<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Wed,  1 Jun 2011 08:19:29 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
        libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: &lt;<a href="mailto:20110601061929.CC96A39D7DE@lists.balabit.hu">20110601061929.CC96A39D7DE@lists.balabit.hu</a>&gt;<br>
Content-Type: text/plain; charset=&quot;UTF-8&quot;<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #3 from Balazs Scheidler &lt;<a href="mailto:bazsi@balabit.hu">bazsi@balabit.hu</a>&gt;  2011-06-01 08:19:29 ---<br>
the patch is wrong since it produces _two_ copies of statically compiled libraries into the final executable.<br>
<br>
one in the syslog-ng library, the other in the syslog-ng binary. the only reason it might work as the main<br>
program does very little with glib directly.<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Wed,  1 Jun 2011 08:24:30 +0200 (CEST)<br>
From: <a href="mailto:bugzilla@bugzilla.balabit.com">bugzilla@bugzilla.balabit.com</a><br>
Subject: [syslog-ng] [Bug 122] [3.2.4]: mixed linking broken for<br>
        libsyslog-ng.so.*<br>
To: <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
Message-ID: &lt;<a href="mailto:20110601062431.0252E11E05F@lists.balabit.hu">20110601062431.0252E11E05F@lists.balabit.hu</a>&gt;<br>
Content-Type: text/plain; charset=&quot;UTF-8&quot;<br>
<br>
<a href="https://bugzilla.balabit.com/show_bug.cgi?id=122" target="_blank">https://bugzilla.balabit.com/show_bug.cgi?id=122</a><br>
<br>
<br>
<br>
<br>
<br>
--- Comment #4 from Arkadiusz Mi?kiewicz &lt;<a href="mailto:arekm@maven.pl">arekm@maven.pl</a>&gt;  2011-06-01 08:24:31 ---<br>
That&#39;s why I wrote &quot;thus breaking &quot;mixed linking&quot; idea.&quot;.<br>
<br>
<br>
I ended up filtering out --as-needed and --no-copy-dt-needed-entries linker flags.<br>
<br>
<br>
--<br>
Configure bugmail: <a href="https://bugzilla.balabit.com/userprefs.cgi?tab=email" target="_blank">https://bugzilla.balabit.com/userprefs.cgi?tab=email</a><br>
------- You are receiving this mail because: -------<br>
You are watching all bug changes.<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
syslog-ng maillist  -  <a href="mailto:syslog-ng@lists.balabit.hu">syslog-ng@lists.balabit.hu</a><br>
<a href="https://lists.balabit.hu/mailman/listinfo/syslog-ng" target="_blank">https://lists.balabit.hu/mailman/listinfo/syslog-ng</a><br>
<br>
<br>
End of syslog-ng Digest, Vol 74, Issue 1<br>
****************************************<br>
</blockquote></div><br>