public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* collectd 5.7.2 desperately misses 'automake 1.14' ;-)
@ 2017-09-24 14:17 Matthias Fischer
  2017-09-24 18:32 ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Matthias Fischer @ 2017-09-24 14:17 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 591 bytes --]

Hi,

I'm trying to build 'collectd 5.7.2' for some testing, but it always
fails with the following warning:

...
 make[2]: Entering directory '/usr/src/collectd-5.7.2/src'

cd .. && /bin/sh /usr/src/collectd-5.7.2/libltdl/config/missing
automake-1.14 --foreign src/Makefile

/usr/src/collectd-5.7.2/libltdl/config/missing: line 81: automake-1.14:
command not found

WARNING: 'automake-1.14' is missing on your system.
...

This is right, because current 'next' uses 'automake 1.15'. I tested
with 1.15.1, tried several lfs-changes, but still no luck.

Does anyone got a tip?

Best,
Matthias

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: collectd 5.7.2 desperately misses 'automake 1.14' ;-)
  2017-09-24 14:17 collectd 5.7.2 desperately misses 'automake 1.14' ;-) Matthias Fischer
@ 2017-09-24 18:32 ` Michael Tremer
  2017-09-24 20:17   ` Matthias Fischer
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2017-09-24 18:32 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1043 bytes --]

Hi,

I don't think this is a good idea.

In collectd 5, the format of the RRDs has changed which would require us to
migrate them all (they use DERIVE instead of COUNTER now). 

We backported quite a few patches into our version of collectd for things we
needed.

So is there any features you need or is this just to follow upstream?

-Michael

On Sun, 2017-09-24 at 16:17 +0200, Matthias Fischer wrote:
> Hi,
> 
> I'm trying to build 'collectd 5.7.2' for some testing, but it always
> fails with the following warning:
> 
> ...
>  make[2]: Entering directory '/usr/src/collectd-5.7.2/src'
> 
> cd .. && /bin/sh /usr/src/collectd-5.7.2/libltdl/config/missing
> automake-1.14 --foreign src/Makefile
> 
> /usr/src/collectd-5.7.2/libltdl/config/missing: line 81: automake-1.14:
> command not found
> 
> WARNING: 'automake-1.14' is missing on your system.
> ...
> 
> This is right, because current 'next' uses 'automake 1.15'. I tested
> with 1.15.1, tried several lfs-changes, but still no luck.
> 
> Does anyone got a tip?
> 
> Best,
> Matthias

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: collectd 5.7.2 desperately misses 'automake 1.14' ;-)
  2017-09-24 18:32 ` Michael Tremer
@ 2017-09-24 20:17   ` Matthias Fischer
  2017-09-24 21:22     ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Matthias Fischer @ 2017-09-24 20:17 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 768 bytes --]

Hi,

On 24.09.2017 20:32, Michael Tremer wrote:
> Hi,
> 
> I don't think this is a good idea.

Yep. After some time I stopped trying.

> In collectd 5, the format of the RRDs has changed which would require us to
> migrate them all (they use DERIVE instead of COUNTER now). 

Didn't know that, another point against it...

> We backported quite a few patches into our version of collectd for things we
> needed.
> 
> So is there any features you need or is this just to follow upstream?

I was just "taking a look to see, if it could work".

But for now its throwing "configure: error: "Some plugins are missing
dependencies - see the summary above for details"
    make: *** [collectd:85: /usr/src/log/collectd-5.7.2] Error 1"

I've given up for now.

Best,
Matthias

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: collectd 5.7.2 desperately misses 'automake 1.14' ;-)
  2017-09-24 20:17   ` Matthias Fischer
@ 2017-09-24 21:22     ` Michael Tremer
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2017-09-24 21:22 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1041 bytes --]

On Sun, 2017-09-24 at 22:17 +0200, Matthias Fischer wrote:
> Hi,
> 
> On 24.09.2017 20:32, Michael Tremer wrote:
> > Hi,
> > 
> > I don't think this is a good idea.
> 
> Yep. After some time I stopped trying.
> 
> > In collectd 5, the format of the RRDs has changed which would require us to
> > migrate them all (they use DERIVE instead of COUNTER now). 
> 
> Didn't know that, another point against it...
> 
> > We backported quite a few patches into our version of collectd for things we
> > needed.
> > 
> > So is there any features you need or is this just to follow upstream?
> 
> I was just "taking a look to see, if it could work".
> 
> But for now its throwing "configure: error: "Some plugins are missing
> dependencies - see the summary above for details"
>     make: *** [collectd:85: /usr/src/log/collectd-5.7.2] Error 1"
> 
> I've given up for now.

That's cool. I wrote something new for IPFire 3 any ways :)

http://cgit.ipfire.org/oddments/collecty.git/

-Michael

> 
> Best,
> Matthias

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-09-24 21:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-24 14:17 collectd 5.7.2 desperately misses 'automake 1.14' ;-) Matthias Fischer
2017-09-24 18:32 ` Michael Tremer
2017-09-24 20:17   ` Matthias Fischer
2017-09-24 21:22     ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox