]> granicus.if.org Git - apache/commitdiff
Move the checks for bcopy and memmove down to APR. APR now defines memmove
authorRyan Bloom <rbb@apache.org>
Tue, 27 Jun 2000 21:35:27 +0000 (21:35 +0000)
committerRyan Bloom <rbb@apache.org>
Tue, 27 Jun 2000 21:35:27 +0000 (21:35 +0000)
and bzero on platforms that do not natively support them.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85706 13f79535-47bb-0310-9956-ffa450edef68

configure.in
include/ap_config.h

index aced5dac4574a2e3e3e7ee96cd3f40680c214405..0c53b219e690a3cc4329e4d67b4fc4d1638738ce 100644 (file)
@@ -95,8 +95,6 @@ dnl See Comment #Spoon
 
 AC_CHECK_FUNCS( \
 initgroups \
-memmove \
-bzero \
 )
 
 AC_CHECK_LIB(nsl, gethostbyname)
index 8943acf5691df7ca2df160e7db5c1d91c2c2d1b9..4e0a4826858de4439b4c2b2af70d127a1dc1f6cb 100644 (file)
 #define ap_sigwait(a,b) sigwait((a),(b))
 #endif
 
-/*
- * String and memory functions
- */
-
-#ifndef HAVE_MEMMOVE
-#define memmove(a,b,c) bcopy(b,a,c)
-#endif
-
-#ifndef HAVE_BZERO
-#define bzero(a,b) memset(a,0,b)
-#endif
-
 /* TODO - We need to put OS detection back to make all the following work */
 
 #if defined(SUNOS4) || defined(IRIX) || defined(NEXT) || defined(AUX3) \