summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--receiver/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/receiver/Makefile b/receiver/Makefile
index fdc2a8c..3d89214 100644
--- a/receiver/Makefile
+++ b/receiver/Makefile
@@ -9,6 +9,6 @@ socket.c: socket.vala msg-format.vala
$(VALAC) --pkg gmodule-2.0 --pkg gio-2.0 --pkg posix --pkg linux -C $^ ../receiver.vala
Socket.so: socket.c msg-format.c
- $(CC) -shared -fPIC `pkg-config --cflags --libs glib-2.0 gobject-2.0 gmodule-2.0` -o $@ $^
+ $(CC) -shared -fPIC `pkg-config --cflags --libs glib-2.0 gio-2.0 gobject-2.0 gmodule-2.0` -o $@ $^
.PHONY: all clean