Package: libfile-lchown-perl
Version: 0.02-3
Since trixie the test for lutimes() fails because of a missing include, so
support for lutimes() is not built. Patch is attached.
Index: libfile-lchown-perl-0.02/Build.PL
===================================================================
--- libfile-lchown-perl-0.02.orig/Build.PL
+++ libfile-lchown-perl-0.02/Build.PL
@@ -23,6 +23,7 @@ $cc->try_compile_run(
source => <<'EOF' );
#include <stdlib.h>
#include <unistd.h>
+#include <sys/time.h>
int main(int argc, char *argv[]) {
if(lutimes(".", NULL) != 0)
exit(1);