summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2011-12-20 15:54:37 +0100
committerJürg Billeter <j@bitron.ch>2011-12-20 15:54:37 +0100
commite3fdda07865dae42bb79811b374f8043235573ac (patch)
tree5b38ffa977a7b4ad5fd24da754495a289321dcd5
parent51f8e221a6ed84ad79a0820b33843ff87bf4ec21 (diff)
wrap-layer: Fix build
gkm-wrap-prompt.c uses g_initable_init, which is part of GIO.
-rw-r--r--pkcs11/wrap-layer/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkcs11/wrap-layer/Makefile.am b/pkcs11/wrap-layer/Makefile.am
index 4d5c536e..e49a9559 100644
--- a/pkcs11/wrap-layer/Makefile.am
+++ b/pkcs11/wrap-layer/Makefile.am
@@ -20,11 +20,13 @@ libgkm_wrap_layer_la_SOURCES = \
libgkm_wrap_layer_la_LIBADD = \
$(top_builddir)/pkcs11/gkm/libgkm.la \
$(GTHREAD_LIBS) \
- $(GLIB_LIBS)
+ $(GLIB_LIBS) \
+ $(GIO_LIBS)
libgkm_wrap_layer_la_CFLAGS = \
$(GTHREAD_CFLAGS) \
- $(GLIB_CFLAGS)
+ $(GLIB_CFLAGS) \
+ $(GIO_CFLAGS)
# ------------------------------------------------------------------------------