View Issue Details

IDProjectCategoryView StatusLast Update
0010119Talermerchant backendpublic2025-06-24 11:51
Reporterhank Assigned ToChristian Grothoff  
PrioritynormalSeverityminorReproducibilityalways
Status assignedResolutionopen 
Product Version1.0 
Summary0010119: configure.ac references wrong include directory
Descriptionhttps://git.gnunet.org/merchant.git/tree/configure.ac#n277

I think this

CPPFLAGS="-I$with_exchange/include

has to be this

CPPFLAGS="-I$with_exchange/include/taler

instead, it wouldn't compile for me otherwise.

The other two instances in the file work coincidentally but should be adjusted the same for consistency.
TagsNo tags attached.

Activities

Christian Grothoff

2025-06-22 12:54

manager   ~0025301

Eh, that's strange. But, I was fixing includes in the exchange yesterday, maybe you got a copy of exchange.git with the regression?
Could you please try again with Exchange from Git master? I cannot reproduce this (with the latest *exchange.git*).

hank

2025-06-22 14:32

reporter   ~0025303

this is merchant tag v1.0.3 vs. exchange tag V1
0.12.

will try master later.
 
I don't have the configure.log at hand right now but ./configure tries to compile taler_exchange_service.h which includes <taler-exchange/common.h> which is located in /usr/local/include/taler/taler-exchange assuming a default `make install`.

So the compiler has to be given the include directory /usr/local/include/taler to search for includes.

It sort of works for taler_utils.h and the other one because they don't have transitive dependencies in the taler-exchange directory and don't need a -I flag to begin with.

hank

2025-06-22 14:48

reporter   ~0025304

from a quick look at recent commits in exchange.git the location of includes in the source tree has moved but in the end they still get installed to the same target?

Christian Grothoff

2025-06-22 18:08

manager   ~0025307

Same target, but some files had some intermittent error that prevented transitive includes from working. Did you try with the Git masters?

hank

2025-06-22 18:19

reporter   ~0025308

master works I can see that the import of common.h in taler_exchange_service.h as an additional "taler/" prefix now.

however with exchange master merchant has another problem now:
chmod: cannot access 'procedures.sql': No such file or directory

I am attaching a Dockerfile that reproduces the problem
Dockerfile (988 bytes)   
FROM debian:bookworm

RUN apt-get update
RUN apt-get -y install git pkg-config jq meson recutils autopoint texinfo
RUN apt-get -y install libqrencode-dev libsqlite3-dev libltdl-dev libunistring-dev libsodium-dev libargon2-dev libcurl4-gnutls-dev libgcrypt20-dev libjansson-dev libpq-dev libmicrohttpd-dev python3-jinja2 postgresql zlib1g-dev

RUN mkdir /build
WORKDIR /build
RUN git clone --branch v0.24.2 --recurse-submodules https://git.gnunet.org/gnunet.git
RUN git clone --recurse-submodules https://git.taler.net/exchange.git
RUN git clone --branch v1.0.3 --recurse-submodules https://git.taler.net/merchant.git

WORKDIR /build/gnunet
RUN ./configure --disable-documentation
RUN make
RUN make install
RUN ldconfig

WORKDIR /build/exchange
RUN ./bootstrap
RUN ./configure --with-gnunet=/usr/local
RUN make
RUN make install
RUN ldconfig

WORKDIR /build/merchant
RUN ./bootstrap
RUN ./configure --with-exchange=/usr/local --with-gnunet=/usr/local
RUN make
RUN make install
RUN ldconfig
Dockerfile (988 bytes)   

Christian Grothoff

2025-06-23 18:30

manager   ~0025330

procedures.sql is dynamically generated using cc, sed and awk. Are all of those tools part of your Docker image?

Christian Grothoff

2025-06-23 18:30

manager   ~0025331

Would be nice to have the full output of
$ make install V=1

hank

2025-06-24 07:37

reporter   ~0025335

yes the docker image has sed, awk, cc but looking at the output now, while there is an error message about procedures.sql there somewhere, that's not what it's failing on. instead this seems to be the fatal part:

make[4]: Entering directory '/home/tenant/dev/htm/taler-merchant/src/backenddb'
  CC merchantdb_plugin.lo
In file included from merchantdb_plugin.c:25:
../../src/include/taler_merchantdb_plugin.h:45:8: error: redefinition of 'struct TALER_MerchantPostDataHashP'
   45 | struct TALER_MerchantPostDataHashP
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/include/taler/taler_util.h:32,
                 from merchantdb_plugin.c:23:
/usr/local/include/taler/taler_crypto_lib.h:1195:8: note: originally defined here
 1195 | struct TALER_MerchantPostDataHashP
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../src/include/taler_merchantdb_plugin.h:58:8: error: redefinition of 'struct TALER_MerchantAuthenticationHashP'
   58 | struct TALER_MerchantAuthenticationHashP
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/taler/taler_crypto_lib.h:1170:8: note: originally defined here
 1170 | struct TALER_MerchantAuthenticationHashP
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../src/include/taler_merchantdb_plugin.h:71:8: error: redefinition of 'struct TALER_MerchantAuthenticationSaltP'
   71 | struct TALER_MerchantAuthenticationSaltP
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/taler/taler_crypto_lib.h:1183:8: note: originally defined here
 1183 | struct TALER_MerchantAuthenticationSaltP
      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[4]: *** [Makefile:1320: merchantdb_plugin.lo] Error 1
make[4]: Leaving directory '/home/tenant/dev/htm/taler-merchant/src/backenddb'
make[3]: *** [Makefile:1034: all] Error 2
make[3]: Leaving directory '/home/tenant/dev/htm/taler-merchant/src/backenddb'
make[2]: *** [Makefile:410: all-recursive] Error 1
make[2]: Leaving directory '/home/tenant/dev/htm/taler-merchant/src'
make[1]: *** [Makefile:677: all-recursive] Error 1
make[1]: Leaving directory '/home/tenant/dev/htm/taler-merchant'
make: *** [Makefile:608: all] Error 2

hank

2025-06-24 11:50

reporter   ~0025341

maybe you'd want to include a Dockerfile like this in your CI? your current CI takes a detour via some debian packages.

hank

2025-06-24 11:51

reporter   ~0025342

attaching "make install V=1" if it's still of any help
makeinstall.txt (91,618 bytes)   
Making install in .
make[1]: Entering directory '/home/tenant/dev/htm/taler-exchange'
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange'
make[2]: Nothing to be done for 'install-exec-am'.
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange'
make[1]: Leaving directory '/home/tenant/dev/htm/taler-exchange'
Making install in contrib
make[1]: Entering directory '/home/tenant/dev/htm/taler-exchange/contrib'
Making install in .
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/contrib'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/contrib'
 /usr/bin/mkdir -p '/usr/local/bin'
 /usr/bin/install -c taler-auditor-dbconfig taler-exchange-dbconfig taler-terms-generator '/usr/local/bin'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/aml-spa/'
 /usr/bin/install -c -m 644 wallet-core/aml-backoffice/bof wallet-core/aml-backoffice/forms.json wallet-core/aml-backoffice/index.css wallet-core/aml-backoffice/index.css.map wallet-core/aml-backoffice/index.html wallet-core/aml-backoffice/index.js wallet-core/aml-backoffice/index.js.map wallet-core/aml-backoffice/version.txt '/usr/local/share/taler-exchange/aml-spa/'
 /usr/bin/mkdir -p '/usr/local/share/taler-auditor/spa/'
 /usr/bin/install -c -m 644 wallet-core/auditor-backoffice/bof wallet-core/auditor-backoffice/index.css wallet-core/auditor-backoffice/index.css.map wallet-core/auditor-backoffice/index.html wallet-core/auditor-backoffice/index.js wallet-core/auditor-backoffice/index.js.map wallet-core/auditor-backoffice/languageicon-LWKRUH5D.svg wallet-core/auditor-backoffice/logo-2021-VSZSJ4QZ.svg wallet-core/auditor-backoffice/materialdesignicons-webfont-4.9.95-7W2GKO6O.woff2 wallet-core/auditor-backoffice/materialdesignicons-webfont-4.9.95-GELXKCZG.ttf wallet-core/auditor-backoffice/materialdesignicons-webfont-4.9.95-HENMUVWG.eot wallet-core/auditor-backoffice/materialdesignicons-webfont-4.9.95-WP2MXZKI.woff wallet-core/auditor-backoffice/version.txt wallet-core/auditor-backoffice/XRXV3I6Li01BKofINeaE-34D53UZZ.ttf '/usr/local/share/taler-auditor/spa/'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/kyc-spa/'
 /usr/bin/install -c -m 644 wallet-core/kyc/bof wallet-core/kyc/forms.json wallet-core/kyc/index.css wallet-core/kyc/index.css.map wallet-core/kyc/index.html wallet-core/kyc/index.js wallet-core/kyc/index.js.map wallet-core/kyc/version.txt '/usr/local/share/taler-exchange/kyc-spa/'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/templates/'
 /usr/bin/install -c -m 644 kycaid-invalid-request.en.must kyc-proof-already-done.en.must kyc-proof-bad-request.en.must kyc-proof-endpoint-unknown.en.must kyc-proof-internal-error.en.must kyc-proof-target-unknown.en.must oauth2-authentication-failure.en.must oauth2-authorization-failure.en.must oauth2-authorization-failure-malformed.en.must oauth2-bad-request.en.must oauth2-conversion-failure.en.must oauth2-provider-failure.en.must persona-exchange-unauthorized.en.must persona-load-failure.en.must persona-exchange-unpaid.en.must persona-logic-failure.en.must persona-invalid-response.en.must persona-network-timeout.en.must persona-kyc-failed.en.must persona-provider-failure.en.must '/usr/local/share/taler-exchange/templates/'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/terms/'
 /usr/bin/install -c -m 644 exchange-pp-v0.de.rst exchange-pp-v0.en.rst exchange-pp-v0.fr.rst exchange-tos-bfh-v0.en.rst exchange-tos-netzbon-v0.de.rst exchange-tos-netzbon-v0.fr.rst exchange-tos-tops-v0.de.rst exchange-tos-tops-v0.en.rst exchange-tos-tops-v0.fr.rst exchange-tos-v0.en.rst '/usr/local/share/taler-exchange/terms/'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/contrib'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/contrib'
