diff options
author | Craig A. Berry <craigberry@mac.com> | 2017-10-25 07:33:34 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2017-10-25 07:33:34 -0500 |
commit | 59a5d10d6f1e1558d2014ed071fd1f3077441f1c (patch) | |
tree | bfa0341884a48f3b3f7179ff72f4f00ee355a3b2 /configure.com | |
parent | 1cc9774b1f535fb9a403afc4506ee7eec2dc579f (diff) | |
download | perl-59a5d10d6f1e1558d2014ed071fd1f3077441f1c.tar.gz |
Remove unused probes in configure.com.
Recent commits for the C89 work had us stop using the result of
these probes, so there is no point in continuing to build and run
them.
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/configure.com b/configure.com index 4296bf4aa2..17b3605671 100644 --- a/configure.com +++ b/configure.com @@ -4222,23 +4222,6 @@ $ echo4 "Nope, since you don't even have fcntl()." $ ENDIF $ d_fcntl_can_lock = tmp $! -$! Check for memchr -$! -$ OS -$ WS "#if defined(__DECC) || defined(__DECCXX)" -$ WS "#include <stdlib.h>" -$ WS "#endif" -$ WS "#include <string.h>" -$ WS "int main()" -$ WS "{" -$ WS "char * place;" -$ WS "place = (char *)memchr(""foo"", 47, 3);" -$ WS "exit(0);" -$ WS "}" -$ CS -$ tmp = "memchr" -$ GOSUB inlibc -$! $! Check for memrchr $! $ OS @@ -4418,42 +4401,6 @@ $ tmp = "acess" $ GOSUB inlibc $ d_access = tmp $! -$! Check for bzero -$! -$ OS -$ WS "#if defined(__DECC) || defined(__DECCXX)" -$ WS "#include <stdlib.h>" -$ WS "#endif" -$ WS "#include <stdio.h>" -$ WS "#include <strings.h>" -$ WS "int main()" -$ WS "{" -$ WS "char foo[10];" -$ WS "bzero(foo, 10);" -$ WS "exit(0);" -$ WS "}" -$ CS -$ tmp = "bzero" -$ GOSUB inlibc -$! -$! Check for bcopy -$! -$ OS -$ WS "#if defined(__DECC) || defined(__DECCXX)" -$ WS "#include <stdlib.h>" -$ WS "#endif" -$ WS "#include <stdio.h>" -$ WS "#include <strings.h>" -$ WS "int main()" -$ WS "{" -$ WS "char foo[10], bar[10];" -$ WS "bcopy(""foo"", bar, 3);" -$ WS "exit(0);" -$ WS "}" -$ CS -$ tmp = "bcopy" -$ GOSUB inlibc -$! $! Check for mkstemp $! $ OS |