summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2012-07-22 11:07:19 +0200
committerSebastian Reichel <sre@ring0.de>2012-07-22 11:07:19 +0200
commitfa137fe02919114b969be65ef7d9a359e65545bf (patch)
tree1fe65002ea47725b98b092c04538c835f955ae08
parent21fb05acedf19838a36877e74c9b44ba3bda2d1c (diff)
downloadmicrocopterd-fa137fe02919114b969be65ef7d9a359e65545bf.tar.bz2
link socket module against gio-2.0
-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