make[1]: Leaving directory '/home/tenant/dev/htm/taler-exchange/contrib'
Making install in src
make[1]: Entering directory '/home/tenant/dev/htm/taler-exchange/src'
Making install in include
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include'
Making install in taler
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include/taler'
Making install in taler-exchange
make[4]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include/taler/taler-exchange'
make[5]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include/taler/taler-exchange'
make[5]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/usr/local/include/taler/taler-exchange'
 /usr/bin/install -c -m 644 aml_legitimizations_get.h reserves_get.h common.h '/usr/local/include/taler/taler-exchange'
make[5]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include/taler/taler-exchange'
make[4]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include/taler/taler-exchange'
Making install in .
make[4]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include/taler'
make[5]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include/taler'
make[5]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/usr/local/include/taler'
 /usr/bin/install -c -m 644 platform.h taler_auditor_service.h taler_amount_lib.h taler_attributes.h taler_auditordb_lib.h taler_auditordb_plugin.h taler_bank_service.h taler_crypto_lib.h taler_curl_lib.h taler_dbevents.h taler_error_codes.h taler_exchange_service.h taler_exchangedb_lib.h taler_exchangedb_plugin.h taler_extensions.h taler_extensions_policy.h taler_fakebank_lib.h taler_kyclogic_lib.h taler_kyclogic_plugin.h taler_json_lib.h taler_testing_lib.h taler_util.h taler_mhd_lib.h taler_pq_lib.h taler_signatures.h taler_sq_lib.h taler_templating_lib.h taler_twister_testing_lib.h '/usr/local/include/taler'
make[5]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include/taler'
make[4]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include/taler'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include/taler'
Making install in .
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include'
make[4]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/include'
make[4]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/usr/local/include/taler'
 /usr/bin/install -c -m 644 gettext.h '/usr/local/include/taler'
