summaryrefslogtreecommitdiffstats
path: root/source/configure
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-02-02 21:28:10 +0000
committerJeremy Allison <jra@samba.org>2002-02-02 21:28:10 +0000
commita2876f9ded3b175390a8690892c1aeaedae02cfa (patch)
tree61f433503df7285f61e3c1404518db5fc7443670 /source/configure
parent9f33fd624576aacee1e059f30cfd958790945f2f (diff)
downloadsamba-a2876f9ded3b175390a8690892c1aeaedae02cfa.tar.gz
samba-a2876f9ded3b175390a8690892c1aeaedae02cfa.tar.xz
samba-a2876f9ded3b175390a8690892c1aeaedae02cfa.zip
2.2.3 now in sync.
Jeremy.
Diffstat (limited to 'source/configure')
-rwxr-xr-xsource/configure20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/configure b/source/configure
index aea495dfeb4..52dc6ebc8c8 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
@@ -12936,7 +12936,7 @@ echo "configure:12935: checking whether to build winbind" >&5
# Initially, the value of $host_os decides whether winbind is supported
case "$host_os" in
- *linux*|*solaris*|*irix*)
+ *linux*|*solaris*|*irix*|*hpux11*)
HAVE_WINBIND=yes
;;
*)