diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | mpd-notification.h | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ # mpd-notification - Notify about tracks played by mpd -CC := gcc +CC := gcc -std=c11 MD := markdown INSTALL := install CP := cp diff --git a/mpd-notification.h b/mpd-notification.h index 7ff485c..0a32b97 100644 --- a/mpd-notification.h +++ b/mpd-notification.h @@ -8,6 +8,8 @@ #ifndef MPD_NOTIFICATION_H #define MPD_NOTIFICATION_H +#define _GNU_SOURCE + #include <mpd/client.h> #include <libnotify/notify.h> |