aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--po/POTFILES.in1
-rw-r--r--src/psycstore/Makefile.am17
2 files changed, 14 insertions, 4 deletions
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 97732d8b4..067d12f4d 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -277,6 +277,7 @@ src/pq/pq_result_helper.c
277src/psyc/gnunet-service-psyc.c 277src/psyc/gnunet-service-psyc.c
278src/psyc/psyc_api.c 278src/psyc/psyc_api.c
279src/psycstore/gnunet-service-psycstore.c 279src/psycstore/gnunet-service-psycstore.c
280src/psycstore/plugin_psycstore_mysql.c
280src/psycstore/plugin_psycstore_sqlite.c 281src/psycstore/plugin_psycstore_sqlite.c
281src/psycstore/psycstore_api.c 282src/psycstore/psycstore_api.c
282src/psycutil/psyc_env.c 283src/psycutil/psyc_env.c
diff --git a/src/psycstore/Makefile.am b/src/psycstore/Makefile.am
index add6b3ee9..ee61b8c78 100644
--- a/src/psycstore/Makefile.am
+++ b/src/psycstore/Makefile.am
@@ -55,14 +55,24 @@ gnunet_service_psycstore_LDADD = \
55plugin_LTLIBRARIES = \ 55plugin_LTLIBRARIES = \
56 $(SQLITE_PLUGIN) 56 $(SQLITE_PLUGIN)
57 57
58libgnunet_plugin_psycstore_sqlite_la_SOURCES = \ 58libgnunet_plugin_psycstore_mysql_la_SOURCES = \
59 plugin_psycstore_sqlite.c \
60 plugin_psycstore_mysql.c 59 plugin_psycstore_mysql.c
61libgnunet_plugin_psycstore_sqlite_la_LIBADD = \ 60libgnunet_plugin_psycstore_mysql_la_LIBADD = \
62 libgnunetpsycstore.la \ 61 libgnunetpsycstore.la \
63 $(top_builddir)/src/my/libgnunetmy.la \ 62 $(top_builddir)/src/my/libgnunetmy.la \
64 $(top_builddir)/src/mysql/libgnunetmysql.la \ 63 $(top_builddir)/src/mysql/libgnunetmysql.la \
65 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 64 $(top_builddir)/src/statistics/libgnunetstatistics.la \
65 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
66 $(LTLIBINTL)
67libgnunet_plugin_psycstore_mysql_la_LDFLAGS = \
68 $(GN_PLUGIN_LDFLAGS)
69
70
71libgnunet_plugin_psycstore_sqlite_la_SOURCES = \
72 plugin_psycstore_sqlite.c
73libgnunet_plugin_psycstore_sqlite_la_LIBADD = \
74 libgnunetpsycstore.la \
75 $(top_builddir)/src/statistics/libgnunetstatistics.la \
66 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \ 76 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
67 $(LTLIBINTL) 77 $(LTLIBINTL)
68libgnunet_plugin_psycstore_sqlite_la_LDFLAGS = \ 78libgnunet_plugin_psycstore_sqlite_la_LDFLAGS = \
@@ -98,4 +108,3 @@ test_plugin_psycstore_sqlite_SOURCES = \
98test_plugin_psycstore_sqlite_LDADD = \ 108test_plugin_psycstore_sqlite_LDADD = \
99 $(top_builddir)/src/testing/libgnunettesting.la \ 109 $(top_builddir)/src/testing/libgnunettesting.la \
100 $(top_builddir)/src/util/libgnunetutil.la 110 $(top_builddir)/src/util/libgnunetutil.la
101