1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Add missing header for lutimes()
Currently the test for lutimes() fails because of a missing include, so
support for lutimes() is not built.
Origin: vendor
Bug-Debian: https://bugs.debian.org/1108218
Author: Victor Beumker <vb@math.uni-bonn.de>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2025-06-23
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=167721
Bug: https://rt.cpan.org/Ticket/Display.html?id=167721
--- a/Build.PL
+++ b/Build.PL
@@ -23,6 +23,7 @@
source => <<'EOF' );
#include <stdlib.h>
#include <unistd.h>
+#include <sys/time.h>
int main(int argc, char *argv[]) {
if(lutimes(".", NULL) != 0)
exit(1);
|