exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 34c6830882936a3aee4a7af316093e5660abc4b7
parent c916182bf8061372bdf2f4c293b891c8cff641ad
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  8 Apr 2024 17:02:34 +0200

-fix misc package build issues

Diffstat:
Mdebian/control | 3+--
Mdebian/rules | 28+++++++++++++---------------
Msrc/bank-lib/Makefile.am | 4++--
Msrc/curl/Makefile.am | 2+-
Msrc/lib/Makefile.am | 4++--
5 files changed, 19 insertions(+), 22 deletions(-)

diff --git a/debian/control b/debian/control @@ -54,8 +54,7 @@ Depends: pandoc, groff, ghostscript, - ${misc:Depends}, - ${shlibs:Depends} + ${misc:Depends} Description: Tool to generate the terms of service and privacy policy for various languages and data formats. Useful for various GNU Taler components. diff --git a/debian/rules b/debian/rules @@ -36,21 +36,19 @@ override_dh_auto_clean: override_dh_installsystemd: # Need to specify units manually, since we have multiple # and dh_installsystemd by default only looks for "<package>.service". - dh_installsystemd -ptaler-exchange --name=taler-exchange-httpd.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-aggregator.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-expire.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-transfer.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-wirewatch.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-secmod-cs.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-secmod-eddsa.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-secmod-rsa.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange-closer.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange.target --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange --name=taler-exchange.slice --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-auditor --name=taler-auditor-httpd.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-auditor --name=taler-helper-auditor-deposits.service --no-start --no-enable --no-stop-on-upgrade - dh_installsystemd -ptaler-exchange-offline --name=taler-exchange-offline.service --no-start --no-enable - dh_installsystemd -ptaler-exchange-offline --name=taler-exchange-offline.timer --no-start --no-enable + dh_installsystemd -ptaler-exchange --name=taler-exchange-httpd --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-aggregator --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-expire --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-transfer --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-wirewatch --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-secmod-cs --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-secmod-eddsa --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-secmod-rsa --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange-closer --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange --name=taler-exchange --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-auditor --name=taler-auditor-httpd --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-auditor --name=taler-helper-auditor-deposits --no-start --no-enable --no-stop-on-upgrade + dh_installsystemd -ptaler-exchange-offline --name=taler-exchange-offline --no-start --no-enable # final invocation to generate daemon reload dh_installsystemd diff --git a/src/bank-lib/Makefile.am b/src/bank-lib/Makefile.am @@ -51,7 +51,7 @@ libtalerbank_la_LIBADD = \ -lgnunetjson \ -lgnunetutil \ -ljansson \ - $(LIBGNURLCURL_LIBS) \ + -lcurl \ $(XLIB) libtalerfakebank_la_LDFLAGS = \ @@ -94,7 +94,7 @@ libtalerfakebank_la_LIBADD = \ -lgnunetjson \ -lgnunetutil \ -ljansson \ - $(LIBGNURLCURL_LIBS) \ + -lcurl \ -lmicrohttpd \ -lpthread \ $(XLIB) diff --git a/src/curl/Makefile.am b/src/curl/Makefile.am @@ -17,7 +17,7 @@ libtalercurl_la_SOURCES = \ libtalercurl_la_LIBADD = \ -lgnunetcurl \ -lgnunetutil \ - $(LIBGNURLCURL_LIBS) \ + -lcurl \ -ljansson \ -lz \ -lm \ diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am @@ -87,8 +87,8 @@ libtalerexchange_la_LIBADD = \ -lgnunetjson \ -lgnunetutil \ -ljansson \ + -lcurl \ -lm \ - $(LIBGNURLCURL_LIBS) \ $(XLIB) libtalerauditor_la_LDFLAGS = \ @@ -106,8 +106,8 @@ libtalerauditor_la_LIBADD = \ -lgnunetjson \ -lgnunetutil \ -ljansson \ + -lcurl \ -lm \ - $(LIBGNURLCURL_LIBS) \ $(XLIB)