-separate mysql plugin build from sqlite, FTBFS so not active for now
authorChristian Grothoff <christian@grothoff.org>
Wed, 6 Jul 2016 11:37:42 +0000 (11:37 +0000)
committerChristian Grothoff <christian@grothoff.org>
Wed, 6 Jul 2016 11:37:42 +0000 (11:37 +0000)
po/POTFILES.in
src/psycstore/Makefile.am

index 97732d8b4bad553aaae378750eb90dbdb3a95ce1..067d12f4d516c9f1e8d2ea57aa88630198d55a86 100644 (file)
@@ -277,6 +277,7 @@ src/pq/pq_result_helper.c
 src/psyc/gnunet-service-psyc.c
 src/psyc/psyc_api.c
 src/psycstore/gnunet-service-psycstore.c
+src/psycstore/plugin_psycstore_mysql.c
 src/psycstore/plugin_psycstore_sqlite.c
 src/psycstore/psycstore_api.c
 src/psycutil/psyc_env.c
index add6b3ee92e3bc87526e267034fffbd4fea7e643..ee61b8c78599e83fc78ded588f9279602b2d0c93 100644 (file)
@@ -55,14 +55,24 @@ gnunet_service_psycstore_LDADD = \
 plugin_LTLIBRARIES = \
   $(SQLITE_PLUGIN)
 
-libgnunet_plugin_psycstore_sqlite_la_SOURCES = \
-  plugin_psycstore_sqlite.c \
+libgnunet_plugin_psycstore_mysql_la_SOURCES = \
   plugin_psycstore_mysql.c
-libgnunet_plugin_psycstore_sqlite_la_LIBADD = \
+libgnunet_plugin_psycstore_mysql_la_LIBADD = \
   libgnunetpsycstore.la  \
   $(top_builddir)/src/my/libgnunetmy.la \
   $(top_builddir)/src/mysql/libgnunetmysql.la \
   $(top_builddir)/src/statistics/libgnunetstatistics.la \
+  $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
+  $(LTLIBINTL)
+libgnunet_plugin_psycstore_mysql_la_LDFLAGS = \
+ $(GN_PLUGIN_LDFLAGS)
+
+
+libgnunet_plugin_psycstore_sqlite_la_SOURCES = \
+  plugin_psycstore_sqlite.c
+libgnunet_plugin_psycstore_sqlite_la_LIBADD = \
+  libgnunetpsycstore.la  \
+  $(top_builddir)/src/statistics/libgnunetstatistics.la \
   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
   $(LTLIBINTL)
 libgnunet_plugin_psycstore_sqlite_la_LDFLAGS = \
@@ -98,4 +108,3 @@ test_plugin_psycstore_sqlite_SOURCES = \
 test_plugin_psycstore_sqlite_LDADD = \
   $(top_builddir)/src/testing/libgnunettesting.la \
   $(top_builddir)/src/util/libgnunetutil.la
-