I am trying to get memcached
running on Windows. I have downloaded memcached
stable latest and compiled it using Mingw under Windows 7. Configure failed with error,
checking for libevent directory... configure: error: libevent is required. You can get it from http://www.monkey.org/~provos/libevent/
If it's already installed, specify its path using --with-libevent=/dir/
Then I downloaded libevent
and compiled it. This produced 3 DLLs, libeventcore, libevent-extra and libevent-2.0.5.
I ran configure on memcached
again with the option --with-libevent
. But for some reason, it fails again with the same error. I have no clue on why it is failing. Can anyone help me to resolve this issue? Or is there a better way to get memcached
running on Windows? I have seen lot of pre-built binaries for Windows. But all of them uses old versions of memcached
. And AFAIK, Windows is officially supported by memcached
in the newer versions.
I am using Windows7 64bit version with MinGW.