ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/configure
(Generate patch)

Comparing IO-AIO/configure (file contents):
Revision 1.10 by root, Thu Jul 7 22:36:18 2011 UTC vs.
Revision 1.14 by root, Fri Apr 6 11:39:25 2012 UTC

3172fi 3172fi
3173 3173
3174done 3174done
3175 3175
3176 3176
3177for ac_header in stdint.h 3177for ac_header in linux/fs.h linux/fiemap.h
3178do : 3178do :
3179 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
3179 ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" 3180ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
3180if test "x$ac_cv_header_stdint_h" = x""yes; then : 3181if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
3181 cat >>confdefs.h <<_ACEOF 3182 cat >>confdefs.h <<_ACEOF
3182#define HAVE_STDINT_H 1 3183#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
3184_ACEOF
3185
3186fi
3187
3188done
3189
3190
3191for ac_header in stdint.h sys/syscall.h sys/prctl.h
3192do :
3193 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
3194ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
3195if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
3196 cat >>confdefs.h <<_ACEOF
3197#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
3183_ACEOF 3198_ACEOF
3184 3199
3185fi 3200fi
3186 3201
3187done 3202done
3511 3526
3512#include <fcntl.h> 3527#include <fcntl.h>
3513int main (void) 3528int main (void)
3514{ 3529{
3515 int fd = 0; 3530 int fd = 0;
3516 int mode = FALLOC_FL_KEEP_SIZE; 3531 int mode = 0;
3517 off_t offset = 1; 3532 off_t offset = 1;
3518 off_t len = 1; 3533 off_t len = 1;
3519 int res; 3534 int res;
3520 res = fallocate (fd, mode, offset, len); 3535 res = fallocate (fd, mode, offset, len);
3521 return 0; 3536 return 0;
3532fi 3547fi
3533{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_fallocate" >&5 3548{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_fallocate" >&5
3534$as_echo "$ac_cv_fallocate" >&6; } 3549$as_echo "$ac_cv_fallocate" >&6; }
3535test $ac_cv_fallocate = yes && 3550test $ac_cv_fallocate = yes &&
3536$as_echo "#define HAVE_FALLOCATE 1" >>confdefs.h 3551$as_echo "#define HAVE_FALLOCATE 1" >>confdefs.h
3552
3553
3554{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys_syncfs" >&5
3555$as_echo_n "checking for sys_syncfs... " >&6; }
3556if test "${ac_cv_sys_syncfs+set}" = set; then :
3557 $as_echo_n "(cached) " >&6
3558else
3559 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3560/* end confdefs.h. */
3561
3562#include <unistd.h>
3563#include <sys/syscall.h>
3564int main (void)
3565{
3566 int res = syscall (__NR_syncfs, (int)0);
3567}
3568
3569_ACEOF
3570if ac_fn_c_try_link "$LINENO"; then :
3571 ac_cv_sys_syncfs=yes
3572else
3573 ac_cv_sys_syncfs=no
3574fi
3575rm -f core conftest.err conftest.$ac_objext \
3576 conftest$ac_exeext conftest.$ac_ext
3577fi
3578{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_syncfs" >&5
3579$as_echo "$ac_cv_sys_syncfs" >&6; }
3580test $ac_cv_sys_syncfs = yes &&
3581$as_echo "#define HAVE_SYS_SYNCFS 1" >>confdefs.h
3582
3583
3584{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for prctl_set_name" >&5
3585$as_echo_n "checking for prctl_set_name... " >&6; }
3586if test "${ac_cv_prctl_set_name+set}" = set; then :
3587 $as_echo_n "(cached) " >&6
3588else
3589 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3590/* end confdefs.h. */
3591
3592#include <sys/prctl.h>
3593int main (void)
3594{
3595 char name = "test123";
3596 int res = prctl (PR_SET_NAME, (unsigned long)name, 0, 0, 0);
3597}
3598
3599_ACEOF
3600if ac_fn_c_try_link "$LINENO"; then :
3601 ac_cv_prctl_set_name=yes
3602else
3603 ac_cv_prctl_set_name=no
3604fi
3605rm -f core conftest.err conftest.$ac_objext \
3606 conftest$ac_exeext conftest.$ac_ext
3607fi
3608{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prctl_set_name" >&5
3609$as_echo "$ac_cv_prctl_set_name" >&6; }
3610test $ac_cv_prctl_set_name = yes &&
3611$as_echo "#define HAVE_PRCTL_SET_NAME 1" >>confdefs.h
3537 3612
3538 3613
3539 3614
3540{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for posix_madvise" >&5 3615{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for posix_madvise" >&5
3541$as_echo_n "checking for posix_madvise... " >&6; } 3616$as_echo_n "checking for posix_madvise... " >&6; }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines