Axel Beckert
Axel Beckert
The log failure looks more or less the same, just some line numbers seem different. There's also no `simple_strtoul` or `is_vlan_dev` involved: ``` DKMS make.log for ipt-netflow-2.3 for kernel 5.0.0-3-generic...
torvalds/linux@de8bda1 is only one part of the cause. Another cause is that [`do_gettimeofday()` is gone, too](https://github.com/torvalds/linux/commit/e4b92b108c6cd6b311e4b6e85d6a87a34599a6e3#diff-0ba30ec50bafb8644460e5ca5c3d2b2b). `ktime_get_real_ts64()` seems a [direct replacement](https://github.com/torvalds/linux/blob/HEAD/Documentation/core-api/timekeeping.rst#deprecated-time-interfaces). A third cause seems this error: ``` /var/lib/dkms/ipt-netflow/2.3/build/ipt_NETFLOW.c: In...
Here's the output of the two commands on the system where I ran into this: ``` → pkg-config --variable=xtlibdir xtables /usr/lib/x86_64-linux-gnu/xtables → pkg-config --modversion xtables 1.8.4 ``` And here's the...
> > Maybe you installed nftables instead of iptables? > > So actually both are installed. > Does nftables replace iptables bin somehow? Just checked, yes, you're right, the `iptables`...
> Ah, `1.8.4 (nf_tables)` is a version string reported from `iptables -V`. Yes: ``` → iptables -V iptables v1.8.4 (nf_tables) ```
> You, probably, should set via `alternatives` to use `iptables-legacy` bin as `iptables`. Yes, but that doesn't help for package builds as in package builds `update-alternatives` can't be used. That's...
> Had to patch configure anyway to not bail out on unknown options due to Debian passing these options by default... Looks like this with the patch in a clean...
So despite I do have a solution and now understand what went wrong, I'd prefer if this could be handled in your configure script. But if you don't want to...
> I'm not against patching configure so it behaves more like autoconf's Ok, will prepare a pull request. > But, these lines look certainly wrong Yes, just noticed it myself....
Will do later, yes.