tinc (1.0.34-1) unstable; urgency=medium
[ Guus Sliepen ]
* New upstream release.
- Fixes a potential segmentation fault when connecting to an IPv6
peer via a proxy. Closes: #887401
* Add support for the $EXTRA variable in /etc/default/tinc when using
systemd. Closes: #887116
[ Benda Xu ]
* Prevent possible incorrect IPv6 checksums due to function inlining.
Closes: #891400
18 lines
398 B
Makefile
Executable file
18 lines
398 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --enable-uml --enable-vde --with-systemd=/lib/systemd/system --runstatedir=/run
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- install-html
|
|
# Remove info dir file
|
|
rm -f debian/tinc/usr/share/info/dir
|
|
|
|
override_dh_installinit:
|
|
dh_installinit -R
|
|
|
|
override_dh_systemd_start:
|
|
dh_systemd_start --restart-after-upgrade
|