The libmemcached-1.0.X series seam not to allow you to activate sasl.
There is this conditional in the configure script:

if test "x$ac_enable_sasl" = "xyes"; then :

      ac_enable_sasl="no"

fi

which sets SASL to "no" even if you use --enable-sasl. Version 0.53
works well though. After issuing ./configure  I had to edit
m4/ax_pthread.m4 as Brian Aker sugested.

At line 126 you have:

ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread
-pthreads -mthreads pthread --thread-safe -mt pthread-config"

and should be:

ax_pthread_flags="pthreads none -Kthread -kthread lthread -lpthread
-lpthreads -mthreads pthread --thread-safe -mt pthread-config"

(-lpthread instead of -pthread).

then make && make install and you should be good to go.

Linked pylibmc against it and it authenticated to my memached server
beautifully.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/883267

Title:
  1.0.2 (and 0.53) build fails on ubuntu oneiric

To manage notifications about this bug go to:
https://bugs.launchpad.net/libmemcached/+bug/883267/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to