~brianaker/libmemcached/1164440

« back to all changes in this revision

Viewing changes to README.win32

Merging bzr://gaz.tangent.org/libmemcached/build/ to Build branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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