exchange

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

commit 016c4a5cf2cdbcc0ee7b2de4bedadeb1d9ed9259
parent c3eb0fd8e207d173a40e9546d2603841f1bdf19d
Author: Jonathan Buchanan <jonathan.russ.buchanan@gmail.com>
Date:   Wed, 22 Jul 2020 01:37:39 -0400

update gana, add error codes c file

Diffstat:
Mbootstrap | 3+++
Msrc/util/Makefile.am | 1+
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/bootstrap b/bootstrap @@ -15,6 +15,9 @@ cd contrib/gana/gnu-taler-error-codes make cd ../../.. cp contrib/gana/gnu-taler-error-codes/taler-error-codes.h src/include/taler_error_codes.h +cp contrib/gana/gnu-taler-error-codes/taler-error-codes.c src/util/taler_error_codes.c +# Change the include in the source file so it can find the header +sed -i '' 's/taler\-error\-codes\.h/taler_error_codes.h/g' src/util/taler_error_codes.c # This is more portable than `which' but comes with # the caveat of not(?) properly working on busybox's ash: diff --git a/src/util/Makefile.am b/src/util/Makefile.am @@ -40,6 +40,7 @@ libtalerutil_la_SOURCES = \ getopt.c \ mhd.c \ payto.c \ + taler_error_codes.c \ url.c \ util.c \ yna.c \