diff options
author | 2013-09-30 21:42:45 -0400 | |
---|---|---|
committer | 2013-09-30 21:42:45 -0400 | |
commit | fceda031f64a2a66113fdda36c6a8c532f66b8d0 (patch) | |
tree | a2debc00b0a3631954f3aec4d54cc749412249d5 /src | |
parent | 5e9e144756f1e8c7691680fd847835e979c9270f (diff) | |
download | textadept-fceda031f64a2a66113fdda36c6a8c532f66b8d0.tar.gz textadept-fceda031f64a2a66113fdda36c6a8c532f66b8d0.zip |
Fixed a compile error on platforms that require gmodule; src/Makefile
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 53e2322f..9ff396aa 100644 --- a/src/Makefile +++ b/src/Makefile @@ -96,8 +96,10 @@ ifneq (, $(or $(findstring Linux, $(kernel)), $(findstring BSD, $(kernel)))) else gtk_version = 3.0 endif - GTK_CFLAGS = $(shell pkg-config --cflags gtk+-$(gtk_version)) - GTK_LIBS = $(shell pkg-config --libs gtk+-$(gtk_version)) + GTK_CFLAGS = $(shell pkg-config --cflags gtk+-$(gtk_version) \ + gmodule-$(gtk_version)) + GTK_LIBS = $(shell pkg-config --libs gtk+-$(gtk_version) \ + gmodule-$(gtk)) install_targets = ../textadept ../textadeptjit else plat_flag = -DCURSES -D_XOPEN_SOURCE_EXTENDED |