Remove efence support in favor of valgrind.

This commit is contained in:
curt 2002-07-30 14:10:08 +00:00
parent 9b05c27938
commit f85a9866fe
2 changed files with 1 additions and 15 deletions

View File

@ -66,14 +66,6 @@ if test "x$with_logging" = "xno" ; then
AC_DEFINE(FG_NDEBUG)
fi
dnl specify if we are building with "electric fence"
AC_ARG_WITH(efence, [ --with-efence Specify if we are building with "electric-fence"])
if test "x$with_efence" = "xyes" ; then
echo "Building with efence"
LIBS="$LIBS -lefence"
fi
# Specify if we want to build with Norman's jpeg image server support.
# This requires libjpeg to be installed and available.
# Default to with_jpeg_server=no
@ -373,12 +365,6 @@ else
echo "Debug messages: yes"
fi
if test "x$with_efence" != "x"; then
echo "Electric fence: $with_efence"
else
echo "Electric fence: no"
fi
echo -n "Automake version: ($AUTO_MAKE_VERSION) "
automake --version | head -1

View File

@ -346,7 +346,7 @@ bool SGBinObject::read_bin( const string& file ) {
return false;
}
// read calender time
// read creation time
unsigned int foo_calendar_time;
sgReadUInt( fp, &foo_calendar_time );