[PATCH proxymngr] More LBX proxy avoidance.

Dan Nicholson dbn.lists at gmail.com
Mon Aug 15 05:57:01 PDT 2011


On Sat, Aug 13, 2011 at 9:54 AM, Alan Coopersmith
<alan.coopersmith at oracle.com> wrote:
> I don't think I've ever used proxymngr or known anyone who has, but some distros
> still ship lbxproxy, so I'd slightly prefer leaving support for those that do.
>
> What if you leave Makefile.am doing the substitution (i.e. revert that file to
> what's currently there), but change configure.ac to:
>
> AC_PATH_PROG(LBXPROXY, lbxproxy)
> if [[ -z $LBXPROXY ]] ; then
>   LBXPROXY="${bindir}/lbxproxy"
> fi

Even simpler, let autoconf do the fallback for you:

AC_PATH_PROG(LBXPROXY, lbxproxy, ${bindir}/lbxproxy)

--
Dan


More information about the xorg-devel mailing list