fixed a bug in the hlink code - it wasn't taking account of the new
[rsync/rsync.git] / configure.in
index 412d2cd..590bdec 100644 (file)
@@ -40,8 +40,6 @@ echo no)
 AC_FUNC_MEMCMP
 AC_FUNC_MMAP
 AC_FUNC_UTIME_NULL
-AC_FUNC_SETPGRP
-AC_FUNC_GETPGRP
 AC_CHECK_FUNCS(waitpid strtok pipe getcwd mkdir strdup strerror chown chmod mknod)
 AC_CHECK_FUNCS(fchmod fstat strchr bcopy bzero readlink link utime utimes)
 AC_CHECK_FUNCS(memmove getopt_long lchown setlinebuf)
@@ -61,9 +59,7 @@ echo no)
 echo $ac_n "checking for utimbuf ... $ac_c"
 AC_TRY_COMPILE([#include <sys/types.h>
 #include <utime.h>],
-[int set_modtime(char *fname,time_t modtime)
-{  struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = modtime;
-   return utime(fname,&tbuf); }],
+[struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; return utime("foo.c",&tbuf);],
 echo yes;AC_DEFINE(HAVE_UTIMBUF), 
 echo no)