Compare commits
10 Commits
b9d222c814
...
bb73e4f7e7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb73e4f7e7 | ||
|
|
000721ea8f | ||
|
|
ff27f879d0 | ||
|
|
c28767dd0d | ||
|
|
119a01949c | ||
|
|
2a924db058 | ||
|
|
66bb282474 | ||
|
|
fedbea0b02 | ||
|
|
316fd09853 | ||
|
|
aab69dd72e |
@ -1,133 +0,0 @@
|
||||
From 1a476fb1cc53aa7beedf3d6e90573a81a421c506 Mon Sep 17 00:00:00 2001
|
||||
From: Stefan Fritsch <sf@apache.org>
|
||||
Date: Sun, 25 Feb 2018 16:41:11 +0000
|
||||
Subject: [PATCH 06/15] Fix error handling in gdbm
|
||||
|
||||
Only check for gdbm_errno if the return value of the called gdbm_*
|
||||
function says so. This fixes apr-util with gdbm 1.14, which does not
|
||||
seem to always reset gdbm_errno.
|
||||
|
||||
Also make the gdbm driver return error codes starting with
|
||||
APR_OS_START_USEERR instead of always returning APR_EGENERAL. This is
|
||||
what the berkleydb driver already does.
|
||||
|
||||
Also ensure that dsize is 0 if dptr == NULL.
|
||||
|
||||
(backport of r1825311 in apr trunk)
|
||||
|
||||
|
||||
|
||||
git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.6.x@1825312 13f79535-47bb-0310-9956-ffa450edef68
|
||||
---
|
||||
CHANGES | 5 ++++-
|
||||
dbm/apr_dbm_gdbm.c | 48 ++++++++++++++++++++++++++++------------------
|
||||
2 files changed, 33 insertions(+), 20 deletions(-)
|
||||
|
||||
|
||||
diff --git a/dbm/apr_dbm_gdbm.c b/dbm/apr_dbm_gdbm.c
|
||||
index 749447a0..4d563491 100644
|
||||
--- a/dbm/apr_dbm_gdbm.c
|
||||
+++ b/dbm/apr_dbm_gdbm.c
|
||||
@@ -36,8 +36,20 @@
|
||||
static apr_status_t g2s(int gerr)
|
||||
{
|
||||
if (gerr == -1) {
|
||||
- /* ### need to fix this */
|
||||
- return APR_EGENERAL;
|
||||
+ if (gdbm_errno == GDBM_NO_ERROR)
|
||||
+ return APR_SUCCESS;
|
||||
+ return APR_OS_START_USEERR + gdbm_errno;
|
||||
+ }
|
||||
+
|
||||
+ return APR_SUCCESS;
|
||||
+}
|
||||
+
|
||||
+static apr_status_t gdat2s(datum d)
|
||||
+{
|
||||
+ if (d.dptr == NULL) {
|
||||
+ if (gdbm_errno == GDBM_NO_ERROR || gdbm_errno == GDBM_ITEM_NOT_FOUND)
|
||||
+ return APR_SUCCESS;
|
||||
+ return APR_OS_START_USEERR + gdbm_errno;
|
||||
}
|
||||
|
||||
return APR_SUCCESS;
|
||||
@@ -53,22 +65,14 @@ static apr_status_t datum_cleanup(void *dptr)
|
||||
|
||||
static apr_status_t set_error(apr_dbm_t *dbm, apr_status_t dbm_said)
|
||||
{
|
||||
- apr_status_t rv = APR_SUCCESS;
|
||||
-
|
||||
- /* ### ignore whatever the DBM said (dbm_said); ask it explicitly */
|
||||
+ dbm->errcode = dbm_said;
|
||||
|
||||
- if ((dbm->errcode = gdbm_errno) == GDBM_NO_ERROR) {
|
||||
+ if (dbm_said == APR_SUCCESS)
|
||||
dbm->errmsg = NULL;
|
||||
- }
|
||||
- else {
|
||||
- dbm->errmsg = gdbm_strerror(gdbm_errno);
|
||||
- rv = APR_EGENERAL; /* ### need something better */
|
||||
- }
|
||||
-
|
||||
- /* captured it. clear it now. */
|
||||
- gdbm_errno = GDBM_NO_ERROR;
|
||||
+ else
|
||||
+ dbm->errmsg = gdbm_strerror(dbm_said - APR_OS_START_USEERR);
|
||||
|
||||
- return rv;
|
||||
+ return dbm_said;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------
|
||||
@@ -107,7 +111,7 @@ static apr_status_t vt_gdbm_open(apr_dbm_t **pdb, const char *pathname,
|
||||
NULL);
|
||||
|
||||
if (file == NULL)
|
||||
- return APR_EGENERAL; /* ### need a better error */
|
||||
+ return APR_OS_START_USEERR + gdbm_errno;
|
||||
|
||||
/* we have an open database... return it */
|
||||
*pdb = apr_pcalloc(pool, sizeof(**pdb));
|
||||
@@ -141,10 +145,12 @@ static apr_status_t vt_gdbm_fetch(apr_dbm_t *dbm, apr_datum_t key,
|
||||
if (pvalue->dptr)
|
||||
apr_pool_cleanup_register(dbm->pool, pvalue->dptr, datum_cleanup,
|
||||
apr_pool_cleanup_null);
|
||||
+ else
|
||||
+ pvalue->dsize = 0;
|
||||
|
||||
/* store the error info into DBM, and return a status code. Also, note
|
||||
that *pvalue should have been cleared on error. */
|
||||
- return set_error(dbm, APR_SUCCESS);
|
||||
+ return set_error(dbm, gdat2s(rd));
|
||||
}
|
||||
|
||||
static apr_status_t vt_gdbm_store(apr_dbm_t *dbm, apr_datum_t key,
|
||||
@@ -201,9 +207,11 @@ static apr_status_t vt_gdbm_firstkey(apr_dbm_t *dbm, apr_datum_t *pkey)
|
||||
if (pkey->dptr)
|
||||
apr_pool_cleanup_register(dbm->pool, pkey->dptr, datum_cleanup,
|
||||
apr_pool_cleanup_null);
|
||||
+ else
|
||||
+ pkey->dsize = 0;
|
||||
|
||||
/* store any error info into DBM, and return a status code. */
|
||||
- return set_error(dbm, APR_SUCCESS);
|
||||
+ return set_error(dbm, gdat2s(rd));
|
||||
}
|
||||
|
||||
static apr_status_t vt_gdbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey)
|
||||
@@ -221,9 +229,11 @@ static apr_status_t vt_gdbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey)
|
||||
if (pkey->dptr)
|
||||
apr_pool_cleanup_register(dbm->pool, pkey->dptr, datum_cleanup,
|
||||
apr_pool_cleanup_null);
|
||||
+ else
|
||||
+ pkey->dsize = 0;
|
||||
|
||||
/* store any error info into DBM, and return a status code. */
|
||||
- return set_error(dbm, APR_SUCCESS);
|
||||
+ return set_error(dbm, gdat2s(rd));
|
||||
}
|
||||
|
||||
static void vt_gdbm_freedatum(apr_dbm_t *dbm, apr_datum_t data)
|
||||
--
|
||||
2.19.1
|
||||
|
||||
@ -1,46 +0,0 @@
|
||||
From aecf1eb280326484a58b21c68a18373f7c17872e Mon Sep 17 00:00:00 2001
|
||||
From: Ruediger Pluem <rpluem@apache.org>
|
||||
Date: Mon, 5 Feb 2018 09:44:16 +0000
|
||||
Subject: [PATCH 05/15] Merge r1822315 from trunk:
|
||||
|
||||
* We cannot access list any longer after we called apr_allocator_free as it points to memory we just freed.
|
||||
|
||||
Reviewed by: rpluem
|
||||
|
||||
|
||||
git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.6.x@1823146 13f79535-47bb-0310-9956-ffa450edef68
|
||||
---
|
||||
buckets/apr_buckets_alloc.c | 13 +++++++++++--
|
||||
1 file changed, 11 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/buckets/apr_buckets_alloc.c b/buckets/apr_buckets_alloc.c
|
||||
index e5838dd0..2d6f214e 100644
|
||||
--- a/buckets/apr_buckets_alloc.c
|
||||
+++ b/buckets/apr_buckets_alloc.c
|
||||
@@ -45,12 +45,21 @@ struct apr_bucket_alloc_t {
|
||||
static apr_status_t alloc_cleanup(void *data)
|
||||
{
|
||||
apr_bucket_alloc_t *list = data;
|
||||
+#if APR_POOL_DEBUG
|
||||
+ apr_allocator_t *allocator = NULL;
|
||||
+#endif
|
||||
+
|
||||
+#if APR_POOL_DEBUG
|
||||
+ if (list->pool && list->allocator != apr_pool_allocator_get(list->pool)) {
|
||||
+ allocator = list->allocator;
|
||||
+ }
|
||||
+#endif
|
||||
|
||||
apr_allocator_free(list->allocator, list->blocks);
|
||||
|
||||
#if APR_POOL_DEBUG
|
||||
- if (list->pool && list->allocator != apr_pool_allocator_get(list->pool)) {
|
||||
- apr_allocator_destroy(list->allocator);
|
||||
+ if (allocator) {
|
||||
+ apr_allocator_destroy(allocator);
|
||||
}
|
||||
#endif
|
||||
|
||||
--
|
||||
2.19.1
|
||||
|
||||
@ -1,142 +0,0 @@
|
||||
From a3a77fb2cb515be72de6eb36d51da40998a2d8a3 Mon Sep 17 00:00:00 2001
|
||||
From: Yann Ylavic <ylavic@apache.org>
|
||||
Date: Wed, 27 Jun 2018 23:18:10 +0000
|
||||
Subject: [PATCH 08/15] Merge r1834022, r1834023, r1834024 from trunk:
|
||||
|
||||
apr_reslist: test for ttl = 0
|
||||
|
||||
The current reslist implementation handles ttl=0 as no TTL when acquiring
|
||||
resources (expected and documented), but as zero TTL when releasing (immediate
|
||||
expiry, so resources above smax are never recycled).
|
||||
|
||||
This test validates the upcoming fix (r1834023).
|
||||
|
||||
|
||||
apr_reslist: fix release of resource with zero/no TTL.
|
||||
|
||||
Ignore expiry when ttl=0 in apr_reslist_maintain(), like apr_reslist_acquire().
|
||||
|
||||
While ttl=0 is supposed to mean no TTL/expiry, apr_reslist_maintain() hence
|
||||
apr_reslist_release() were destroying all resources above smax in this case.
|
||||
|
||||
Corresponding test already committed in r1834022.
|
||||
|
||||
|
||||
apr_reslist: follow up to r1834023: avoid unnecessary apr_time_now() calls.
|
||||
|
||||
When ttl=0 is configured, we never need to check for expiry.
|
||||
|
||||
|
||||
git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.6.x@1834558 13f79535-47bb-0310-9956-ffa450edef68
|
||||
---
|
||||
misc/apr_reslist.c | 16 +++++++++++-----
|
||||
test/testreslist.c | 39 +++++++++++++++++++++++++++++++++++++++
|
||||
2 files changed, 50 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/misc/apr_reslist.c b/misc/apr_reslist.c
|
||||
index 0c43e074..12ae96a1 100644
|
||||
--- a/misc/apr_reslist.c
|
||||
+++ b/misc/apr_reslist.c
|
||||
@@ -81,7 +81,9 @@ static apr_res_t *pop_resource(apr_reslist_t *reslist)
|
||||
static void push_resource(apr_reslist_t *reslist, apr_res_t *resource)
|
||||
{
|
||||
APR_RING_INSERT_HEAD(&reslist->avail_list, resource, apr_res_t, link);
|
||||
- resource->freed = apr_time_now();
|
||||
+ if (reslist->ttl) {
|
||||
+ resource->freed = apr_time_now();
|
||||
+ }
|
||||
reslist->nidle++;
|
||||
}
|
||||
|
||||
@@ -210,8 +212,10 @@ APU_DECLARE(apr_status_t) apr_reslist_maintain(apr_reslist_t *reslist)
|
||||
created_one++;
|
||||
}
|
||||
|
||||
- /* We don't need to see if we're over the max if we were under it before */
|
||||
- if (created_one) {
|
||||
+ /* We don't need to see if we're over the max if we were under it before,
|
||||
+ * nor need we check for expiry if no ttl is configure.
|
||||
+ */
|
||||
+ if (created_one || !reslist->ttl) {
|
||||
#if APR_HAS_THREADS
|
||||
apr_thread_mutex_unlock(reslist->listlock);
|
||||
#endif
|
||||
@@ -328,14 +332,16 @@ APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist,
|
||||
{
|
||||
apr_status_t rv;
|
||||
apr_res_t *res;
|
||||
- apr_time_t now;
|
||||
+ apr_time_t now = 0;
|
||||
|
||||
#if APR_HAS_THREADS
|
||||
apr_thread_mutex_lock(reslist->listlock);
|
||||
#endif
|
||||
/* If there are idle resources on the available list, use
|
||||
* them right away. */
|
||||
- now = apr_time_now();
|
||||
+ if (reslist->ttl) {
|
||||
+ now = apr_time_now();
|
||||
+ }
|
||||
while (reslist->nidle > 0) {
|
||||
/* Pop off the first resource */
|
||||
res = pop_resource(reslist);
|
||||
diff --git a/test/testreslist.c b/test/testreslist.c
|
||||
index 36333a15..78c908d2 100644
|
||||
--- a/test/testreslist.c
|
||||
+++ b/test/testreslist.c
|
||||
@@ -258,6 +258,44 @@ static void test_reslist(abts_case *tc, void *data)
|
||||
ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
|
||||
}
|
||||
|
||||
+static void test_reslist_no_ttl(abts_case *tc, void *data)
|
||||
+{
|
||||
+ apr_status_t rv;
|
||||
+ apr_reslist_t *rl;
|
||||
+ my_parameters_t *params;
|
||||
+ my_resource_t *res;
|
||||
+
|
||||
+ /* Parameters (sleep not used) */
|
||||
+ params = apr_pcalloc(p, sizeof(*params));
|
||||
+
|
||||
+ rv = apr_reslist_create(&rl,
|
||||
+ /*no min*/0, /*no smax*/0, /*max*/1, /*no ttl*/0,
|
||||
+ my_constructor, my_destructor, params, p);
|
||||
+ ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
|
||||
+
|
||||
+ /* Acquire/contruct one resource */
|
||||
+ rv = apr_reslist_acquire(rl, (void **)&res);
|
||||
+ ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
|
||||
+ ABTS_INT_EQUAL(tc, 0, res->id);
|
||||
+
|
||||
+ /* Release it before next check */
|
||||
+ rv = apr_reslist_release(rl, res);
|
||||
+ ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
|
||||
+
|
||||
+ /* Re-acquire/release: the resource should be the same */
|
||||
+ rv = apr_reslist_acquire(rl, (void **)&res);
|
||||
+ ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
|
||||
+ ABTS_INT_EQUAL(tc, 0, res->id);
|
||||
+
|
||||
+ /* Release it before cleanup */
|
||||
+ rv = apr_reslist_release(rl, res);
|
||||
+ ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
|
||||
+
|
||||
+ rv = apr_reslist_destroy(rl);
|
||||
+ ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
|
||||
+ ABTS_INT_EQUAL(tc, params->d_count, 1);
|
||||
+}
|
||||
+
|
||||
#endif /* APR_HAS_THREADS */
|
||||
|
||||
abts_suite *testreslist(abts_suite *suite)
|
||||
@@ -266,6 +304,7 @@ abts_suite *testreslist(abts_suite *suite)
|
||||
|
||||
#if APR_HAS_THREADS
|
||||
abts_run_test(suite, test_reslist, NULL);
|
||||
+ abts_run_test(suite, test_reslist_no_ttl, NULL);
|
||||
#endif
|
||||
|
||||
return suite;
|
||||
--
|
||||
2.19.1
|
||||
|
||||
@ -1,30 +0,0 @@
|
||||
From 966ad88931e413f1f6a29035af67fe06b7e7fdc3 Mon Sep 17 00:00:00 2001
|
||||
From: Rainer Jung <rjung@apache.org>
|
||||
Date: Sat, 25 Aug 2018 13:38:26 +0000
|
||||
Subject: [PATCH 10/15] Remove dereference of null pointer.
|
||||
|
||||
Backport of r1836231 from trunk.
|
||||
|
||||
|
||||
git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.6.x@1839051 13f79535-47bb-0310-9956-ffa450edef68
|
||||
---
|
||||
hooks/apr_hooks.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/hooks/apr_hooks.c b/hooks/apr_hooks.c
|
||||
index 4cedb3a5..af3dc958 100644
|
||||
--- a/hooks/apr_hooks.c
|
||||
+++ b/hooks/apr_hooks.c
|
||||
@@ -180,7 +180,8 @@ static TSort *tsort(TSort *pData,int nItems)
|
||||
break;
|
||||
}
|
||||
}
|
||||
- pTail->pNext=NULL; /* unfudge the tail */
|
||||
+ if(pTail)
|
||||
+ pTail->pNext=NULL; /* unfudge the tail */
|
||||
return pHead;
|
||||
}
|
||||
|
||||
--
|
||||
2.19.1
|
||||
|
||||
@ -1,128 +0,0 @@
|
||||
This is an upstream patch from: https://bz.apache.org/bugzilla/show_bug.cgi?id=61517
|
||||
|
||||
diff -ur a/build/dbd.m4 b/build/dbd.m4
|
||||
--- a/build/dbd.m4 2017-05-03 19:18:52.000000000 -0400
|
||||
+++ b/build/dbd.m4 2017-09-13 16:58:07.369546391 -0400
|
||||
@@ -163,10 +163,15 @@
|
||||
old_cppflags="$CPPFLAGS"
|
||||
old_ldflags="$LDFLAGS"
|
||||
|
||||
+ my_library="mysqlclient"
|
||||
+
|
||||
AC_ARG_WITH([mysql], APR_HELP_STRING([--with-mysql=DIR], [enable MySQL DBD driver]),
|
||||
[
|
||||
if test "$withval" = "yes"; then
|
||||
AC_PATH_PROG([MYSQL_CONFIG],[mysql_config])
|
||||
+ if test "x$MYSQL_CONFIG" = "x"; then
|
||||
+ AC_PATH_PROG([MYSQL_CONFIG],[mariadb_config])
|
||||
+ fi
|
||||
if test "x$MYSQL_CONFIG" != 'x'; then
|
||||
mysql_CPPFLAGS="`$MYSQL_CONFIG --include`"
|
||||
mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`"
|
||||
@@ -174,32 +179,40 @@
|
||||
|
||||
APR_ADDTO(CPPFLAGS, [$mysql_CPPFLAGS])
|
||||
APR_ADDTO(LIBS, [$mysql_LIBS])
|
||||
+
|
||||
+ if $MYSQL_CONFIG --libs_r | grep -q mariadb; then
|
||||
+ my_library="mariadb"
|
||||
+ fi
|
||||
fi
|
||||
|
||||
- AC_CHECK_HEADERS([mysql.h my_global.h my_sys.h],
|
||||
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
||||
- [apu_have_mysql=0; break],
|
||||
- [#include <my_global.h>])
|
||||
- if test "$apu_have_mysql" = "0"; then
|
||||
- AC_CHECK_HEADERS([mysql/mysql.h mysql/my_global.h mysql/my_sys.h],
|
||||
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
||||
- [apu_have_mysql=0; break],
|
||||
- [#include <mysql/my_global.h>])
|
||||
+ AC_CHECK_HEADERS([mysql.h errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
||||
+ if test "$apr_have_mysql" = "0"; then
|
||||
+ AC_CHECK_HEADERS([mysql/mysql.h mysql/errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
||||
fi
|
||||
- if test "$apu_have_mysql" != "0" && test "x$MYSQL_CONFIG" != 'x'; then
|
||||
- APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS])
|
||||
+ if test "$apr_have_mysql" = "1"; then
|
||||
+ AC_CHECK_HEADERS([my_global.h my_sys.h mysql/my_global.h mysql/my_sys.h])
|
||||
+ AC_CHECK_LIB($my_library, mysql_init,, [apu_have_mysql=0])
|
||||
+ fi
|
||||
+ if test "$apu_have_mysql" = "1" && test "x$MYSQL_CONFIG" != 'x'; then
|
||||
+ APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS])
|
||||
fi
|
||||
elif test "$withval" = "no"; then
|
||||
:
|
||||
else
|
||||
AC_PATH_PROG([MYSQL_CONFIG],[mysql_config],,[$withval/bin])
|
||||
+ if test "x$MYSQL_CONFIG" = "x"; then
|
||||
+ AC_PATH_PROG([MYSQL_CONFIG],[mariadb_config],,[$withval/bin])
|
||||
+ fi
|
||||
if test "x$MYSQL_CONFIG" != 'x'; then
|
||||
- mysql_CPPFLAGS="`$MYSQL_CONFIG --include`"
|
||||
- mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`"
|
||||
- mysql_LIBS="`$MYSQL_CONFIG --libs_r`"
|
||||
+ mysql_CPPFLAGS="`$MYSQL_CONFIG --include`"
|
||||
+ mysql_LDFLAGS="`$MYSQL_CONFIG --libs_r | sed -e 's/-l[[^ ]]\+//g'`"
|
||||
+ mysql_LIBS="`$MYSQL_CONFIG --libs_r`"
|
||||
+ if $MYSQL_CONFIG --libs_r | grep -q mariadb; then
|
||||
+ my_library="mariadb"
|
||||
+ fi
|
||||
else
|
||||
- mysql_CPPFLAGS="-I$withval/include"
|
||||
- mysql_LDFLAGS="-L$withval/lib "
|
||||
+ mysql_CPPFLAGS="-I$withval/include"
|
||||
+ mysql_LDFLAGS="-L$withval/lib "
|
||||
fi
|
||||
|
||||
APR_ADDTO(CPPFLAGS, [$mysql_CPPFLAGS])
|
||||
@@ -207,18 +220,15 @@
|
||||
APR_ADDTO(LIBS, [$mysql_LIBS])
|
||||
|
||||
AC_MSG_NOTICE(checking for mysql in $withval)
|
||||
- AC_CHECK_HEADERS([mysql.h my_global.h my_sys.h],
|
||||
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
||||
- [apu_have_mysql=0; break],
|
||||
- [#include <my_global.h>])
|
||||
-
|
||||
- if test "$apu_have_mysql" != "1"; then
|
||||
- AC_CHECK_HEADERS([mysql/mysql.h mysql/my_global.h mysql/my_sys.h],
|
||||
- AC_CHECK_LIB(mysqlclient, mysql_init, [apu_have_mysql=1]),
|
||||
- [apu_have_mysql=0; break],
|
||||
- [#include <mysql/my_global.h>])
|
||||
+ AC_CHECK_HEADERS([mysql.h errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
||||
+ if test "$apr_have_mysql" = "0"; then
|
||||
+ AC_CHECK_HEADERS([mysql/mysql.h mysql/errmsg.h], [apu_have_mysql=1], [apu_have_mysql=0; break])
|
||||
+ fi
|
||||
+ if test "$apr_have_mysql" = "1"; then
|
||||
+ AC_CHECK_HEADERS([my_global.h my_sys.h mysql/my_global.h mysql/my_sys.h])
|
||||
+ AC_CHECK_LIB($my_library, mysql_init,, [apu_have_mysql=0])
|
||||
fi
|
||||
- if test "$apu_have_mysql" != "0"; then
|
||||
+ if test "$apu_have_mysql" = "1"; then
|
||||
APR_ADDTO(APRUTIL_PRIV_INCLUDES, [$mysql_CPPFLAGS])
|
||||
fi
|
||||
fi
|
||||
@@ -229,7 +239,7 @@
|
||||
dnl Since we have already done the AC_CHECK_LIB tests, if we have it,
|
||||
dnl we know the library is there.
|
||||
if test "$apu_have_mysql" = "1"; then
|
||||
- APR_ADDTO(LDADD_dbd_mysql, [$mysql_LDFLAGS -lmysqlclient $mysql_LIBS])
|
||||
+ APR_ADDTO(LDADD_dbd_mysql, [$mysql_LDFLAGS -l$my_library $mysql_LIBS])
|
||||
fi
|
||||
AC_SUBST(LDADD_dbd_mysql)
|
||||
|
||||
diff -ur a/dbd/apr_dbd_mysql.c b/dbd/apr_dbd_mysql.c
|
||||
--- a/dbd/apr_dbd_mysql.c 2017-05-03 19:18:52.000000000 -0400
|
||||
+++ b/dbd/apr_dbd_mysql.c 2017-09-13 19:15:20.894368809 -0400
|
||||
@@ -1262,7 +1262,9 @@
|
||||
|
||||
static void dbd_mysql_init(apr_pool_t *pool)
|
||||
{
|
||||
+#if MYSQL_VERSION_ID < 100000
|
||||
my_init();
|
||||
+#endif
|
||||
mysql_thread_init();
|
||||
|
||||
/* FIXME: this is a guess; find out what it really does */
|
||||
|
||||
Binary file not shown.
BIN
apr-util-1.6.3.tar.bz2
Normal file
BIN
apr-util-1.6.3.tar.bz2
Normal file
Binary file not shown.
28
apr-util-Add-sw64-architecture.patch
Normal file
28
apr-util-Add-sw64-architecture.patch
Normal file
@ -0,0 +1,28 @@
|
||||
From a84e910ee8c0991ee23da668f9e849da3b03ebed Mon Sep 17 00:00:00 2001
|
||||
From: wzx <wuzx1226@qq.com>
|
||||
Date: Thu, 24 Nov 2022 15:11:53 +0800
|
||||
Subject: [PATCH] Add sw64 architecture
|
||||
|
||||
Add sw64 architecture in file crypto/crypt_blowfish.c according to alpha architecture to support sw64 architecture.
|
||||
|
||||
Signed-off-by: wzx <wuzx1226@qq.com>
|
||||
---
|
||||
crypto/crypt_blowfish.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/crypto/crypt_blowfish.c b/crypto/crypt_blowfish.c
|
||||
index 3d306cf..c22b06b 100644
|
||||
--- a/crypto/crypt_blowfish.c
|
||||
+++ b/crypto/crypt_blowfish.c
|
||||
@@ -56,7 +56,7 @@
|
||||
#ifdef __i386__
|
||||
#define BF_ASM 0
|
||||
#define BF_SCALE 1
|
||||
-#elif defined(__x86_64__) || defined(__alpha__) || defined(__hppa__)
|
||||
+#elif defined(__x86_64__) || defined(__alpha__) || defined(__hppa__) || defined(__sw_64__)
|
||||
#define BF_ASM 0
|
||||
#define BF_SCALE 1
|
||||
#else
|
||||
--
|
||||
2.33.0
|
||||
|
||||
@ -1,20 +1,16 @@
|
||||
%define apuver 1
|
||||
|
||||
Name: apr-util
|
||||
Version: 1.6.1
|
||||
Release: 11
|
||||
Version: 1.6.3
|
||||
Release: 2
|
||||
Summary: apr-util provides a number of helpful abstractions on top of APR.
|
||||
License: ASL 2.0
|
||||
URL: http://apr.apache.org
|
||||
Source0: http://www.apache.org/dist/apr/%{name}-%{version}.tar.bz2
|
||||
|
||||
Patch6000: Updated-patch-to-compile-apr-util-against-mariadb-10.patch
|
||||
Patch6001: Merge-r1822315-from-trunk.patch
|
||||
Patch6002: Fix-error-handling-in-gdbm.patch
|
||||
Patch6003: Merge-r1834022-r1834023-r1834024-from-trunk.patch
|
||||
Patch6004: Remove-dereference-of-null-pointer.patch
|
||||
Patch6000: apr-util-Add-sw64-architecture.patch
|
||||
|
||||
BuildRequires: gcc autoconf apr-devel >= 1.6.0 libdb-devel expat-devel libuuid-devel
|
||||
BuildRequires: gcc autoconf apr-devel >= 1.6.0 gdbm-devel expat-devel libuuid-devel
|
||||
BuildRequires: mariadb-connector-c-devel sqlite-devel >= 3.1.0 openldap-devel openssl-devel
|
||||
|
||||
Requires: apr-util%{?_isa} = %{version}-%{release}
|
||||
@ -40,7 +36,7 @@ work around or take advantage of platform-specific deficiencies or features.
|
||||
%package devel
|
||||
Summary: The development kit of apr-util.
|
||||
Requires: expat-devel%{?_isa} apr-util%{?_isa} = %{version}-%{release}
|
||||
Requires: libdb-devel%{?_isa} openldap-devel%{?_isa} apr-devel%{?_isa} pkgconfig
|
||||
Requires: gdbm-devel%{?_isa} openldap-devel%{?_isa} apr-devel%{?_isa} pkgconfig
|
||||
|
||||
%description devel
|
||||
The development kit of apr-util.
|
||||
@ -68,8 +64,8 @@ The ODBC DBD driver of apr-util.
|
||||
autoheader && autoconf
|
||||
export ac_cv_ldap_set_rebind_proc_style=three
|
||||
%configure --with-apr=%{_prefix} --includedir=%{_includedir}/apr-%{apuver} \
|
||||
--with-ldap=ldap_r --without-gdbm --with-sqlite3 --with-pgsql --with-mysql --with-odbc \
|
||||
--with-dbm=db5 --with-berkeley-db --without-sqlite2 --with-crypto --with-openssl
|
||||
--with-ldap=ldap_r --with-gdbm --with-sqlite3 --with-pgsql --with-mysql --with-odbc \
|
||||
--with-dbm=gdbm --without-berkeley-db --without-sqlite2 --with-crypto --with-openssl
|
||||
%make_build
|
||||
|
||||
%install
|
||||
@ -102,7 +98,7 @@ make test
|
||||
%license LICENSE
|
||||
%{_libdir}/libaprutil-%{apuver}.so.*
|
||||
%dir %{_libdir}/%{name}-%{apuver}
|
||||
%{_libdir}/%{name}-%{apuver}/apr_dbm_db*
|
||||
%{_libdir}/%{name}-%{apuver}/apr_dbm_gdbm*
|
||||
%{_libdir}/%{name}-%{apuver}/apr_dbd_mysql*
|
||||
%{_libdir}/%{name}-%{apuver}/apr_dbd_sqlite*
|
||||
%{_libdir}/%{name}-%{apuver}/apr_ldap*
|
||||
@ -123,6 +119,22 @@ make test
|
||||
%{_libdir}/%{name}-%{apuver}/apr_dbd_odbc*
|
||||
|
||||
%changelog
|
||||
* Tue Aug 13 2024 zhangruifang <zhangruifang@h-partners.com> - 1.6.3-2
|
||||
- add sw64 patch
|
||||
|
||||
* Sat Feb 3 2024 caixiaomeng <caixiaomeng2@huawei.com> - 1.6.3-1
|
||||
- update to 1.6.3
|
||||
|
||||
* Tue Feb 14 2023 fuanan <fuanan3@h-partners.com> - 1.6.1-14
|
||||
- Fix CVE-2022-25147
|
||||
|
||||
* Thu Jul 28 2022 wuzx<wuzx1226@qq.com> - 1.6.1-13
|
||||
- add sw64 patch
|
||||
|
||||
* Sat Jun 19 2021 panxiaohe <panxiaohe@huawei.com> - 1.6.1-12
|
||||
- BuildRequires: replace libdb with gdbm
|
||||
- Add requires gdbm-devel
|
||||
|
||||
* Mon Jan 13 2020 openEuler Buildteam <buildteam@openeuler.org> - 1.6.1-11
|
||||
- Delete useless files.
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user