make[4]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/include'
Making install in util
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/util'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/util'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerutil.la '/usr/local/lib'
libtool: install: /usr/bin/install -c .libs/libtalerutil.so.8.0.0 /usr/local/lib/libtalerutil.so.8.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerutil.so.8.0.0 libtalerutil.so.8 || { rm -f libtalerutil.so.8 && ln -s libtalerutil.so.8.0.0 libtalerutil.so.8; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerutil.so.8.0.0 libtalerutil.so || { rm -f libtalerutil.so && ln -s libtalerutil.so.8.0.0 libtalerutil.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerutil.lai /usr/local/lib/libtalerutil.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c taler-auditor-config taler-exchange-secmod-eddsa taler-exchange-secmod-rsa taler-exchange-secmod-cs taler-exchange-config '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/taler-auditor-config /usr/local/bin/taler-auditor-config
libtool: install: /usr/bin/install -c .libs/taler-exchange-secmod-eddsa /usr/local/bin/taler-exchange-secmod-eddsa
libtool: install: /usr/bin/install -c .libs/taler-exchange-secmod-rsa /usr/local/bin/taler-exchange-secmod-rsa
libtool: install: /usr/bin/install -c .libs/taler-exchange-secmod-cs /usr/local/bin/taler-exchange-secmod-cs
libtool: install: /usr/bin/install -c .libs/taler-exchange-config /usr/local/bin/taler-exchange-config
 /usr/bin/mkdir -p '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/install -c -m 644 auditor-paths.conf '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/install -c -m 644 currencies.conf exchange-paths.conf taler-exchange-secmod-eddsa.conf taler-exchange-secmod-rsa.conf taler-exchange-secmod-cs.conf '/usr/local/share/taler-exchange/config.d/'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/util'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/util'
Making install in json
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/json'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/json'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerjson.la '/usr/local/lib'
libtool: warning: relinking 'libtalerjson.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/json; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 5:1:1 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerjson.la -rpath /usr/local/lib conversion.lo i18n.lo json.lo json_helper.lo json_pack.lo json_wire.lo ../../src/util/libtalerutil.la -lgnunetjson -lgnunetutil -lunistring -ljansson -lm )
libtool: install: /usr/bin/install -c .libs/libtalerjson.so.4.1.1T /usr/local/lib/libtalerjson.so.4.1.1
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerjson.so.4.1.1 libtalerjson.so.4 || { rm -f libtalerjson.so.4 && ln -s libtalerjson.so.4.1.1 libtalerjson.so.4; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerjson.so.4.1.1 libtalerjson.so || { rm -f libtalerjson.so && ln -s libtalerjson.so.4.1.1 libtalerjson.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerjson.lai /usr/local/lib/libtalerjson.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/json'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/json'
Making install in extensions
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/extensions'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/extensions'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerextensions.la '/usr/local/lib'
libtool: warning: relinking 'libtalerextensions.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/extensions; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 0:0:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerextensions.la -rpath /usr/local/lib extensions.lo age_restriction_helper.lo ../../src/json/libtalerjson.la ../../src/util/libtalerutil.la -lgnunetjson -lgnunetutil -ljansson )
libtool: install: /usr/bin/install -c .libs/libtalerextensions.so.0.0.0T /usr/local/lib/libtalerextensions.so.0.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerextensions.so.0.0.0 libtalerextensions.so.0 || { rm -f libtalerextensions.so.0 && ln -s libtalerextensions.so.0.0.0 libtalerextensions.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerextensions.so.0.0.0 libtalerextensions.so || { rm -f libtalerextensions.so && ln -s libtalerextensions.so.0.0.0 libtalerextensions.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerextensions.lai /usr/local/lib/libtalerextensions.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/extensions'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/extensions'
Making install in curl
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/curl'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/curl'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalercurl.la '/usr/local/lib'
libtool: install: /usr/bin/install -c .libs/libtalercurl.so.0.0.1 /usr/local/lib/libtalercurl.so.0.0.1
libtool: install: (cd /usr/local/lib && { ln -s -f libtalercurl.so.0.0.1 libtalercurl.so.0 || { rm -f libtalercurl.so.0 && ln -s libtalercurl.so.0.0.1 libtalercurl.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalercurl.so.0.0.1 libtalercurl.so || { rm -f libtalercurl.so && ln -s libtalercurl.so.0.0.1 libtalercurl.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalercurl.lai /usr/local/lib/libtalercurl.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/curl'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/curl'
Making install in pq
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/pq'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/pq'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerpq.la '/usr/local/lib'
libtool: warning: relinking 'libtalerpq.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/pq; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 0:1:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerpq.la -rpath /usr/local/lib pq_common.lo pq_query_helper.lo pq_result_helper.lo ../../src/util/libtalerutil.la -lgnunetutil -ljansson -lgnunetpq -lpq )
libtool: install: /usr/bin/install -c .libs/libtalerpq.so.0.0.1T /usr/local/lib/libtalerpq.so.0.0.1
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerpq.so.0.0.1 libtalerpq.so.0 || { rm -f libtalerpq.so.0 && ln -s libtalerpq.so.0.0.1 libtalerpq.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerpq.so.0.0.1 libtalerpq.so || { rm -f libtalerpq.so && ln -s libtalerpq.so.0.0.1 libtalerpq.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerpq.lai /usr/local/lib/libtalerpq.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/pq'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/pq'
Making install in sq
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/sq'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/sq'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalersq.la '/usr/local/lib'
libtool: warning: relinking 'libtalersq.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/sq; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 0:0:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalersq.la -rpath /usr/local/lib sq_query_helper.lo sq_result_helper.lo ../../src/util/libtalerutil.la -lgnunetutil -ljansson -lsqlite3 )
libtool: install: /usr/bin/install -c .libs/libtalersq.so.0.0.0T /usr/local/lib/libtalersq.so.0.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalersq.so.0.0.0 libtalersq.so.0 || { rm -f libtalersq.so.0 && ln -s libtalersq.so.0.0.0 libtalersq.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalersq.so.0.0.0 libtalersq.so || { rm -f libtalersq.so && ln -s libtalersq.so.0.0.0 libtalersq.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalersq.lai /usr/local/lib/libtalersq.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/sq'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/sq'
Making install in mhd
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/mhd'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/mhd'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalermhd.la '/usr/local/lib'
libtool: warning: relinking 'libtalermhd.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/mhd; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 7:0:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalermhd.la -rpath /usr/local/lib mhd.lo mhd_config.lo mhd_legal.lo mhd_parsing.lo mhd_responses.lo mhd_run.lo mhd_spa.lo ../../src/json/libtalerjson.la ../../src/util/libtalerutil.la -lgnunetjson -lgnunetmhd -lgnunetutil -lmicrohttpd -ljansson -lz )
libtool: install: /usr/bin/install -c .libs/libtalermhd.so.7.0.0T /usr/local/lib/libtalermhd.so.7.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalermhd.so.7.0.0 libtalermhd.so.7 || { rm -f libtalermhd.so.7 && ln -s libtalermhd.so.7.0.0 libtalermhd.so.7; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalermhd.so.7.0.0 libtalermhd.so || { rm -f libtalermhd.so && ln -s libtalermhd.so.7.0.0 libtalermhd.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalermhd.lai /usr/local/lib/libtalermhd.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/mhd'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/mhd'
Making install in templating
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/templating'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/templating'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalertemplating.la '/usr/local/lib'
libtool: warning: relinking 'libtalertemplating.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/templating; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -DMUSTACH_SAFE=1 -DMUSTACH_LOAD_TEMPLATE=0 -Wall -Wno-address-of-packed-member -g -O2 -version-info 1:1:1 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalertemplating.la -rpath /usr/local/lib libtalertemplating_la-mustach.lo libtalertemplating_la-mustach-wrap.lo libtalertemplating_la-mustach-jansson.lo libtalertemplating_la-templating_api.lo ../../src/mhd/libtalermhd.la ../../src/util/libtalerutil.la -lmicrohttpd -lgnunetjson -lgnunetutil -ljansson )
libtool: install: /usr/bin/install -c .libs/libtalertemplating.so.0.1.1T /usr/local/lib/libtalertemplating.so.0.1.1
libtool: install: (cd /usr/local/lib && { ln -s -f libtalertemplating.so.0.1.1 libtalertemplating.so.0 || { rm -f libtalertemplating.so.0 && ln -s libtalertemplating.so.0.1.1 libtalertemplating.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalertemplating.so.0.1.1 libtalertemplating.so || { rm -f libtalertemplating.so && ln -s libtalertemplating.so.0.1.1 libtalertemplating.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalertemplating.lai /usr/local/lib/libtalertemplating.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/templating'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/templating'
Making install in bank-lib
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/bank-lib'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/bank-lib'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerbank.la libtalerfakebank.la '/usr/local/lib'
libtool: warning: relinking 'libtalerbank.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/bank-lib; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 3:1:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerbank.la -rpath /usr/local/lib bank_api_account_token.lo bank_api_admin_add_incoming.lo bank_api_admin_add_kycauth.lo bank_api_common.lo bank_api_credit.lo bank_api_debit.lo bank_api_transfer.lo bank_api_parse.lo ../../src/json/libtalerjson.la ../../src/curl/libtalercurl.la ../../src/util/libtalerutil.la -lgnunetcurl -lgnunetjson -lgnunetmhd -lgnunetutil -ljansson -lcurl )
libtool: install: /usr/bin/install -c .libs/libtalerbank.so.3.0.1T /usr/local/lib/libtalerbank.so.3.0.1
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerbank.so.3.0.1 libtalerbank.so.3 || { rm -f libtalerbank.so.3 && ln -s libtalerbank.so.3.0.1 libtalerbank.so.3; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerbank.so.3.0.1 libtalerbank.so || { rm -f libtalerbank.so && ln -s libtalerbank.so.3.0.1 libtalerbank.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerbank.lai /usr/local/lib/libtalerbank.la
libtool: warning: relinking 'libtalerfakebank.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/bank-lib; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 0:0:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerfakebank.la -rpath /usr/local/lib fakebank.lo fakebank_api_check.lo fakebank_common_lookup.lo fakebank_common_lp.lo fakebank_common_make_admin_transfer.lo fakebank_common_parser.lo fakebank_common_transact.lo fakebank_stop.lo fakebank_bank.lo fakebank_bank_accounts_withdrawals.lo fakebank_bank_get_accounts.lo fakebank_bank_get_withdrawals.lo fakebank_bank_get_root.lo fakebank_bank_post_accounts_token.lo fakebank_bank_post_accounts_withdrawals.lo fakebank_bank_post_withdrawals_id_op.lo fakebank_bank_testing_register.lo fakebank_tbr.lo fakebank_tbr_get_history.lo fakebank_tbr_get_root.lo fakebank_tbi.lo fakebank_tbi_get_withdrawal_operation.lo fakebank_tbi_post_withdrawal_operation.lo fakebank_twg.lo fakebank_twg_admin_add_incoming.lo fakebank_twg_admin_add_kycauth.lo fakebank_twg_get_root.lo fakebank_twg_get_transfers.lo fakebank_twg_get_transfers_id.lo fakebank_twg_history.lo fakebank_twg_transfer.lo ../../src/json/libtalerjson.la ../../src/mhd/libtalermhd.la ../../src/util/libtalerutil.la -lgnunetmhd -lgnunetjson -lgnunetutil -ljansson -lcurl -lmicrohttpd -lpthread )
libtool: install: /usr/bin/install -c .libs/libtalerfakebank.so.0.0.0T /usr/local/lib/libtalerfakebank.so.0.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerfakebank.so.0.0.0 libtalerfakebank.so.0 || { rm -f libtalerfakebank.so.0 && ln -s libtalerfakebank.so.0.0.0 libtalerfakebank.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerfakebank.so.0.0.0 libtalerfakebank.so || { rm -f libtalerfakebank.so && ln -s libtalerfakebank.so.0.0.0 libtalerfakebank.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerfakebank.lai /usr/local/lib/libtalerfakebank.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c taler-exchange-wire-gateway-client taler-fakebank-run '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/taler-exchange-wire-gateway-client /usr/local/bin/taler-exchange-wire-gateway-client
libtool: install: /usr/bin/install -c .libs/taler-fakebank-run /usr/local/bin/taler-fakebank-run
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/bank-lib'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/bank-lib'
Making install in kyclogic
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/kyclogic'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/kyclogic'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerkyclogic.la '/usr/local/lib'
libtool: warning: relinking 'libtalerkyclogic.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/kyclogic; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 3:0:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerkyclogic.la -rpath /usr/local/lib kyclogic_api.lo kyclogic_sanctions.lo ../../src/json/libtalerjson.la ../../src/util/libtalerutil.la -lgnunetjson -lgnunetutil -ljansson )
libtool: install: /usr/bin/install -c .libs/libtalerkyclogic.so.3.0.0T /usr/local/lib/libtalerkyclogic.so.3.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerkyclogic.so.3.0.0 libtalerkyclogic.so.3 || { rm -f libtalerkyclogic.so.3 && ln -s libtalerkyclogic.so.3.0.0 libtalerkyclogic.so.3; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerkyclogic.so.3.0.0 libtalerkyclogic.so || { rm -f libtalerkyclogic.so && ln -s libtalerkyclogic.so.3.0.0 libtalerkyclogic.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerkyclogic.lai /usr/local/lib/libtalerkyclogic.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c taler-exchange-helper-sanctions-dummy taler-exchange-kyc-tester '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/taler-exchange-helper-sanctions-dummy /usr/local/bin/taler-exchange-helper-sanctions-dummy
libtool: install: /usr/bin/install -c .libs/taler-exchange-kyc-tester /usr/local/bin/taler-exchange-kyc-tester
 /usr/bin/mkdir -p '/usr/local/bin'
 /usr/bin/install -c taler-exchange-helper-measure-challenger-email-context-check taler-exchange-helper-measure-challenger-postal-context-check taler-exchange-helper-measure-challenger-sms-context-check taler-exchange-helper-measure-clear-continue taler-exchange-helper-measure-defaults-but-investigate taler-exchange-helper-measure-freeze taler-exchange-helper-measure-inform-investigate taler-exchange-helper-measure-none taler-exchange-helper-measure-preserve-but-investigate taler-exchange-helper-measure-preserve-set-expiration taler-exchange-helper-measure-tops-address-check taler-exchange-helper-measure-tops-3rdparty-check taler-exchange-helper-measure-tops-kyx-check taler-exchange-helper-measure-tops-postal-check taler-exchange-helper-measure-tops-sms-check taler-exchange-helper-measure-test-form taler-exchange-helper-measure-test-oauth taler-exchange-helper-measure-update-from-context taler-exchange-helper-measure-validate-accepted-tos taler-exchange-kyc-kycaid-converter.sh taler-exchange-kyc-persona-converter.sh taler-exchange-kyc-oauth2-test-converter.sh taler-exchange-kyc-challenger-email-converter taler-exchange-kyc-challenger-postal-converter taler-exchange-kyc-challenger-sms-converter taler-exchange-kyc-oauth2-challenger.sh taler-exchange-kyc-oauth2-nda.sh '/usr/local/bin'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/install -c -m 644 kyclogic.conf kyclogic-kycaid.conf kyclogic-oauth2.conf kyclogic-persona.conf '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/mkdir -p '/usr/local/lib/taler-exchange'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtaler_plugin_kyclogic_kycaid.la libtaler_plugin_kyclogic_oauth2.la libtaler_plugin_kyclogic_persona.la libtaler_plugin_kyclogic_template.la '/usr/local/lib/taler-exchange'
libtool: warning: relinking 'libtaler_plugin_kyclogic_kycaid.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/kyclogic; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -export-dynamic -avoid-version -module -no-undefined ../../src/templating/libtalertemplating.la ../../src/mhd/libtalermhd.la ../../src/json/libtalerjson.la ../../src/curl/libtalercurl.la ../../src/util/libtalerutil.la -lgnunetcurl -lgnunetjson -lgnunetutil -lmicrohttpd -ljansson -lcurl -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtaler_plugin_kyclogic_kycaid.la -rpath /usr/local/lib/taler-exchange plugin_kyclogic_kycaid.lo )
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_kycaid.soT /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_kycaid.so
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_kycaid.lai /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_kycaid.la
libtool: warning: relinking 'libtaler_plugin_kyclogic_oauth2.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/kyclogic; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -export-dynamic -avoid-version -module -no-undefined ../../src/templating/libtalertemplating.la ../../src/mhd/libtalermhd.la ../../src/curl/libtalercurl.la ../../src/json/libtalerjson.la ../../src/util/libtalerutil.la -lgnunetcurl -lgnunetjson -lgnunetutil -lmicrohttpd -ljansson -lcurl -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtaler_plugin_kyclogic_oauth2.la -rpath /usr/local/lib/taler-exchange plugin_kyclogic_oauth2.lo )
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_oauth2.soT /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_oauth2.so
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_oauth2.lai /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_oauth2.la
libtool: warning: relinking 'libtaler_plugin_kyclogic_persona.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/kyclogic; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -export-dynamic -avoid-version -module -no-undefined libtalerkyclogic.la ../../src/mhd/libtalermhd.la ../../src/json/libtalerjson.la ../../src/curl/libtalercurl.la ../../src/templating/libtalertemplating.la ../../src/util/libtalerutil.la -lgnunetcurl -lgnunetjson -lgnunetutil -lmicrohttpd -ljansson -lcurl -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtaler_plugin_kyclogic_persona.la -rpath /usr/local/lib/taler-exchange plugin_kyclogic_persona.lo )
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_persona.soT /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_persona.so
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_persona.lai /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_persona.la
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_template.so /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_template.so
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_kyclogic_template.lai /usr/local/lib/taler-exchange/libtaler_plugin_kyclogic_template.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib/taler-exchange
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/taler-exchange

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/kyclogic'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/kyclogic'
Making install in exchangedb
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/exchangedb'
make  install-am
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/exchangedb'
make[4]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/exchangedb'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerexchangedb.la '/usr/local/lib'
libtool: warning: relinking 'libtalerexchangedb.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/exchangedb; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 1:1:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerexchangedb.la -rpath /usr/local/lib exchangedb_accounts.lo exchangedb_aml.lo exchangedb_history.lo exchangedb_plugin.lo exchangedb_transactions.lo ../../src/bank-lib/libtalerbank.la ../../src/kyclogic/libtalerkyclogic.la ../../src/json/libtalerjson.la ../../src/util/libtalerutil.la -lgnunetjson -lgnunetutil -ljansson -lcurl )
libtool: install: /usr/bin/install -c .libs/libtalerexchangedb.so.1.0.1T /usr/local/lib/libtalerexchangedb.so.1.0.1
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerexchangedb.so.1.0.1 libtalerexchangedb.so.1 || { rm -f libtalerexchangedb.so.1 && ln -s libtalerexchangedb.so.1.0.1 libtalerexchangedb.so.1; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerexchangedb.so.1.0.1 libtalerexchangedb.so || { rm -f libtalerexchangedb.so && ln -s libtalerexchangedb.so.1.0.1 libtalerexchangedb.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerexchangedb.lai /usr/local/lib/libtalerexchangedb.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/install -c -m 644 exchangedb.conf exchangedb-postgres.conf '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/install -c -m 644 exchangedb.conf exchangedb-postgres.conf '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/mkdir -p '/usr/local/lib/taler-exchange'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtaler_plugin_exchangedb_postgres.la '/usr/local/lib/taler-exchange'
libtool: warning: relinking 'libtaler_plugin_exchangedb_postgres.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/exchangedb; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -export-dynamic -avoid-version -module -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtaler_plugin_exchangedb_postgres.la -rpath /usr/local/lib/taler-exchange pg_abort_shard.lo pg_activate_signing_key.lo pg_add_denomination_key.lo pg_add_policy_fulfillment_proof.lo pg_aggregate.lo pg_batch_ensure_coin_known.lo pg_begin_revolving_shard.lo pg_begin_shard.lo pg_clear_aml_lock.lo pg_commit.lo pg_complete_shard.lo pg_compute_shard.lo pg_count_known_coins.lo pg_create_aggregation_transient.lo pg_create_tables.lo pg_delete_aggregation_transient.lo pg_delete_shard_locks.lo pg_disable_rules.lo pg_do_withdraw.lo pg_do_check_deposit_idempotent.lo pg_do_deposit.lo pg_do_melt.lo pg_do_refresh.lo pg_do_purse_delete.lo pg_do_purse_deposit.lo pg_do_purse_merge.lo pg_do_recoup.lo pg_do_recoup_refresh.lo pg_do_refund.lo pg_do_reserve_open.lo pg_do_reserve_purse.lo pg_drain_kyc_alert.lo pg_drop_tables.lo pg_enable_rules.lo pg_ensure_coin_known.lo pg_event_listen.lo pg_event_listen_cancel.lo pg_event_notify.lo pg_expire_purse.lo pg_find_aggregation_transient.lo pg_gc.lo pg_get_coin_denomination.lo pg_get_coin_transactions.lo pg_get_denomination_info.lo pg_get_denomination_by_serial.lo pg_get_denomination_revocation.lo pg_get_drain_profit.lo pg_get_expired_reserves.lo pg_get_extension_manifest.lo pg_get_global_fee.lo pg_get_global_fees.lo pg_get_known_coin.lo pg_get_kyc_rules.lo pg_get_refresh.lo pg_get_old_coin_by_h_blind.lo pg_get_pending_kyc_requirement_process.lo pg_get_policy_details.lo pg_get_purse_deposit.lo pg_get_purse_request.lo pg_get_ready_deposit.lo pg_get_refresh_reveal.lo pg_get_reserve_balance.lo pg_get_reserve_by_h_planchets.lo pg_get_reserve_history.lo pg_get_signature_for_known_coin.lo pg_get_unfinished_close_requests.lo pg_get_wire_accounts.lo pg_get_wire_fee.lo pg_get_wire_fees.lo pg_get_wire_hash_for_contract.lo pg_get_withdraw.lo pg_have_deposit2.lo pg_inject_auditor_triggers.lo pg_insert_active_legitimization_measure.lo pg_insert_aml_decision.lo pg_insert_aml_officer.lo pg_insert_aml_program_failure.lo pg_insert_auditor.lo pg_insert_auditor_denom_sig.lo pg_insert_close_request.lo pg_insert_contract.lo pg_insert_denomination_info.lo pg_insert_denomination_revocation.lo pg_insert_drain_profit.lo pg_insert_global_fee.lo pg_insert_kyc_failure.lo pg_insert_kyc_requirement_process.lo pg_insert_partner.lo pg_insert_purse_request.lo pg_insert_records_by_table.lo pg_insert_refund.lo pg_insert_reserve_closed.lo pg_insert_reserve_open_deposit.lo pg_insert_sanction_list_hit.lo pg_insert_signkey_revocation.lo pg_insert_successor_measure.lo pg_insert_wire.lo pg_insert_wire_fee.lo pg_iterate_active_auditors.lo pg_iterate_active_signkeys.lo pg_iterate_auditor_denominations.lo pg_iterate_denomination_info.lo pg_iterate_denominations.lo pg_iterate_kyc_reference.lo pg_iterate_reserve_close_info.lo pg_kyc_provider_account_lookup.lo pg_kycauth_in_insert.lo pg_lookup_active_legitimization.lo pg_lookup_aml_history.lo pg_lookup_aml_officer.lo pg_lookup_auditor_status.lo pg_lookup_auditor_timestamp.lo pg_lookup_completed_legitimization.lo pg_lookup_denomination_key.lo pg_lookup_global_fee_by_time.lo pg_lookup_h_payto_by_access_token.lo pg_lookup_kyc_history.lo pg_lookup_kyc_process_by_account.lo pg_lookup_kyc_requirement_by_row.lo pg_lookup_kyc_status_by_token.lo pg_lookup_pending_legitimization.lo pg_lookup_records_by_table.lo pg_lookup_rules_by_access_token.lo pg_lookup_serial_by_table.lo pg_lookup_signing_key.lo pg_lookup_signkey_revocation.lo pg_lookup_transfer_by_deposit.lo pg_lookup_wire_fee_by_time.lo pg_lookup_wire_timestamp.lo pg_lookup_wire_transfer.lo pg_persist_kyc_attributes.lo pg_persist_policy_details.lo pg_preflight.lo pg_profit_drains_get_pending.lo pg_profit_drains_set_finished.lo pg_release_revolving_shard.lo pg_reserves_get.lo pg_reserves_get_origin.lo pg_reserves_in_insert.lo pg_reserves_update.lo pg_rollback.lo pg_select_account_merges_above_serial_id.lo pg_select_aggregation_amounts_for_kyc_check.lo pg_select_aggregation_transient.lo pg_select_aggregations_above_serial.lo pg_select_all_kyc_attributes.lo pg_select_all_purse_decisions_above_serial_id.lo pg_select_all_purse_deletions_above_serial_id.lo pg_select_aml_attributes.lo pg_select_aml_decisions.lo pg_select_aml_measures.lo pg_select_aml_statistics.lo pg_select_auditor_denom_sig.lo pg_select_batch_deposits_missing_wire.lo pg_select_coin_deposits_above_serial_id.lo pg_select_contract.lo pg_select_contract_by_purse.lo pg_select_deposit_amounts_for_kyc_check.lo pg_select_exchange_credit_transfers.lo pg_select_exchange_kycauth_transfers.lo pg_select_exchange_debit_transfers.lo pg_select_kyc_attributes.lo pg_select_merge_amounts_for_kyc_check.lo pg_select_purse.lo pg_select_purse_by_merge_pub.lo pg_select_purse_decisions_above_serial_id.lo pg_select_purse_deposits_above_serial_id.lo pg_select_purse_deposits_by_purse.lo pg_select_purse_merge.lo pg_select_purse_merges_above_serial_id.lo pg_select_purse_requests_above_serial_id.lo pg_select_recoup_above_serial_id.lo pg_select_recoup_refresh_above_serial_id.lo pg_select_refreshes_above_serial_id.lo pg_select_refunds_above_serial_id.lo pg_select_refunds_by_coin.lo pg_select_reserve_close_info.lo pg_select_reserve_closed_above_serial_id.lo pg_select_reserve_open_above_serial_id.lo pg_select_reserves_in_above_serial_id.lo pg_select_reserves_in_above_serial_id_by_account.lo pg_select_wire_out_above_serial_id.lo pg_select_wire_out_above_serial_id_by_account.lo pg_select_withdraw_amounts_for_kyc_check.lo pg_select_withdrawals_above_serial_id.lo pg_set_aml_lock.lo pg_set_extension_manifest.lo pg_set_purse_balance.lo pg_start.lo pg_start_deferred_wire_out.lo pg_start_read_committed.lo pg_start_read_only.lo pg_store_wire_transfer_out.lo pg_test_aml_officer.lo pg_trigger_kyc_rule_for_account.lo pg_update_aggregation_transient.lo pg_update_auditor.lo pg_update_kyc_process_by_row.lo pg_update_wire.lo pg_wad_in_insert.lo pg_wire_prepare_data_get.lo pg_wire_prepare_data_insert.lo pg_wire_prepare_data_mark_failed.lo pg_wire_prepare_data_mark_finished.lo plugin_exchangedb_common.lo plugin_exchangedb_postgres.lo ../../src/pq/libtalerpq.la ../../src/util/libtalerutil.la -lgnunetpq -lgnunetutil -ljansson -lpq )
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_exchangedb_postgres.soT /usr/local/lib/taler-exchange/libtaler_plugin_exchangedb_postgres.so
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_exchangedb_postgres.lai /usr/local/lib/taler-exchange/libtaler_plugin_exchangedb_postgres.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib/taler-exchange
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/taler-exchange

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/sql/'
 /usr/bin/install -c -m 644 benchmark-0001.sql versioning.sql auditor-triggers-0001.sql exchange-0001.sql exchange-0002.sql exchange-0003.sql drop.sql procedures.sql tops-0001.sql '/usr/local/share/taler-exchange/sql/'
make[4]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/exchangedb'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/exchangedb'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/exchangedb'
Making install in exchange
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/exchange'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/exchange'
 /usr/bin/mkdir -p '/usr/local/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c taler-exchange-aggregator taler-exchange-closer taler-exchange-drain taler-exchange-expire taler-exchange-httpd taler-exchange-router taler-exchange-sanctionscheck taler-exchange-transfer taler-exchange-wirewatch '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/taler-exchange-aggregator /usr/local/bin/taler-exchange-aggregator
libtool: install: /usr/bin/install -c .libs/taler-exchange-closer /usr/local/bin/taler-exchange-closer
libtool: install: /usr/bin/install -c .libs/taler-exchange-drain /usr/local/bin/taler-exchange-drain
libtool: install: /usr/bin/install -c .libs/taler-exchange-expire /usr/local/bin/taler-exchange-expire
libtool: install: /usr/bin/install -c .libs/taler-exchange-httpd /usr/local/bin/taler-exchange-httpd
libtool: install: /usr/bin/install -c .libs/taler-exchange-router /usr/local/bin/taler-exchange-router
libtool: install: /usr/bin/install -c .libs/taler-exchange-sanctionscheck /usr/local/bin/taler-exchange-sanctionscheck
libtool: install: /usr/bin/install -c .libs/taler-exchange-transfer /usr/local/bin/taler-exchange-transfer
libtool: install: /usr/bin/install -c .libs/taler-exchange-wirewatch /usr/local/bin/taler-exchange-wirewatch
 /usr/bin/mkdir -p '/usr/local/bin'
 /usr/bin/install -c taler-exchange-kyc-aml-pep-trigger.sh '/usr/local/bin'
 /usr/bin/mkdir -p '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/install -c -m 644 exchange.conf '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/install -c -m 644 exchange.conf '/usr/local/share/taler-exchange/config.d/'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/exchange'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/exchange'
Making install in auditordb
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/auditordb'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/auditordb'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerauditordb.la '/usr/local/lib'
libtool: warning: relinking 'libtalerauditordb.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/auditordb; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 0:1:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerauditordb.la -rpath /usr/local/lib auditordb_plugin.lo ../../src/util/libtalerutil.la -lgnunetutil )
libtool: install: /usr/bin/install -c .libs/libtalerauditordb.so.0.0.1T /usr/local/lib/libtalerauditordb.so.0.0.1
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerauditordb.so.0.0.1 libtalerauditordb.so.0 || { rm -f libtalerauditordb.so.0 && ln -s libtalerauditordb.so.0.0.1 libtalerauditordb.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerauditordb.so.0.0.1 libtalerauditordb.so || { rm -f libtalerauditordb.so && ln -s libtalerauditordb.so.0.0.1 libtalerauditordb.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerauditordb.lai /usr/local/lib/libtalerauditordb.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/install -c -m 644 auditordb-postgres.conf '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/mkdir -p '/usr/local/lib/taler-auditor'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtaler_plugin_auditordb_postgres.la '/usr/local/lib/taler-auditor'
libtool: warning: relinking 'libtaler_plugin_auditordb_postgres.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/auditordb; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -export-dynamic -avoid-version -module -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtaler_plugin_auditordb_postgres.la -rpath /usr/local/lib/taler-auditor pg_del_denomination_balance.lo pg_del_reserve_info.lo pg_delete_auditor_closure_lag.lo pg_delete_early_aggregation.lo pg_delete_generic.lo pg_delete_pending_deposit.lo pg_delete_purse_info.lo pg_delete_reserve_in_inconsistency.lo pg_delete_wire_out_inconsistency_if_matching.lo pg_get_amount_arithmetic_inconsistency.lo pg_get_auditor_closure_lags.lo pg_get_auditor_progress.lo pg_get_bad_sig_losses.lo pg_get_balance.lo pg_get_balances.lo pg_get_coin_inconsistency.lo pg_get_denomination_balance.lo pg_get_denomination_key_validity_withdraw_inconsistency.lo pg_get_denomination_pending.lo pg_get_denominations_without_sigs.lo pg_get_deposit_confirmations.lo pg_get_emergency.lo pg_get_emergency_by_count.lo pg_get_exchange_signkeys.lo pg_get_fee_time_inconsistency.lo pg_get_misattribution_in_inconsistency.lo pg_get_progress_points.lo pg_get_purse_info.lo pg_get_purse_not_closed_inconsistencies.lo pg_get_purses.lo pg_get_reserve_balance_insufficient_inconsistency.lo pg_get_reserve_balance_summary_wrong_inconsistency.lo pg_get_reserve_in_inconsistency.lo pg_get_reserve_info.lo pg_get_reserve_not_closed_inconsistency.lo pg_get_reserves.lo pg_get_row_inconsistency.lo pg_get_row_minor_inconsistencies.lo pg_get_wire_fee_summary.lo pg_get_wire_format_inconsistency.lo pg_get_wire_out_inconsistency.lo pg_helper.lo pg_insert_amount_arithmetic_inconsistency.lo pg_insert_auditor_closure_lags.lo pg_insert_auditor_progress.lo pg_insert_bad_sig_losses.lo pg_insert_balance.lo pg_insert_coin_inconsistency.lo pg_insert_denomination_balance.lo pg_insert_denomination_key_validity_withdraw_inconsistency.lo pg_insert_denomination_pending.lo pg_insert_denominations_without_sigs.lo pg_insert_deposit_confirmation.lo pg_insert_early_aggregation.lo pg_insert_emergency.lo pg_insert_emergency_by_count.lo pg_insert_exchange_signkey.lo pg_insert_fee_time_inconsistency.lo pg_insert_historic_denom_revenue.lo pg_insert_historic_reserve_revenue.lo pg_insert_misattribution_in_inconsistency.lo pg_insert_pending_deposit.lo pg_insert_purse_info.lo pg_insert_purse_not_closed_inconsistencies.lo pg_insert_reserve_balance_insufficient_inconsistency.lo pg_insert_reserve_balance_summary_wrong_inconsistency.lo pg_insert_reserve_in_inconsistency.lo pg_insert_reserve_info.lo pg_insert_reserve_not_closed_inconsistency.lo pg_insert_row_inconsistency.lo pg_insert_row_minor_inconsistencies.lo pg_insert_wire_format_inconsistency.lo pg_insert_wire_out_inconsistency.lo pg_lookup_reserve_in_inconsistency.lo pg_select_historic_denom_revenue.lo pg_select_historic_reserve_revenue.lo pg_select_pending_deposits.lo pg_select_purse_expired.lo pg_select_reserve_in_inconsistency.lo pg_update_auditor_progress.lo pg_update_balance.lo pg_update_denomination_balance.lo pg_update_generic_suppressed.lo pg_update_purse_info.lo pg_update_reserve_info.lo pg_update_wire_fee_summary.lo plugin_auditordb_postgres.lo ../../src/pq/libtalerpq.la ../../src/util/libtalerutil.la -lgnunetpq -lgnunetutil -lpq )
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_auditordb_postgres.soT /usr/local/lib/taler-auditor/libtaler_plugin_auditordb_postgres.so
libtool: install: /usr/bin/install -c .libs/libtaler_plugin_auditordb_postgres.lai /usr/local/lib/taler-auditor/libtaler_plugin_auditordb_postgres.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib/taler-auditor
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/taler-auditor

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/share/taler-auditor/sql/'
 /usr/bin/install -c -m 644 versioning.sql auditor-0001.sql auditor-0002.sql drop.sql restart.sql procedures.sql '/usr/local/share/taler-auditor/sql/'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/auditordb'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/auditordb'
Making install in auditor
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/auditor'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/auditor'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libauditorreport.la '/usr/local/lib'
libtool: warning: relinking 'libauditorreport.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/auditor; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libauditorreport.la -rpath /usr/local/lib report-lib.lo ../../src/util/libtalerutil.la ../../src/pq/libtalerpq.la ../../src/auditordb/libtalerauditordb.la ../../src/exchangedb/libtalerexchangedb.la -lgnunetutil -ljansson )
libtool: install: /usr/bin/install -c .libs/libauditorreport.so.0.0.0T /usr/local/lib/libauditorreport.so.0.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libauditorreport.so.0.0.0 libauditorreport.so.0 || { rm -f libauditorreport.so.0 && ln -s libauditorreport.so.0.0.0 libauditorreport.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libauditorreport.so.0.0.0 libauditorreport.so || { rm -f libauditorreport.so && ln -s libauditorreport.so.0.0.0 libauditorreport.so; }; })
libtool: install: /usr/bin/install -c .libs/libauditorreport.lai /usr/local/lib/libauditorreport.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c taler-auditor-dbinit taler-auditor-httpd taler-auditor-sync taler-helper-auditor-aggregation taler-helper-auditor-coins taler-helper-auditor-deposits taler-helper-auditor-purses taler-helper-auditor-reserves taler-helper-auditor-transfer taler-helper-auditor-wire-credit taler-helper-auditor-wire-debit '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/taler-auditor-dbinit /usr/local/bin/taler-auditor-dbinit
libtool: install: /usr/bin/install -c .libs/taler-auditor-httpd /usr/local/bin/taler-auditor-httpd
libtool: install: /usr/bin/install -c .libs/taler-auditor-sync /usr/local/bin/taler-auditor-sync
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-aggregation /usr/local/bin/taler-helper-auditor-aggregation
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-coins /usr/local/bin/taler-helper-auditor-coins
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-deposits /usr/local/bin/taler-helper-auditor-deposits
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-purses /usr/local/bin/taler-helper-auditor-purses
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-reserves /usr/local/bin/taler-helper-auditor-reserves
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-transfer /usr/local/bin/taler-helper-auditor-transfer
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-wire-credit /usr/local/bin/taler-helper-auditor-wire-credit
libtool: install: /usr/bin/install -c .libs/taler-helper-auditor-wire-debit /usr/local/bin/taler-helper-auditor-wire-debit
 /usr/bin/mkdir -p '/usr/local/bin'
 /usr/bin/install -c taler-helper-auditor-render.py '/usr/local/bin'
 /usr/bin/mkdir -p '/usr/local/share/taler-auditor/config.d/'
 /usr/bin/install -c -m 644 auditor.conf '/usr/local/share/taler-auditor/config.d/'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/auditor'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/auditor'
Making install in lib
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/lib'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/lib'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalerauditor.la libtalerexchange.la '/usr/local/lib'
libtool: warning: relinking 'libtalerauditor.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/lib; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 0:0:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerauditor.la -rpath /usr/local/lib auditor_api_curl_defaults.lo auditor_api_get_config.lo auditor_api_deposit_confirmation.lo ../../src/curl/libtalercurl.la ../../src/json/libtalerjson.la ../../src/util/libtalerutil.la -lgnunetcurl -lgnunetjson -lgnunetutil -ljansson -lcurl -lm )
libtool: install: /usr/bin/install -c .libs/libtalerauditor.so.0.0.0T /usr/local/lib/libtalerauditor.so.0.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerauditor.so.0.0.0 libtalerauditor.so.0 || { rm -f libtalerauditor.so.0 && ln -s libtalerauditor.so.0.0.0 libtalerauditor.so.0; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerauditor.so.0.0.0 libtalerauditor.so || { rm -f libtalerauditor.so && ln -s libtalerauditor.so.0.0.0 libtalerauditor.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerauditor.lai /usr/local/lib/libtalerauditor.la
libtool: warning: relinking 'libtalerexchange.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/lib; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 18:0:0 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalerexchange.la -rpath /usr/local/lib exchange_api_add_aml_decision.lo exchange_api_aml_legitimizations_get.lo exchange_api_auditor_add_denomination.lo exchange_api_batch_deposit.lo exchange_api_blinding_prepare.lo exchange_api_coins_history.lo exchange_api_common.lo exchange_api_contracts_get.lo exchange_api_curl_defaults.lo exchange_api_deposits_get.lo exchange_api_get_aml_measures.lo exchange_api_get_kyc_statistics.lo exchange_api_handle.lo exchange_api_kyc_check.lo exchange_api_kyc_info.lo exchange_api_kyc_proof.lo exchange_api_kyc_start.lo exchange_api_kyc_wallet.lo exchange_api_lookup_aml_decisions.lo exchange_api_lookup_kyc_attributes.lo exchange_api_management_add_partner.lo exchange_api_management_auditor_disable.lo exchange_api_management_auditor_enable.lo exchange_api_management_drain_profits.lo exchange_api_management_get_keys.lo exchange_api_management_post_extensions.lo exchange_api_management_post_keys.lo exchange_api_management_revoke_denomination_key.lo exchange_api_management_revoke_signing_key.lo exchange_api_management_set_global_fee.lo exchange_api_management_set_wire_fee.lo exchange_api_management_update_aml_officer.lo exchange_api_management_wire_disable.lo exchange_api_management_wire_enable.lo exchange_api_melt_v27.lo exchange_api_purse_create_with_deposit.lo exchange_api_purse_create_with_merge.lo exchange_api_purse_delete.lo exchange_api_purse_deposit.lo exchange_api_purse_merge.lo exchange_api_purses_get.lo exchange_api_recoup.lo exchange_api_recoup_refresh.lo exchange_api_refresh_common.lo exchange_api_refund.lo exchange_api_reserves_attest.lo exchange_api_reserves_close.lo exchange_api_reserves_get.lo exchange_api_reserves_get_attestable.lo exchange_api_reserves_history.lo exchange_api_reserves_open.lo exchange_api_restrictions.lo exchange_api_reveal_withdraw.lo exchange_api_reveal_melt.lo exchange_api_stefan.lo exchange_api_transfers_get.lo exchange_api_withdraw.lo libtalerauditor.la ../../src/json/libtalerjson.la ../../src/kyclogic/libtalerkyclogic.la ../../src/curl/libtalercurl.la ../../src/util/libtalerutil.la ../../src/extensions/libtalerextensions.la -lgnunetcurl -lgnunetjson -lgnunetutil -ljansson -lcurl -lm )
libtool: install: /usr/bin/install -c .libs/libtalerexchange.so.18.0.0T /usr/local/lib/libtalerexchange.so.18.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerexchange.so.18.0.0 libtalerexchange.so.18 || { rm -f libtalerexchange.so.18 && ln -s libtalerexchange.so.18.0.0 libtalerexchange.so.18; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalerexchange.so.18.0.0 libtalerexchange.so || { rm -f libtalerexchange.so && ln -s libtalerexchange.so.18.0.0 libtalerexchange.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalerexchange.lai /usr/local/lib/libtalerexchange.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/lib'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/lib'
Making install in exchange-tools
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/exchange-tools'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/exchange-tools'
 /usr/bin/mkdir -p '/usr/local/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c taler-auditor-offline taler-exchange-kyc-trigger taler-exchange-offline taler-exchange-dbinit '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/taler-auditor-offline /usr/local/bin/taler-auditor-offline
libtool: install: /usr/bin/install -c .libs/taler-exchange-kyc-trigger /usr/local/bin/taler-exchange-kyc-trigger
libtool: install: /usr/bin/install -c .libs/taler-exchange-offline /usr/local/bin/taler-exchange-offline
libtool: install: /usr/bin/install -c .libs/taler-exchange-dbinit /usr/local/bin/taler-exchange-dbinit
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/install -c -m 644 coins.conf exchange-offline.conf '/usr/local/share/taler-exchange/config.d/'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/exchange-tools'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/exchange-tools'
Making install in extensions/age_restriction
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/extensions/age_restriction'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/extensions/age_restriction'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/usr/local/lib/taler-exchange'
 /bin/bash ../../../libtool   --mode=install /usr/bin/install -c   libtaler_extension_age_restriction.la '/usr/local/lib/taler-exchange'
libtool: warning: relinking 'libtaler_extension_age_restriction.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/extensions/age_restriction; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -export-dynamic -avoid-version -module -no-undefined -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtaler_extension_age_restriction.la -rpath /usr/local/lib/taler-exchange age_restriction.lo ../../../src/json/libtalerjson.la ../../../src/util/libtalerutil.la -lgnunetjson -lgnunetutil -ljansson )
libtool: install: /usr/bin/install -c .libs/libtaler_extension_age_restriction.soT /usr/local/lib/taler-exchange/libtaler_extension_age_restriction.so
libtool: install: /usr/bin/install -c .libs/libtaler_extension_age_restriction.lai /usr/local/lib/taler-exchange/libtaler_extension_age_restriction.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib/taler-exchange
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/taler-exchange

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/extensions/age_restriction'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/extensions/age_restriction'
Making install in testing
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/testing'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/testing'
 /usr/bin/mkdir -p '/usr/local/bin'
 /usr/bin/install -c taler-unified-setup.sh '/usr/local/bin'
 /usr/bin/mkdir -p '/usr/local/lib'
 /bin/bash ../../libtool   --mode=install /usr/bin/install -c   libtalertesting.la '/usr/local/lib'
libtool: warning: relinking 'libtalertesting.la'
libtool: install: (cd /home/tenant/dev/htm/taler-exchange/src/testing; /bin/bash "/home/tenant/dev/htm/taler-exchange/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wno-address-of-packed-member -g -O2 -version-info 3:0:2 -no-undefined -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -o libtalertesting.la -rpath /usr/local/lib testing_api_cmd_age_withdraw.lo testing_api_cmd_auditor_add_denom_sig.lo testing_api_cmd_auditor_add.lo testing_api_cmd_auditor_del.lo testing_api_cmd_auditor_deposit_confirmation.lo testing_api_cmd_auditor_exec_auditor.lo testing_api_cmd_auditor_exec_auditor_dbinit.lo testing_api_cmd_bank_account_token.lo testing_api_cmd_bank_admin_add_incoming.lo testing_api_cmd_bank_admin_add_kycauth.lo testing_api_cmd_bank_check.lo testing_api_cmd_bank_admin_check.lo testing_api_cmd_bank_check_empty.lo testing_api_cmd_bank_history_credit.lo testing_api_cmd_bank_history_debit.lo testing_api_cmd_bank_transfer.lo testing_api_cmd_batch.lo testing_api_cmd_batch_deposit.lo testing_api_cmd_batch_withdraw.lo testing_api_cmd_check_aml_decisions.lo testing_api_cmd_coin_history.lo testing_api_cmd_common.lo testing_api_cmd_contract_get.lo testing_api_cmd_deposit.lo testing_api_cmd_deposits_get.lo testing_api_cmd_exec_aggregator.lo testing_api_cmd_exec_auditor-offline.lo testing_api_cmd_exec_closer.lo testing_api_cmd_exec_expire.lo testing_api_cmd_exec_router.lo testing_api_cmd_exec_transfer.lo testing_api_cmd_exec_wget.lo testing_api_cmd_exec_wirewatch.lo testing_api_cmd_get_active_legitimization_measures.lo testing_api_cmd_get_auditor.lo testing_api_cmd_get_exchange.lo testing_api_cmd_get_kyc_info.lo testing_api_cmd_insert_deposit.lo testing_api_cmd_kyc_check_get.lo testing_api_cmd_kyc_proof.lo testing_api_cmd_kyc_wallet_get.lo testing_api_cmd_oauth.lo testing_api_cmd_offline_sign_global_fees.lo testing_api_cmd_offline_sign_wire_fees.lo testing_api_cmd_offline_sign_keys.lo testing_api_cmd_offline_sign_extensions.lo testing_api_cmd_post_kyc_form.lo testing_api_cmd_post_kyc_start.lo testing_api_cmd_purse_create_deposit.lo testing_api_cmd_purse_delete.lo testing_api_cmd_purse_deposit.lo testing_api_cmd_purse_get.lo testing_api_cmd_purse_merge.lo testing_api_cmd_recoup.lo testing_api_cmd_recoup_refresh.lo testing_api_cmd_refund.lo testing_api_cmd_refresh.lo testing_api_cmd_reserve_attest.lo testing_api_cmd_reserve_close.lo testing_api_cmd_reserve_get.lo testing_api_cmd_reserve_get_attestable.lo testing_api_cmd_reserve_history.lo testing_api_cmd_reserve_open.lo testing_api_cmd_reserve_purse.lo testing_api_cmd_revoke.lo testing_api_cmd_revoke_denom_key.lo testing_api_cmd_revoke_sign_key.lo testing_api_cmd_run_fakebank.lo testing_api_cmd_set_officer.lo testing_api_cmd_set_wire_fee.lo testing_api_cmd_signal.lo testing_api_cmd_sleep.lo testing_api_cmd_stat.lo testing_api_cmd_system_start.lo testing_api_cmd_take_aml_decision.lo testing_api_cmd_transfer_get.lo testing_api_cmd_wait.lo testing_api_cmd_wire_add.lo testing_api_cmd_wire_del.lo testing_api_cmd_withdraw.lo testing_api_loop.lo testing_api_misc.lo testing_api_traits.lo ../../src/lib/libtalerauditor.la ../../src/lib/libtalerexchange.la ../../src/exchangedb/libtalerexchangedb.la ../../src/json/libtalerjson.la ../../src/kyclogic/libtalerkyclogic.la ../../src/mhd/libtalermhd.la ../../src/util/libtalerutil.la ../../src/extensions/libtalerextensions.la ../../src/bank-lib/libtalerbank.la ../../src/bank-lib/libtalerfakebank.la -lgnunetcurl -lgnunetjson -lgnunetutil -ljansson -lmicrohttpd -lcurl )
libtool: install: /usr/bin/install -c .libs/libtalertesting.so.1.2.0T /usr/local/lib/libtalertesting.so.1.2.0
libtool: install: (cd /usr/local/lib && { ln -s -f libtalertesting.so.1.2.0 libtalertesting.so.1 || { rm -f libtalertesting.so.1 && ln -s libtalertesting.so.1.2.0 libtalertesting.so.1; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libtalertesting.so.1.2.0 libtalertesting.so || { rm -f libtalertesting.so && ln -s libtalertesting.so.1.2.0 libtalertesting.so; }; })
libtool: install: /usr/bin/install -c .libs/libtalertesting.lai /usr/local/lib/libtalertesting.la
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/testing'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/testing'
Making install in benchmark
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/benchmark'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src/benchmark'
 /usr/bin/mkdir -p '/usr/local/bin'
  /bin/bash ../../libtool   --mode=install /usr/bin/install -c taler-aggregator-benchmark taler-bank-benchmark taler-exchange-benchmark '/usr/local/bin'
libtool: install: /usr/bin/install -c .libs/taler-aggregator-benchmark /usr/local/bin/taler-aggregator-benchmark
libtool: install: /usr/bin/install -c .libs/taler-bank-benchmark /usr/local/bin/taler-bank-benchmark
libtool: install: /usr/bin/install -c .libs/taler-exchange-benchmark /usr/local/bin/taler-exchange-benchmark
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/benchmark'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src/benchmark'
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/src'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/src'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/usr/local/share/taler-exchange/config.d/'
 /usr/bin/install -c -m 644 taler-exchange.conf '/usr/local/share/taler-exchange/config.d/'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src'
make[1]: Leaving directory '/home/tenant/dev/htm/taler-exchange/src'
Making install in doc
make[1]: Entering directory '/home/tenant/dev/htm/taler-exchange/doc'
Making install in .
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/doc'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/doc'
make[3]: Nothing to be done for 'install-exec-am'.
/usr/bin/mkdir -p "/usr/local/share/info/taler-auditor-figures" || exit 1; \
/usr/bin/mkdir -p "/usr/local/share/info/taler-exchange-figures" || exit 1; \
/usr/bin/install -c -m 644 './prebuilt/texinfo/taler-auditor-figures/auditor-db.png' './prebuilt/texinfo/taler-auditor-figures/replication.png' "/usr/local/share/info/taler-auditor-figures" || exit 1;
/usr/bin/install -c -m 644 './prebuilt/texinfo/taler-exchange-figures/kyc-process.png' './prebuilt/texinfo/taler-exchange-figures/exchange-db.png' "/usr/local/share/info/taler-exchange-figures" || exit 1;
 /usr/bin/mkdir -p '/usr/local/share/info'
 /usr/bin/install -c -m 644 ./prebuilt/texinfo/taler-auditor.info ./prebuilt/texinfo/taler-developer-manual.info ./prebuilt/texinfo/taler-exchange.info '/usr/local/share/info'
 install-info --info-dir='/usr/local/share/info' '/usr/local/share/info/taler-auditor.info'
 install-info --info-dir='/usr/local/share/info' '/usr/local/share/info/taler-developer-manual.info'
 install-info --info-dir='/usr/local/share/info' '/usr/local/share/info/taler-exchange.info'
 /usr/bin/mkdir -p '/usr/local/share/man/man1'
 /usr/bin/install -c -m 644 prebuilt/man/taler-aggregator-benchmark.1 prebuilt/man/taler-auditor-config.1 prebuilt/man/taler-auditor-dbinit.1 prebuilt/man/taler-auditor-httpd.1 prebuilt/man/taler-auditor-offline.1 prebuilt/man/taler-auditor-sign.1 prebuilt/man/taler-auditor-sync.1 prebuilt/man/taler-bank-benchmark.1 prebuilt/man/taler-exchange-aggregator.1 prebuilt/man/taler-exchange-benchmark.1 prebuilt/man/taler-exchange-closer.1 prebuilt/man/taler-exchange-config.1 prebuilt/man/taler-exchange-dbconfig.1 prebuilt/man/taler-exchange-dbinit.1 prebuilt/man/taler-exchange-drain.1 prebuilt/man/taler-exchange-expire.1 prebuilt/man/taler-exchange-httpd.1 prebuilt/man/taler-exchange-kyc-aml-pep-trigger.1 prebuilt/man/taler-exchange-kyc-tester.1 prebuilt/man/taler-exchange-kyc-trigger.1 prebuilt/man/taler-exchange-offline.1 prebuilt/man/taler-exchange-router.1 prebuilt/man/taler-exchange-sanctionscheck.1 prebuilt/man/taler-exchange-secmod-cs.1 prebuilt/man/taler-exchange-secmod-eddsa.1 prebuilt/man/taler-exchange-secmod-rsa.1 prebuilt/man/taler-exchange-transfer.1 prebuilt/man/taler-exchange-wire-gateway-client.1 prebuilt/man/taler-exchange-wirewatch.1 prebuilt/man/taler-fakebank-run.1 prebuilt/man/taler-helper-auditor-aggregation.1 prebuilt/man/taler-helper-auditor-coins.1 prebuilt/man/taler-helper-auditor-deposits.1 prebuilt/man/taler-helper-auditor-purses.1 prebuilt/man/taler-helper-auditor-reserves.1 prebuilt/man/taler-helper-auditor-wire-credit.1 prebuilt/man/taler-helper-auditor-wire-debit.1 prebuilt/man/taler-terms-generator.1 prebuilt/man/taler-unified-setup.1 '/usr/local/share/man/man1'
 /usr/bin/mkdir -p '/usr/local/share/man/man5'
 /usr/bin/install -c -m 644 prebuilt/man/taler-exchange.conf.5 '/usr/local/share/man/man5'
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/doc'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/doc'
Making install in doxygen
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/doc/doxygen'
make[3]: Entering directory '/home/tenant/dev/htm/taler-exchange/doc/doxygen'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/tenant/dev/htm/taler-exchange/doc/doxygen'
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/doc/doxygen'
make[1]: Leaving directory '/home/tenant/dev/htm/taler-exchange/doc'
Making install in po
make[1]: Entering directory '/home/tenant/dev/htm/taler-exchange/po'
make taler-exchange.pot-update
make[2]: Entering directory '/home/tenant/dev/htm/taler-exchange/po'
package_gnu="yes"; \
test -n "$package_gnu" || { \
  if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \
	 LC_ALL=C find -L .. -maxdepth 1 -type f \
		       -size -10000000c -exec grep 'GNU taler-exchange' \
		       /dev/null '{}' ';' 2>/dev/null; \
       else \
	 LC_ALL=C grep 'GNU taler-exchange' ../* 2>/dev/null; \
       fi; \
     } | grep -v 'libtool:' >/dev/null; then \
     package_gnu=yes; \
   else \
     package_gnu=no; \
   fi; \
}; \
if test "$package_gnu" = "yes"; then \
  package_prefix='GNU '; \
else \
  package_prefix=''; \
fi; \
if test -n 'taler@gnu.org' || test 'taler-bug@gnunet.org' = '@'PACKAGE_BUGREPORT'@'; then \
  msgid_bugs_address='taler@gnu.org'; \
else \
  msgid_bugs_address='taler-bug@gnunet.org'; \
fi; \
case `: --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
    : --default-domain=taler-exchange --directory=.. \
      --add-comments=TRANSLATORS: --keyword=_ --keyword=N_  \
      --files-from=./POTFILES.in \
      --copyright-holder='Taler Systems SA' \
      --msgid-bugs-address="$msgid_bugs_address" \
    ;; \
  *) \
    : --default-domain=taler-exchange --directory=.. \
      --add-comments=TRANSLATORS: --keyword=_ --keyword=N_  \
      --files-from=./POTFILES.in \
      --copyright-holder='Taler Systems SA' \
      --package-name="${package_prefix}taler-exchange" \
      --package-version='1.0.12' \
      --msgid-bugs-address="$msgid_bugs_address" \
    ;; \
esac
test ! -f taler-exchange.po || { \
  if test -f ./taler-exchange.pot-header; then \
    sed -e '1,/^#$/d' < taler-exchange.po > taler-exchange.1po && \
    cat ./taler-exchange.pot-header taler-exchange.1po > taler-exchange.po; \
    rm -f taler-exchange.1po; \
  fi; \
  if test -f ./taler-exchange.pot; then \
    sed -f remove-potcdate.sed < ./taler-exchange.pot > taler-exchange.1po && \
    sed -f remove-potcdate.sed < taler-exchange.po > taler-exchange.2po && \
    if cmp taler-exchange.1po taler-exchange.2po >/dev/null 2>&1; then \
      rm -f taler-exchange.1po taler-exchange.2po taler-exchange.po; \
    else \
      rm -f taler-exchange.1po taler-exchange.2po ./taler-exchange.pot && \
      mv taler-exchange.po ./taler-exchange.pot; \
    fi; \
  else \
    mv taler-exchange.po ./taler-exchange.pot; \
  fi; \
}
make[2]: Leaving directory '/home/tenant/dev/htm/taler-exchange/po'
test ! -f ./taler-exchange.pot || \
  test -z "" || make 
if test "taler-exchange" = "gettext-tools"; then \
  /usr/bin/mkdir -p /usr/local/share/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /usr/bin/install -c -m 644 ./$file \
		    /usr/local/share/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /usr/local/share/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[1]: Leaving directory '/home/tenant/dev/htm/taler-exchange/po'

makeinstall.txt (91,618 bytes)   

Issue History

Date Modified Username Field Change
2025-06-22 10:51 hank New Issue
2025-06-22 12:37 Christian Grothoff Assigned To => Christian Grothoff
2025-06-22 12:37 Christian Grothoff Status new => assigned
2025-06-22 12:54 Christian Grothoff Note Added: 0025301
2025-06-22 12:54 Christian Grothoff Status assigned => feedback
2025-06-22 14:32 hank Note Added: 0025303
2025-06-22 14:32 hank Status feedback => assigned
2025-06-22 14:48 hank Note Added: 0025304
2025-06-22 18:08 Christian Grothoff Note Added: 0025307
2025-06-22 18:08 Christian Grothoff Status assigned => feedback
2025-06-22 18:19 hank Note Added: 0025308
2025-06-22 18:19 hank File Added: Dockerfile
2025-06-22 18:19 hank Status feedback => assigned
2025-06-23 18:30 Christian Grothoff Note Added: 0025330
2025-06-23 18:30 Christian Grothoff Note Added: 0025331
2025-06-24 07:37 hank Note Added: 0025335
2025-06-24 11:50 hank Note Added: 0025341
2025-06-24 11:51 hank Note Added: 0025342
2025-06-24 11:51 hank File Added: makeinstall.txt