summaryrefslogtreecommitdiff
path: root/source3/configure
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-01-10 01:32:57 +0000
committerTim Potter <tpot@samba.org>2002-01-10 01:32:57 +0000
commit87db7c557b519b00ebdfd5d35cee038f2071db09 (patch)
treebf12ee4f3c69461d832b38810b45935b0667174f /source3/configure
parent3454945146bdef0108f3a55fb32456cccf15f188 (diff)
downloadsamba-87db7c557b519b00ebdfd5d35cee038f2071db09.tar.gz
samba-87db7c557b519b00ebdfd5d35cee038f2071db09.tar.bz2
samba-87db7c557b519b00ebdfd5d35cee038f2071db09.zip
Although configure.in and configure were checked in at the same time
I think configure.in just beat it to the repository so the timestamp of configure.in is newer than configure. )-: (This used to be commit ee0a6f8d26a594bb3d0ee266a0229f3046590270)
Diffstat (limited to 'source3/configure')
-rwxr-xr-xsource3/configure18
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/configure b/source3/configure
index ba55c698fa..e719b1fbf1 100755
--- a/source3/configure
+++ b/source3/configure
@@ -2596,12 +2596,12 @@ else
#line 2597 "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:2608: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
@@ -2635,12 +2635,12 @@ else
#line 2636 "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:2647: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
@@ -2674,12 +2674,12 @@ else
#line 2675 "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:2686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null