aboutsummaryrefslogtreecommitdiff
path: root/docs/metadata/build/middle
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2018-06-03 16:58:02 -0700
committerRuss Allbery <eagle@eyrie.org>2018-06-03 16:58:02 -0700
commitedf31eba414d9a105791c076fb1444a78d210dff (patch)
tree2bac18fa3b71593e616061a0fbcbfdd6ab26a255 /docs/metadata/build/middle
parent4b3f858ef567c0d12511e7fea2a56f08f2729635 (diff)
parent68c4b05c268cd6e358cc41c8feb44bc2c7fcb898 (diff)
New upstream version 1.4
Diffstat (limited to 'docs/metadata/build/middle')
-rw-r--r--docs/metadata/build/middle33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/metadata/build/middle b/docs/metadata/build/middle
new file mode 100644
index 0000000..8a15117
--- /dev/null
+++ b/docs/metadata/build/middle
@@ -0,0 +1,33 @@
+If you are upgrading the wallet server from an earlier installed version,
+run `wallet-admin upgrade` after installation to upgrade the database
+schema. See the wallet-admin manual page for more information.
+
+You can pass the `--with-wallet-server` and `--with-wallet-port` options
+to configure to compile in a default wallet server and port. If no port
+is set, the remctl default port is used. If no server is set, the server
+must be specified either in `krb5.conf` configuration or on the wallet
+command line or the client will exit with an error.
+
+By default, wallet uses whatever Perl executable exists in the current
+`PATH`. That Perl's path is what the server scripts will use, and that
+Perl's configuration will be used to determine where the server Perl
+modules will be installed.
+
+To specify a particular Perl executable to use, either set the `PERL`
+environment variable or pass it to configure like:
+
+```
+ ./configure PERL=/path/to/my/perl
+```
+
+By default, wallet installs itself under `/usr/local` except for the
+server Perl modules, which are installed into whatever default site module
+path is used by your Perl installation. To change the installation
+location of the files other than the Perl modules, pass the `--prefix=DIR`
+argument to configure.
+
+If remctl was installed in a path not normally searched by your compiler,
+you must specify its installation prefix to configure with the
+`--with-remctl=DIR` option, or alternately set the path to the include
+files and libraries separately with `--with-remctl-include=DIR` and
+`--with-remctl-lib=DIR`.