holylobster / nuntius-linux

Nuntius delivers notifications from your phone or tablet to your computer
GNU General Public License v2.0
216 stars 25 forks source link

Posix.SIG* have been deprecated since vala 0.40, use Posix.Signal.* #80

Closed aerostitch closed 5 years ago

aerostitch commented 5 years ago

Hi,

This PR fixes the following warnings we get when compiling with vala >= 0.40.0:

src/main.vala:32.21-32.32: warning: Posix.SIGINT has been deprecated since vala-0.40. Use Posix.Signal.INT
src/main.vala:33.21-33.32: warning: Posix.SIGHUP has been deprecated since vala-0.40. Use Posix.Signal.HUP
src/main.vala:34.21-34.33: warning: Posix.SIGTERM has been deprecated since vala-0.40. Use Posix.Signal.TERM

Joseph