head	1.5;
access;
symbols
	RELEASE_5_4_0:1.4
	RELEASE_4_11_0:1.4
	RELEASE_5_3_0:1.4
	RELEASE_4_10_0:1.4
	RELEASE_5_2_1:1.4
	RELEASE_5_2_0:1.4
	RELEASE_4_9_0:1.4
	RELEASE_5_1_0:1.3
	RELEASE_4_8_0:1.3
	RELEASE_5_0_0:1.3
	RELEASE_4_7_0:1.3
	RELEASE_4_6_2:1.2
	RELEASE_4_6_1:1.2
	RELEASE_4_6_0:1.2;
locks; strict;
comment	@# @;


1.5
date	2005.04.05.08.23.53;	author mbr;	state dead;
branches;
next	1.4;

1.4
date	2003.06.30.09.35.28;	author mbr;	state Exp;
branches;
next	1.3;

1.3
date	2002.09.11.12.51.34;	author mbr;	state Exp;
branches;
next	1.2;

1.2
date	2002.05.22.15.50.34;	author mbr;	state Exp;
branches;
next	1.1;

1.1
date	2002.04.27.13.53.37;	author mbr;	state Exp;
branches;
next	;


desc
@@


1.5
log
@Upgrade to 2.9.0, remove obsoleted patches.

PR:		74686
Submitted by:	ports@@c0decafe.net
@
text
@--- /dev/null	Sat Apr 20 17:11:40 2002
+++ Makefile.orig	Sat Apr 20 17:12:22 2002
@@@@ -0,0 +1,11 @@@@
+APXS  = %%APXS%%
+DSO   = %%DSO%%
+SRCS  = mod_auth_mysql.c
+OPTS  = -D %%APACHE_VER%% -I%%LOCALBASE%%/include -L%%LOCALBASE%%/lib/mysql -lmysqlclient
+
+all:
+	$(APXS) -c $(OPTS) $(SRCS)
+
+install:
+	$(APXS) -i -a $(DSO)
+
@


1.4
log
@Update to 2.0. Include Apache 2 support.

PR:		52436
Submitted by:	Alex Dupre <sysadmin@@alexdupre.com>
@
text
@@


1.3
log
@Unbreak port on stable. Apxs was hardcoded in the Makefile.
@
text
@d2 4
a5 5
+++ Makefile	Sat Apr 20 17:12:22 2002
@@@@ -0,0 +1,17 @@@@
+APXS      = %%APXS%%
+APXSFLAGS = %%APXSFLAGS%%
+DSO   = mod_auth_mysql.so
d7 1
a7 1
+OPTS  = -I%%PREFIX%%/include -L%%PREFIX%%/lib/mysql -lmysqlclient
d9 2
a10 1
+all: $(DSO)
d12 2
a13 8
+$(DSO): $(SRCS)
+	$(APXS) $(APXSFLAGS) -o $(DSO) $(OPTS) -c $(SRCS) -rpath %%PREFIX%%/lib/mysql
+
+install: $(DSO)
+	$(APXS) $(APXSFLAGS) $(NAME) -i -A $(DSO)
+
+clean:
+	-rm -f *.o $(DSO)
@


1.2
log
@Change LOCALBASE to PREFIX, and set -rpath, so the module can be installed
into PREFIX without setting LD_LIBRARY_PATH.
@
text
@d4 2
a5 2
+APXS      = apxs
+APXSFLAGS =
@


1.1
log
@Another version of mod_auth_mysql which works ok with more than one
Database too.
@
text
@d8 1
a8 1
+OPTS  = -I/usr/local/include -L/usr/local/lib/mysql -lmysqlclient
d13 1
a13 1
+	$(APXS) $(APXSFLAGS) -o $(DSO) $(OPTS) -c $(SRCS)
@

