You don't want to have /usr/ucb in your path on Solaris. man standards will 
tell you
the correct compilation environment:

See 
http://github.com/trondn/memcached/commit/29f480608cc734f5d1cce85ad8a8e744d1763790

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


Reply via email to