====== Typical Build Procedure ====== # if you have a fink environment installed, you can remove the fink stuff when building with the following: unset LDFLAGS MANPATH CPPFLAGS CXXFLAGS CFLAGS ACLOCAL_FLAGS PKG_CONFIG_PATH # if you have CDPATH set it may cause "make" to fail; simply unset it first # download source and extract # read the INSTALL and/or README files ./configure --help'' to view build options, and decide which options require pre-existing dependencies (install them first) # optional, if using libtool cp /usr/local/share/libtool/config.sub . cp /usr/local/share/libtool/config.guess . ./configure --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info [custom flags and build options here] make sudo make install