commit fa2d5b09474140f0392d6eb55c2f0f8dccd11048
parent ea52a9126da344a3e1bcaecc149e24f6b54a5ccb
Author: Florian Dold <florian@dold.me>
Date: Wed, 24 Sep 2025 18:54:13 +0200
libdonau, not libtaler
Diffstat:
4 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/debian/libdonau-dev.install b/debian/libdonau-dev.install
@@ -1,5 +1,5 @@
# Headers
-usr/include/taler/*
+usr/include/donau/*
# Plain .so symlinks
usr/lib/*/libdonau*.so
diff --git a/src/donaudb/Makefile.am b/src/donaudb/Makefile.am
@@ -62,10 +62,10 @@ plugindir = $(libdir)/donau
if HAVE_POSTGRESQL
plugin_LTLIBRARIES = \
- libtaler_plugin_donaudb_postgres.la
+ libdonau_plugin_donaudb_postgres.la
endif
-libtaler_plugin_donaudb_postgres_la_SOURCES = \
+libdonau_plugin_donaudb_postgres_la_SOURCES = \
plugin_donaudb_postgres.c pg_helper.h \
pg_preflight.h pg_preflight.c \
pg_commit.h pg_commit.c \
@@ -96,7 +96,7 @@ libtaler_plugin_donaudb_postgres_la_SOURCES = \
pg_insert_submitted_receipts.h pg_insert_submitted_receipts.c
-libtaler_plugin_donaudb_postgres_la_LIBADD = \
+libdonau_plugin_donaudb_postgres_la_LIBADD = \
$(LTLIBINTL) \
$(top_builddir)/src/pq/libdonaupq.la \
$(top_builddir)/src/util/libdonauutil.la \
@@ -106,7 +106,7 @@ libtaler_plugin_donaudb_postgres_la_LIBADD = \
-lgnunetutil \
-lpq \
$(XLIB)
-libtaler_plugin_donaudb_postgres_la_LDFLAGS = \
+libdonau_plugin_donaudb_postgres_la_LDFLAGS = \
$(TALER_PLUGIN_LDFLAGS)
@@ -147,4 +147,4 @@ test_donaudb_postgres_LDADD = \
$(XLIB)
EXTRA_test_donaudb_postgres_DEPENDENCIES = \
- libtaler_plugin_donaudb_postgres.la
+ libdonau_plugin_donaudb_postgres.la
diff --git a/src/donaudb/donaudb_plugin.c b/src/donaudb/donaudb_plugin.c
@@ -44,7 +44,7 @@ DONAUDB_plugin_load (const struct GNUNET_CONFIGURATION_Handle *cfg)
return NULL;
}
GNUNET_asprintf (&lib_name,
- "libtaler_plugin_donaudb_%s",
+ "libdonau_plugin_donaudb_%s",
plugin_name);
GNUNET_free (plugin_name);
plugin = GNUNET_PLUGIN_load (DONAU_project_data (),
diff --git a/src/donaudb/plugin_donaudb_postgres.c b/src/donaudb/plugin_donaudb_postgres.c
@@ -148,10 +148,10 @@ DH_PG_internal_setup (struct PostgresClosure *pg)
* DONAUDB_Plugin`
*/
void *
-libtaler_plugin_donaudb_postgres_init (void *cls);
+libdonau_plugin_donaudb_postgres_init (void *cls);
void *
-libtaler_plugin_donaudb_postgres_init (void *cls)
+libdonau_plugin_donaudb_postgres_init (void *cls)
{
const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
struct PostgresClosure *pg;