From 6704c8e677ed2152accb0d6b37769ed357c43268 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Tue, 27 Jun 2000 21:35:27 +0000 Subject: [PATCH] Move the checks for bcopy and memmove down to APR. APR now defines memmove 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 | 2 -- include/ap_config.h | 12 ------------ 2 files changed, 14 deletions(-) diff --git a/configure.in b/configure.in index aced5dac45..0c53b219e6 100644 --- a/configure.in +++ b/configure.in @@ -95,8 +95,6 @@ dnl See Comment #Spoon AC_CHECK_FUNCS( \ initgroups \ -memmove \ -bzero \ ) AC_CHECK_LIB(nsl, gethostbyname) diff --git a/include/ap_config.h b/include/ap_config.h index 8943acf569..4e0a482685 100644 --- a/include/ap_config.h +++ b/include/ap_config.h @@ -109,18 +109,6 @@ #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) \ -- 2.40.0