diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2004-05-18 08:49:29 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2004-05-18 08:49:29 +0000 |
commit | 5d9181501c378262bca3396d25605efe52075eb7 (patch) | |
tree | b3d24aa6d5d585310554e6649103d5607ee7028f | |
parent | ffe627130822c4d5ac4f73aea1cfb9b132d6eedf (diff) |
strerror est standard ANSI C, ne pas le detecter.
Support profiling pour AMD64/Linux
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6302 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rwxr-xr-x | configure | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -649,6 +649,7 @@ case "$arch,$model,$system" in sparc,*,solaris) profiling='prof' case "$nativecc" in gcc*) ;; *) cc_profile='-xpg';; esac;; + amd64,*,linux) profiling='prof';; *) profiling='noprof';; esac @@ -744,11 +745,6 @@ fi # For the sys module -if sh ./hasgot strerror; then - echo "strerror() found." - echo "#define HAS_STRERROR" >> s.h -fi - if sh ./hasgot times; then echo "times() found." echo "#define HAS_TIMES" >> s.h |