diff options
author | Jeremy Allison <jra@samba.org> | 2002-05-09 19:54:47 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-05-09 19:54:47 +0000 |
commit | 059da8fb3b7197bd6a9bfe57940a96a2546e63a5 (patch) | |
tree | 2a9321487a1e4dd0903e40216df90c0a82a387ca /source3/configure | |
parent | 909bb7a0551b54a18540b50c5e5159738c76b3c9 (diff) | |
download | samba-059da8fb3b7197bd6a9bfe57940a96a2546e63a5.tar.gz samba-059da8fb3b7197bd6a9bfe57940a96a2546e63a5.tar.bz2 samba-059da8fb3b7197bd6a9bfe57940a96a2546e63a5.zip |
Merged in printing fixes... There were many missing !
Jeremy
(This used to be commit 32fa089adead6ff3279172fd36560f4f9e2aeef0)
Diffstat (limited to 'source3/configure')
-rwxr-xr-x | source3/configure | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/configure b/source3/configure index 1671ffc7ef..0e95fa91d4 100755 --- a/source3/configure +++ b/source3/configure @@ -2880,12 +2880,12 @@ else #line 2881 "configure" #include "confdefs.h" #include <stdio.h> -main() +int main() { FILE *f=fopen("conftestval", "w"); - if (!f) exit(1); + if (!f) return(1); fprintf(f, "%d\n", sizeof(int)); - exit(0); + return(0); } EOF if { (eval echo configure:2892: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null @@ -2919,12 +2919,12 @@ else #line 2920 "configure" #include "confdefs.h" #include <stdio.h> -main() +int main() { FILE *f=fopen("conftestval", "w"); - if (!f) exit(1); + if (!f) return(1); fprintf(f, "%d\n", sizeof(long)); - exit(0); + return(0); } EOF if { (eval echo configure:2931: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null @@ -2958,12 +2958,12 @@ else #line 2959 "configure" #include "confdefs.h" #include <stdio.h> -main() +int main() { FILE *f=fopen("conftestval", "w"); - if (!f) exit(1); + if (!f) return(1); fprintf(f, "%d\n", sizeof(short)); - exit(0); + return(0); } EOF if { (eval echo configure:2970: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null |