diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-07-11 16:06:44 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-07-11 16:06:44 (GMT) |
| commit | b8bffd00e36251f0126d02b73f1e84c24b912ab9 (patch) | |
| tree | 877b12f08f4266c9a01b6068d7e0e3a0fb80d520 /unix/configure | |
| parent | a0457efe80223c1380e9e0fc6a50c755fc7bbeda (diff) | |
| parent | 2ead5632823207539bb83b296fb903b63ec595ff (diff) | |
| download | tcl-b8bffd00e36251f0126d02b73f1e84c24b912ab9.zip tcl-b8bffd00e36251f0126d02b73f1e84c24b912ab9.tar.gz tcl-b8bffd00e36251f0126d02b73f1e84c24b912ab9.tar.bz2 | |
Merge 8.6
Diffstat (limited to 'unix/configure')
| -rwxr-xr-x | unix/configure | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure index 627d10a..7d40237 100755 --- a/unix/configure +++ b/unix/configure @@ -8713,7 +8713,7 @@ fi case $system in AIX-*) ;; BSD/OS*) ;; - CYGWIN_*|MINGW32_*) ;; + CYGWIN_*) ;; IRIX*) ;; NetBSD-*|DragonFly-*|FreeBSD-*|OpenBSD-*) ;; Darwin-*) ;; @@ -14922,8 +14922,10 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ + +#include <stdlib.h> +#include <string.h> int main() { - extern int strstr(); exit(strstr("\0test", "test") ? 1 : 0); } _ACEOF @@ -15089,8 +15091,10 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ + +#include <stdlib.h> +#include <string.h> int main() { - extern int strtoul(); char *term, *string = "0"; exit(strtoul(string,&term,0) != 0 || term != string+1); } @@ -16462,6 +16466,7 @@ cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <stdlib.h> + #include <string.h> #define OURVAR "havecopy=yes" int main (int argc, char *argv[]) { |
