diff options
author | Jeremy Allison <jra@samba.org> | 1998-10-15 19:30:12 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-10-15 19:30:12 +0000 |
commit | 1cf3444105558f2c55b0c89e725aeb88a0e8add8 (patch) | |
tree | cd4aa8e446911dae8ac90ca66c117645e4a946fd /source3/configure | |
parent | a42afcdcc7ab9aa9ed193ae36d3dbb10843447f0 (diff) | |
download | samba-1cf3444105558f2c55b0c89e725aeb88a0e8add8.tar.gz samba-1cf3444105558f2c55b0c89e725aeb88a0e8add8.tar.bz2 samba-1cf3444105558f2c55b0c89e725aeb88a0e8add8.zip |
Fixed crypt problems on IRIX with prototype.
Jeremy.
(This used to be commit bdba1bcf2094d2b33dd74d3cfde61723dd7fc46b)
Diffstat (limited to 'source3/configure')
-rwxr-xr-x | source3/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure b/source3/configure index 55c6563e3b..ec53735fbf 100755 --- a/source3/configure +++ b/source3/configure @@ -2891,7 +2891,7 @@ else #include "confdefs.h" #include <unistd.h> int main() { -int i = setresuid +int i = (int)setresuid ; return 0; } EOF if { (eval echo configure:2898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then @@ -2926,7 +2926,7 @@ else #include "confdefs.h" #include <unistd.h> int main() { -int i = crypt +int i = (int)crypt ; return 0; } EOF if { (eval echo configure:2933: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |