summaryrefslogtreecommitdiffstatsabout
path: root/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL10
1 files changed, 6 insertions, 4 deletions
diff --git a/INSTALL b/INSTALL
index 4963123..86807a2 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,4 +1,4 @@
1$Id: INSTALL,v 1.2 2001/12/03 19:54:02 helios Exp $ 1$Id: INSTALL,v 1.3 2002/01/02 20:47:44 helios Exp $
2 2
3 3
4Requirements 4Requirements
@@ -44,10 +44,12 @@ instructions.)
44 # tar zxf mod_log_mysql.tar.gz -C /usr/local/src 44 # tar zxf mod_log_mysql.tar.gz -C /usr/local/src
45 # cd /usr/local/src/mod_log_mysql 45 # cd /usr/local/src/mod_log_mysql
46 46
472) Instruct apxs to compile and install the module as a DSO. (My apxs is 472) Instruct apxs to compile and install the module as a DSO. You need
48 in /usr/local/Apache/bin, perform a "locate" to find yours...) 48 to know two things before you run apxs:
49 - The location of the apxs binary, find using 'locate apxs'
50 - The location of your MySQL libraries, find using 'locate libmysqlclient'
49 51
50 # <path>/apxs -i -a -c mod_log_mysql.c 52 # <path>/apxs -i -a -c -L<path to MySQL libs> -lmysqlclient -lz mod_log_mysql.c
51 53
52 You should see something like this: 54 You should see something like this:
53 55