I am running fedora core 4 and xammp. I am trying to add mod_auth_mysql to apache. I am not sure what I am doing wrong. Could someone tell me how to do it step by step as I am getting all sorts of errors.
Thanks in advance
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
install: $(DSO)
$(APXS) $(APXSFLAGS) $(NAME) -i -A $(DSO)
clean:
-rm -f *.o $(DSO)
and i get the following response:
# make
/opt/lampp/bin/apxs -o mod_auth_mysql.so -I/opt/lampp/bin -L/opt/lampp/lib/mysq l -lmysqlclient -c mod_auth_mysql.c
cannot open /opt/lampp/build/config_vars.mk: No such file or directory at /opt/l ampp/bin/apxs line 218.
make: *** [mod_auth_mysql.so] Error 2
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I am running fedora core 4 and xammp. I am trying to add mod_auth_mysql to apache. I am not sure what I am doing wrong. Could someone tell me how to do it step by step as I am getting all sorts of errors.
Thanks in advance
I got error 2.
I ran the following make file:
APXS = /opt/lampp/bin/apxs
APXSFLAGS =
DSO = mod_auth_mysql.so
SRCS = mod_auth_mysql.c
HDRS = mod_auth_mysql.h
OPTS = -I/opt/lampp/bin -L/opt/lampp/lib/mysql -lmysqlclient
all: $(DSO)
$(DSO): $(SRCS) $(HDRS)
$(APXS) $(APXSFLAGS) -o $(DSO) $(OPTS) -c $(SRCS)
install: $(DSO)
$(APXS) $(APXSFLAGS) $(NAME) -i -A $(DSO)
clean:
-rm -f *.o $(DSO)
and i get the following response:
# make
/opt/lampp/bin/apxs -o mod_auth_mysql.so -I/opt/lampp/bin -L/opt/lampp/lib/mysq l -lmysqlclient -c mod_auth_mysql.c
cannot open /opt/lampp/build/config_vars.mk: No such file or directory at /opt/l ampp/bin/apxs line 218.
make: *** [mod_auth_mysql.so] Error 2