Your message dated Sun, 15 Nov 2015 10:10:24 +0000
with message-id <[email protected]>
and subject line Bug#804803: Removed package(s) from unstable
has caused the Debian Bug report #769926,
regarding inotail: FTBFS on arm64
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
769926: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=769926
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: inotail
Version: 0.5-2

It failed to build on arm64:

http://buildd.debian.org/status/package.php?p=inotail&suite=sid

The error was:

In file included from inotail.c:37:0:
inotify-syscalls.h:83:3: error: #error "inotify not supported on this
architecture!"
 # error "inotify not supported on this architecture!"

If you want to make this work on arm64, the system call numbers are:

# define __NR_inotify_init1    26
# define __NR_inotify_add_watch    27
# define __NR_inotify_rm_watch    28

Note that arm64 does not have "inotify_init". Instead it has
"inotify_init1", which you can call with an argument of 0:

http://man7.org/linux/man-pages/man2/inotify_init.2.html

However, it wouldn't hurt to give inotify_init the extra argument, so
you could just add something like this:

+#elif defined (__aarch64__)
+# define __NR_inotify_init    26 /* it's inotify_init1, really */
+# define __NR_inotify_add_watch    27
+# define __NR_inotify_rm_watch    28

Then replace

    return syscall(__NR_inotify_init);

with:

    return syscall(__NR_inotify_init, 0);

--- End Message ---
--- Begin Message ---
Version: 0.5-2+rm

Dear submitter,

as the package inotail has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/804803

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to