- Nagios - Switch Interface Traffic
- How To - Linux Server Performance
- Notes - Building New ESXi Host for iSCSI with Jumbo Frames
- Microsoft Office Version Numbers (XP, 2003, 2007, 2010)
- ESXi Custom Welcome Screen Text
- PHP - Read Data from a CSV file
- PHP - Input Variables from URL
- Fix - WMI Error EventID 10
- Fix - EventID 4007 DNS Server Error
- FIX - CHECK_ESX3.PL Script
ERROR: libart-2.0 - Missing libart when installing RRDtool
- References:
configure: WARNING: ---------------------------------------------------------------------------- * I found a copy of pkgconfig, but there is no libart-2.0.pc file around. You may want to set the PKG_CONFIG_PATH variable to point to its location. ----------------------------------------------------------------------------
The issue is the RRDtool configure script is looking in /usr/include vs. /usr/local/include for the libart files. So there are a few ways to tweak this.
- You can symlink the files from where it is looking to where they are. Can be very messy to get working, but you may unwittingly solve future issues where these files are needed.
- You could change where you install libart to not use /usr/local
-
You can set the correct environment variable:
export CPPFLAGS=' -I/usr/local/include/libart-2.0'
That solved my RRDTool installation issue.
- Printer-friendly version
- Login to post comments
-
