Skip to content

Commit 6c4372d

Browse files
committed
Merge branch 'master' of github.com:ZenProjects/Apache-Authmemcookie-Module
2 parents cd5c814 + 36c86b6 commit 6c4372d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ The module doesn’t make Authentication by it self, but verify if Authenticatio
77

88
Authentication is made externally by an Authentication html form page and all Authentication information necessary to the module a stored in memcached identified by the cookie value "Authentication session id" by this login page.
99

10+
# Compilation
11+
12+
user make with MY_ macro as arguments to specify where to find libmemcache and Apache httpd apxs developper tool
13+
```
14+
# make MY_APXS=/path/to/apache/httpd/bin/apxs MY_LDFLAGS="-lmemcache -L/path/to/libmemcache/lib/" MY_CFLAGS=-I/path/to/libmemcache/include
15+
# make install
16+
```
17+
18+
or change to macro in Makefile
19+
```
20+
MY_APXS=/path/to/apache/httpd/bin/apxs
21+
MY_LDFLAGS="-lmemcache -L/path/to/libmemcache/lib/"
22+
MY_CFLAGS=-I/path/to/libmemcache/include
23+
```
24+
25+
and after simply do
26+
27+
```
28+
# make
29+
# make install
30+
```
31+
1032

1133
# News in this version (v1.1)
1234

0 commit comments

Comments
 (0)