diff options
author | Neil Blakey-Milner <nbm@FreeBSD.org> | 2000-08-03 11:19:05 +0000 |
---|---|---|
committer | Neil Blakey-Milner <nbm@FreeBSD.org> | 2000-08-03 11:19:05 +0000 |
commit | 8936ab790f69cf9e1cb5c477b5735062f7710a06 (patch) | |
tree | cf031221acec8d83bcf6e386fea8c868df635ecb /www/mod_auth_mysql/files/patch-ac | |
parent | (1) Add new variable, XFREE86_VERSION, to specify which version of (diff) |
Add mod_auth_mysql, allowing apache to authenticate against a mysql
database.
PR: ports/18730
Submitted by: James Housley <jim@thehousleys.net>
Notes
Notes:
svn path=/head/; revision=31273
Diffstat (limited to 'www/mod_auth_mysql/files/patch-ac')
-rw-r--r-- | www/mod_auth_mysql/files/patch-ac | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/www/mod_auth_mysql/files/patch-ac b/www/mod_auth_mysql/files/patch-ac new file mode 100644 index 000000000000..8e7947f82ab1 --- /dev/null +++ b/www/mod_auth_mysql/files/patch-ac @@ -0,0 +1,30 @@ +--- Makefile.in.orig Sat Oct 3 06:24:28 1998 ++++ Makefile.in Fri May 19 23:52:29 2000 +@@ -14,9 +14,27 @@ + REGCFLAGS = $(CFLAGS) + APXS = @APXS@ + APXS_LDFLAGS = @APXS_LDFLAGS@ ++APXS_INCLUDE = @APXS_INCLUDE@ + WARNING_LEVEL = @WARNING_LEVEL@ + ++# the default target ++all: build ++ ++# build the shared object file for Apache ++build: mod_auth_mysql.so ++ ++# compile the shared object file ++mod_auth_mysql.so: auth_mysql_config.h mod_auth_mysql.c ++ $(APXS) -c -o libauth_mysql.so ${APXS_LDFLAGS} ${APXS_INCLUDE} mod_auth_mysql.c ++ ++auth_mysql_config.h: ++ cp config.h auth_mysql_config.h ++ ++# install the shared object file into Apache + install: + $(INSTALL_IT) + @cat .install_notes + ++# cleanup ++clean: ++ -rm -f mod_auth_mysql.o mod_auth_mysql.so |