#!/bin/sh

# most of the case, you want to do this when configure VFlib.

OPT_F="--with-freetype \
       --with-freetype-includedir=/usr/local/include \
       --with-freetype-libdir=/usr/local/lib"
OPT_OPT=""

OPTION="${OPT_F} ${OPT_OPT}"

echo
echo Running ./configure ${OPTION}
echo

rm -f config.cache 
./configure ${OPTION}


#EOF
