Operating System - HP-UX
1833780 Members
2424 Online
110063 Solutions
New Discussion

RRDTool on HPUX IA64 rrd tool 11.23

 
BenIsCool
Frequent Advisor

RRDTool on HPUX IA64 rrd tool 11.23

Hello,

I have HP-UX 11.23 on IA64.
I need RRDTool for this platform.
I cannot find a depot :( so I have the source.
But I get errors trying to build it.
Can anyone help?

./configure --prefix=$INSTALL_DIR
checking for png_access_version_number in -lpng... no
checking for pkg-config... (cached) no
configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of libpng. Check config.log for hints on why......
7 REPLIES 7
OldSchool
Honored Contributor

Re: RRDTool on HPUX IA64 rrd tool 11.23

well a quick google says that's the Portable Network Graphics library, and it's on sourceforge.

you'll have to check the prerequistes for rrdtool. there may be other packages that you need to download / install.
BenIsCool
Frequent Advisor

Re: RRDTool on HPUX IA64 rrd tool 11.23

Thank you for your reply.

I already have libpng installed as well as the other requirements.

The configure process is not finding them.

Is there a way to specify the location perhaps?
Olivier Masse
Honored Contributor

Re: RRDTool on HPUX IA64 rrd tool 11.23

The building process for RRD (and it's build documentation) are actually among the best I've seen. The author hosts on his site source tarballs for all the dependent librairies, and tells you how to build everything here from scratch: http://oss.oetiker.ch/rrdtool/doc/rrdbuild.en.html

Save yourself some trouble and download all the dependent librairies, even zlib, and follow the instructions to build everything. It will be statically linked so any update of any duplicate library you might have elsewhere won't mock up your RRD installation. One suggestion, use /opt/rrdtool as your install directory to prevent it from putting loads of stuff in /usr/local. I've followed this a few times and it works well.

Good luck

Re: RRDTool on HPUX IA64 rrd tool 11.23

Hello , please visit this web:
http://oss.oetiker.ch/rrdtool/pub/contrib/RRDtool-1.0.45.1.depot

I have downloaded depot files

regards
Robert
BenIsCool
Frequent Advisor

Re: RRDTool on HPUX IA64 rrd tool 11.23

Thank you. But I need depot files for Itanium. (not PA-Risc)

Any thoughts?

Re: RRDTool on HPUX IA64 rrd tool 11.23

Hello , i have ia64 and pa-risc but i don't see depot for ia64 and hpux 11.23.
I want install cacti in hpux , pa-risc or ia64 by me is the same


if i see any depot i answer you
best regard
Denver Osborn
Honored Contributor

Re: RRDTool on HPUX IA64 rrd tool 11.23

Have you specified the location to libpng include and libs with CPPFLAGS and LDFLAGS? export CPPFLAGS="-I/path/to/libpng/include" LDFLAGS="-L/path/to/libpng/lib"

You'll also want freetype, libart and zlib dependencies.

-denver