<p dir="ltr">Yes it explains things, basically renaming from .o to .so. which ok makes sense in itself, it just might be confusing for other users since all other modules are still .o. </p>
<p dir="ltr">Dan</p>
<div class="gmail_quote">On Apr 21, 2014 12:19 PM, "Anton Löfgren" <<a href="mailto:alofgren@op5.com">alofgren@op5.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 21 Apr 2014 18:22, "Daniel Wittenberg" <<a href="mailto:dwittenberg2008@gmail.com">dwittenberg2008@gmail.com</a>> wrote:<br>
><br>
> So I've been working on the new Fedora builds, and I saw that livestatus.o doesn't get built anymore, and looking at this commit:<br>
><br>
> <a href="https://github.com/naemon/naemon-livestatus/commit/a44772c48947e8314251f7a90f456054c6bc00e5#diff-480477e89f9b6ddafb30c4383dcdd705" target="_blank">https://github.com/naemon/naemon-livestatus/commit/a44772c48947e8314251f7a90f456054c6bc00e5#diff-480477e89f9b6ddafb30c4383dcdd705</a><br>

><br>
> It appears to be on purpose, so I guess I'm curious what the plan is with this and how do we get it fixed so we can move forward with the builds and getting this included in Fedora, I'm also assuming this is breaking our normal builds too.<br>

<br>
<br>
Hey Dan!<br>
<br>
It is intentional. A few of us discussed this at some length last week<br>
over at #naemon-devel. I would think (or hope, rather) that Fedora<br>
prefers objects to be correctly named, either way.<br>
<br>
The reason for the build breaking is not that the suffix has changed,<br>
however. The patchset you linked adds a new dependency in form of<br>
libicu which allows us to do filtering with unicode-enabled regular<br>
expressions. And there, as they say, is your problem:<br>
<br>
(<a href="https://travis-ci.org/naemon/naemon/builds/23435298" target="_blank">https://travis-ci.org/naemon/naemon/builds/23435298</a>)<br>
checking for LIBICU... no<br>
<br>
checking for LIBICU... no<br>
<br>
configure: WARNING: no pc file found for libicu; then :<br>
<br>
<snip><br>
<br>
g++ -DHAVE_CONFIG_H -I. -I..<br>
-I/home/travis/build/naemon/naemon/naemon-livestatus/../naemon-core<br>
-g -O2 -MT CustomVarsColumn.o -MD -MP -MF .deps/CustomVarsColumn.Tpo<br>
-c -o CustomVarsColumn.o CustomVarsColumn.cc<br>
<br>
In file included from CustomVarsColumn.cc:28:0:<br>
<br>
CustomVarsFilter.h:32:27: fatal error: unicode/regex.h: No such file<br>
or directory<br>
<br>
<br>
Just adding the correct deps (libicu) to the spec should set things<br>
straight. If it doesn't, please let me know and I'll be happy to help<br>
out.<br>
<br>
By the way, without having had a look, if we are shipping a default<br>
config containing a "broker_module=<path>/livestatus.o" for naemon, we<br>
might want to add a %post that adjusts that path for upgraded system<br>
to point at the new livestatus module name. Either that, or add a<br>
symlink. Though I'm not personally too fond of the latter approach.<br>
<br>
As a small digression, I think this is another reason why keeping the<br>
spec together with the package (naemon-livestatus in this case) is a<br>
good idea. At least for me, it would've increased the likelihood of me<br>
adding the dependencies to the spec, since not doing so would likely<br>
have caused the build to bomb (directly, instead of indirectly). Just<br>
saying.<br>
<br>
Hope that helps you get things sorted out. And again, don't hesitate<br>
to contact me if I can help.<br>
<br>
/Anton<br>
</blockquote></div>