From e1d816c48a34f2c0e0fb0262a7ae9f9614ca82e8 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 8 Oct 2007 22:30:27 +0000 Subject: Add --with-wallet-server and --with-wallet-port. --- configure.ac | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/configure.ac b/configure.ac index b5b27e7..ccacc33 100644 --- a/configure.ac +++ b/configure.ac @@ -43,6 +43,20 @@ AC_ARG_WITH([remctl], AC_SUBST([REMCTL_CPPFLAGS]) AC_SUBST([REMCTL_LDFLAGS]) +AC_ARG_WITH([wallet-server], + AC_HELP_STRING([--with-wallet-server=HOST], [Default wallet server]), + [if test x"$withval" != xno ; then + AC_DEFINE_UNQUOTED([WALLET_SERVER], ["$withval"], + [Define to the default server host name.]) + fi]) +AC_ARG_WITH([wallet-port], + AC_HELP_STRING([--with-wallet-port=PORT], + [Default wallet server port]), + [if test x"$withval" != xno ; then + AC_DEFINE_UNQUOTED([WALLET_PORT], [$withval], + [Define to the default server port.]) + fi]) + AC_ARG_VAR([REMCTLD], [Path to the remctld binary]) AC_PATH_PROG([REMCTLD], [remctld], , [$PATH:/usr/sbin:/usr/local/sbin]) if test x"$REMCTLD" != x ; then -- cgit v1.2.3