Fixed bug that resulted in overzealous verification of memmove.

git-svn-id: http://voip.null.ro/svn/yate@49 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2004-09-10 17:40:08 +00:00
parent 8be4c38d09
commit 9d4035efb5
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ AC_MSG_CHECKING([for gcc printf format typechecks])
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -Wall -Werror"
AC_TRY_COMPILE([],[void f(void*x,const char*f,...) __attribute__((format(printf,2,3))); ],[ac_cv_format_checks=yes],[ac_cv_format_checks=no])
CFLAGS="$SAVE_CFLAGS"
if [[ "x$ac_cv_format_checks" = "xyes" ]]; then
HAVE_GCC_FORMAT_CHECK="-DHAVE_GCC_FORMAT_CHECK"
fi