summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2000-10-29 17:36:44 +0000
committerDamien Doligez <damien.doligez-inria.fr>2000-10-29 17:36:44 +0000
commit0f45531954cadaa9f19a73944e8f9574f5fc08ee (patch)
tree719104aefb76dc5c5d57c4c14b3fa5de843b63d9 /configure
parent24b5b0add9ca1048d8561526741b8f10fa587242 (diff)
passage a ANSI C -> suppression bcopy et memmov
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3322 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure b/configure
index a9ed71e57..bd78251e5 100755
--- a/configure
+++ b/configure
@@ -478,17 +478,6 @@ fi
echo "#define OCAML_OS_TYPE \"$ostype\"" >> s.h
-# Find a good byte move function
-
-if sh ./runtest -Dcopy=memmove -Dreverse bytecopy.c; then
- echo "Function \"memmove\" is provided and handles overlapping moves correctly."
- echo "#define HAS_MEMMOVE" >> s.h
-fi
-if sh ./runtest -Dcopy=bcopy bytecopy.c; then
- echo "Function \"bcopy\" is provided and handles overlapping moves correctly."
- echo "#define HAS_BCOPY" >> s.h
-fi
-
# Check the semantics of signal handlers
if sh ./hasgot sigaction sigprocmask; then