diff options
author | Wouter Van Rooy <wouter.vanrooy@gmail.com> | 2013-09-02 22:07:35 +0200 |
---|---|---|
committer | Wouter Van Rooy <wouter.vanrooy@gmail.com> | 2013-09-02 22:07:35 +0200 |
commit | dc5db198cc3f2b5cb867f1be06726a477b13b341 (patch) | |
tree | a4a2eccd487391f9f3bc7844be9215a7b8bbaa9b /config.mk | |
parent | 520061e312d18fae76e3e42209aa1274867c211a (diff) |
Fix error Only <glib.h> can be included directly.
New version of Glib no longer allows to include headers from its subdirectories.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ MANPREFIX = ${PREFIX}/share/man # includes and libs -GTKINC=$(shell pkg-config --cflags gtk+-2.0 vte ) +GTKINC=$(shell pkg-config --cflags gtk+-2.0 vte glib-2.0) GTKLIB=-lvte INCS = -I. -I/usr/include ${GTKINC} |