1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Fix with apache 2.4.

Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2014-08-25 14:58:09 +00:00
parent 750c7b06b1
commit e00461bd26
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=366082
2 changed files with 17 additions and 1 deletions

View File

@ -12,7 +12,7 @@ MAINTAINER= apache@FreeBSD.org
COMMENT= Allows users to use PostgreSQL databases for user authentication
USES= pgsql
USE_APACHE= 22
USE_APACHE= 22+
AP_INC?= ${LOCALBASE}/include
AP_LIB?= ${LOCALBASE}/lib -lpq

View File

@ -0,0 +1,16 @@
--- ./mod_auth_pgsql.c.orig 2006-01-05 15:15:13.000000000 +0100
+++ ./mod_auth_pgsql.c 2014-08-25 16:53:20.000000000 +0200
@@ -1060,8 +1060,13 @@
apr_snprintf(sql, MAX_STRING_LEN, ", %s",
sec->auth_pg_log_addrs_field);
strncat(fields, sql, MAX_STRING_LEN - strlen(fields) - 1);
+#if MODULE_MAGIC_NUMBER_MAJOR >= 20111130
+ apr_snprintf(sql, MAX_STRING_LEN, ", '%s'",
+ r->useragent_ip);
+#else
apr_snprintf(sql, MAX_STRING_LEN, ", '%s'",
r->connection->remote_ip);
+#endif
strncat(values, sql, MAX_STRING_LEN - strlen(values) - 1);
}
if (sec->auth_pg_log_pwd_field) { /* Password field , clear WARNING */