To build this package, you will need the autoconf/automake tools.



BUILDING WITH DIFFERENT AUTOCONF
--------------------------------
aclocal
autoheader
automake -a
autoconf

before running ./configure


BUILDING SFIC 
-------------

sfic  needs trivial database to compile.  You can get it from 
sourceforge (http://sourceforge.net/projects/tdb) 

If you don't already have tdb (you probably don't), here's how to 
create a static library for use with sficdb:


unpack sfic
cd sfic-<version>
Use your favorite browser to download tdb 
	(http://prdownloads/sourceforge.net/tdb/tdb-1.0.6.tar.gz?download will get you started)
(in the sfic directory)
tar zxvf tdb-1.0.6.tar.gz
patch -p1 < extras/tdb-1.0.6-gcc.patch
mkdir /tmp/tdb
cd tdb-1.0.6
CFLAGS="-O2 -fPIC" ./configure --disable-shared --prefix="/tmp/tdb"
make
make install
cd ..
./configure --with-tdb-headers=/tmp/tdb/include --with-tdb-lib=/tmp/tdb/lib
make
make install-strip
rm -rf /tmp/tdb


Unfortunately, tdb has problems compiling with modern gcc, so don't forget the 
tdb patch.



