clean up the bootstrap warnings. you will need to re-run bootstrap and re-configure (or at least run the libs/apr-util/buildconf) and configure

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4719 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2007-03-21 21:14:31 +00:00
parent 25d6572f80
commit dc205ae219
9 changed files with 44 additions and 1429 deletions

View File

@@ -14,6 +14,13 @@ static char RCSId[]
#else
#include <config.h>
#ifndef HAVE_MEMMOVE
#ifdef HAVE_BCOPY
#define memmove(d,s,l) bcopy((s),(d),(l))
#else
#define memmove(d,s,l) ;punting on memmove;
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif