diff options
author | Gerald Carter <jerry@samba.org> | 2002-03-07 20:00:45 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-03-07 20:00:45 +0000 |
commit | 9e2331053993ce548a634436af5cdaa360cc5828 (patch) | |
tree | 0e6a337dd55bd345decdc73959e808ac88b1a7f4 | |
parent | bfae0890c52749651281cf2fdb0d756dfcc61811 (diff) | |
download | samba-9e2331053993ce548a634436af5cdaa360cc5828.tar.gz samba-9e2331053993ce548a634436af5cdaa360cc5828.tar.xz samba-9e2331053993ce548a634436af5cdaa360cc5828.zip |
reran autoconf
-rwxr-xr-x | source/configure | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source/configure b/source/configure index baec57bbff9..0148037f2ab 100755 --- a/source/configure +++ b/source/configure @@ -2704,12 +2704,12 @@ else #line 2705 "configure" #include "confdefs.h" #include <stdio.h> -int main() +main() { FILE *f=fopen("conftestval", "w"); - if (!f) return(1); + if (!f) exit(1); fprintf(f, "%d\n", sizeof(int)); - return(0); + exit(0); } EOF if { (eval echo configure:2716: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null @@ -2743,12 +2743,12 @@ else #line 2744 "configure" #include "confdefs.h" #include <stdio.h> -int main() +main() { FILE *f=fopen("conftestval", "w"); - if (!f) return(1); + if (!f) exit(1); fprintf(f, "%d\n", sizeof(long)); - return(0); + exit(0); } EOF if { (eval echo configure:2755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null @@ -2782,12 +2782,12 @@ else #line 2783 "configure" #include "confdefs.h" #include <stdio.h> -int main() +main() { FILE *f=fopen("conftestval", "w"); - if (!f) return(1); + if (!f) exit(1); fprintf(f, "%d\n", sizeof(short)); - return(0); + exit(0); } EOF if { (eval echo configure:2794: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null @@ -12954,7 +12954,7 @@ case "$host_os" in *solaris*) HAVE_WINBIND=yes WINBIND_NSS_EXTRA_OBJS="nsswitch/winbind_nss_solaris" - WINBIND_NSS_EXTGRA_LIBS="-lsocket" + WINBIND_NSS_EXTRA_LIBS="-lsocket" ;; *hpux11*) HAVE_WINBIND=yes |