diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-06-19 21:58:15 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-06-19 21:58:15 +0000 |
commit | 4142e84f6bf66d8033dd95c32f5f6df5cc934ec4 (patch) | |
tree | 3c442de77a09f330af244eb34868272dc6cbb2c8 | |
parent | b950305a463a76830d9db32362c60405e4760b24 (diff) |
- Don't depend on installed lbxproxy.
- Comment out the lbxproxy config in sample configuration file.
problem noticed by naddy@
-rw-r--r-- | app/proxymngr/Makefile.am | 2 | ||||
-rw-r--r-- | app/proxymngr/configure.ac | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/app/proxymngr/Makefile.am b/app/proxymngr/Makefile.am index f9f65e79f..60a6b1abb 100644 --- a/app/proxymngr/Makefile.am +++ b/app/proxymngr/Makefile.am @@ -46,7 +46,7 @@ configdir = $(CONFIG_DIR) config_DATA = pmconfig pmconfig: pmconfig.cpp - $(SED) -e s/LBXPROXY/`echo @LBXPROXY@ | sed -e s/\\\\//\\\\\\\\\\\\//g`/ < $(srcdir)/pmconfig.cpp > $@ + $(SED) -e s/BINDIR/`echo ${bindir} | sed -e s/\\\\//\\\\\\\\\\\\//g`/ < $(srcdir)/pmconfig.cpp > $@ EXTRA_DIST = pmconfig.cpp CLEANFILES = pmconfig diff --git a/app/proxymngr/configure.ac b/app/proxymngr/configure.ac index 0cd977c44..381ce1b16 100644 --- a/app/proxymngr/configure.ac +++ b/app/proxymngr/configure.ac @@ -34,11 +34,6 @@ AC_PROG_CPP AC_PROG_CC AC_PROG_INSTALL -AC_PATH_PROG(LBXPROXY, lbxproxy) -if [[ -z $LBXPROXY ]] ; then - AC_MSG_ERROR([lbxproxy is needed]) -fi - AC_PATH_PROG(SED, sed) if [[ -z $SED ]] ; then AC_MSG_ERROR([sed is needed]) |