Blame README.win32

Packit 83fed9
Hi, 
Packit 83fed9
Packit 83fed9
So you want to know how to build libmemcached on Windows? In order to
Packit 83fed9
have a single build environment you need to install mingw to get a
Packit 83fed9
"unix environment" to run the configure script.
Packit 83fed9
Packit 83fed9
An easy way to get started is to install the msysgit fullinstall
Packit 83fed9
package from: http://code.google.com/p/msysgit/downloads/list
Packit 83fed9
Packit 83fed9
msysgit does not contain the "autotools" needed to generate a
Packit 83fed9
configure script, so you need to generate that on another box (this
Packit 83fed9
should not be a problem if you're trying to build from a tar archive).
Packit 83fed9
Packit 83fed9
msysgit does not contain the tools to build the documentation, so you
Packit 83fed9
need to add --without-docs to configure.
Packit 83fed9
Packit 83fed9
I'm normally building libmemcached with:
Packit 83fed9
Packit 83fed9
Ex:
Packit 83fed9
$ ./configure --without-docs --with-memcached=../memcached/memcached.exe
Packit 83fed9
$ make all install
Packit 83fed9
Packit 83fed9
Happy hacking,
Packit 83fed9
Packit 83fed9
Trond Norbye