diff options
author | Jon Gjengset <jon@thesquareplanet.com> | 2013-09-09 18:14:59 +0100 |
---|---|---|
committer | Jon Gjengset <jon@thesquareplanet.com> | 2013-09-09 18:15:04 +0100 |
commit | 77a869fd4612c0cdffdee2f19ae5db3dda77adb6 (patch) | |
tree | 03d8e017697e0cf5f2ee0363e2ce8622159febf2 /Makefile | |
parent | Move bugs to Github issues #1 and #2 (diff) | |
download | mktrayicon-77a869fd4612c0cdffdee2f19ae5db3dda77adb6.tar.gz mktrayicon-77a869fd4612c0cdffdee2f19ae5db3dda77adb6.tar.bz2 mktrayicon-77a869fd4612c0cdffdee2f19ae5db3dda77adb6.zip |
Avoid X11 threading errors; fixes #1
Thanks: http://stackoverflow.com/a/18690540/472927
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ mktrayicon: mktrayicon.c - ${CC} `pkg-config --cflags gtk+-3.0` -o $@ $< `pkg-config --libs gtk+-3.0` + ${CC} `pkg-config --cflags gtk+-3.0` -o $@ $< `pkg-config --libs gtk+-3.0` `pkg-config --cflags --libs x11` clean: rm mktrayicon |