882.1.7
by Trond Norbye
Added a readme file on how to build on windows |
1 |
Hi, |
2 |
||
3 |
So you want to know how to build libmemcached on Windows? In order to |
|
4 |
have a single build environment you need to install mingw to get a |
|
5 |
"unix environment" to run the configure script. |
|
6 |
||
7 |
An easy way to get started is to install the msysgit fullinstall |
|
8 |
package from: http://code.google.com/p/msysgit/downloads/list |
|
9 |
||
10 |
msysgit does not contain the "autotools" needed to generate a |
|
11 |
configure script, so you need to generate that on another box (this |
|
12 |
should not be a problem if you're trying to build from a tar archive). |
|
13 |
||
14 |
msysgit does not contain the tools to build the documentation, so you |
|
15 |
need to add --without-docs to configure. |
|
16 |
||
17 |
I'm normally building libmemcached with: |
|
18 |
||
19 |
Ex: |
|
20 |
$ ./configure --without-docs --with-memcached=../memcached/memcached.exe |
|
21 |
$ make all install |
|
22 |
||
23 |
Happy hacking, |
|
24 |
||
25 |
Trond Norbye |