aboutsummaryrefslogtreecommitdiff
path: root/src/psycstore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-07-06 11:37:42 +0000
committerChristian Grothoff <christian@grothoff.org>2016-07-06 11:37:42 +0000
commit43864a32204bf109593cbfbc5801f89cf39b7bfa (patch)
tree00c027f4bde05afd05e2e4b34ca8d44eb3331989 /src/psycstore
parentc83d28a362cd6a2613687ac80013ea79c1edbcee (diff)
downloadgnunet-43864a32204bf109593cbfbc5801f89cf39b7bfa.tar.gz
gnunet-43864a32204bf109593cbfbc5801f89cf39b7bfa.zip
-separate mysql plugin build from sqlite, FTBFS so not active for now
Diffstat (limited to 'src/psycstore')
-rw-r--r--src/psycstore/Makefile.am17
1 files changed, 13 insertions, 4 deletions
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