That's a much better fix than what I was thinking about doing -- and a lot easier to fix.
On Mar 16, 1:16 pm, Trond Norbye <[email protected]> wrote: > You don't want to have /usr/ucb in your path on Solaris. man standards will > tell you > the correct compilation environment: > > Seehttp://github.com/trondn/memcached/commit/29f480608cc734f5d1cce85ad8a... > > diff --git a/configure.ac b/configure.ac > index 6858ec9..182b105 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -84,6 +84,10 @@ if test "x$enable_dtrace" == "xyes"; then > dtrace_instrument_obj=yes > rm conftest.$$ > fi > + > + if test "`which tr`" = "/usr/ucb/tr"; then > + AC_MSG_ERROR([Please remove /usr/ucb from your path. See man > standards for > more info]) > + fi > else > AC_MSG_ERROR([Need dtrace binary and OS support.]) > fi > > Cheers, > > Trond
