I notice in configure.in that `lib' is appended to the path supplied for 
confuse and other libraries.

However, on a 64 bit Redhat machine, it may be necessary to append lib64 
instead.  What is the best practice for doing this?  I don't think it's 
safe to rely on `rpm --eval %_lib', maybe something like this should be 
in configure.in:

LIB_SUFFIX=lib
case $host in
x86_64*linux*)
  LIB_SUFFIX=lib64
  ;;
esac

Regards,

Daniel

------------------------------------------------------------------------------
_______________________________________________
Ganglia-developers mailing list
Ganglia-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ganglia-developers

Reply via email to