Hi folks,
I am trying to build memcached 1.4.7 with a specific libevent version.
To do this, I ran configure as follows:
./configure --prefix=/home/radhesh/memcached-dist --with-libevent=/usr/
lib/libevent.so.1
then do make && make install.
But, when I do 'ldd memcached' on the resulting binary, I see this:
libevent-1.4.so.2 => /usr/lib64/libevent-1.4.so.2
(0x00002afd074f2000)
librt.so.1 => /lib64/librt.so.1 (0x0000003cbe600000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003cbd200000)
libc.so.6 => /lib64/libc.so.6 (0x0000003cbca00000)
libnsl.so.1 => /lib64/libnsl.so.1 (0x0000003742a00000)
libresolv.so.2 => /lib64/libresolv.so.2 (0x0000003cc1200000)
/lib64/ld-linux-x86-64.so.2 (0x0000003cbc600000)
Also, I did not pass --enable-64bit to configure.
So, what am I doing wrong here?