aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/squidguard/squidguard-1.4-debian-bdb-51.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
commit3ce3c4fd596debefbad77328a9b62a39eccf753c (patch)
tree8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/squidguard/squidguard-1.4-debian-bdb-51.patch
parent62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff)
downloadaports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2
aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to periodically purge aports in unmaintained that haven't been touched in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/squidguard/squidguard-1.4-debian-bdb-51.patch')
-rw-r--r--unmaintained/squidguard/squidguard-1.4-debian-bdb-51.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/unmaintained/squidguard/squidguard-1.4-debian-bdb-51.patch b/unmaintained/squidguard/squidguard-1.4-debian-bdb-51.patch
deleted file mode 100644
index fc12c14b65..0000000000
--- a/unmaintained/squidguard/squidguard-1.4-debian-bdb-51.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Package: squidguard
-Subject: make it useable with Berkeley DB version 5.x
-Author: Joachim Wiedorn <ad_debian at joonet.de>
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=621376
-Forwarded: yes
-Last-Update: 2011-05-31
-
-Since the end of 2010 the is a new major version of Berkeley DB.
-For use with squidguard it need this patch.
-
----
-
-diff -urN s07/src/sgDb.c s08/src/sgDb.c
---- s07/src/sgDb.c 2008-07-14 20:29:41.000000000 +0200
-+++ s08/src/sgDb.c 2011-05-31 20:06:26.328740739 +0200
-@@ -114,7 +114,7 @@
- }
- }
- #endif
--#if DB_VERSION_MAJOR == 4
-+#if DB_VERSION_MAJOR == 4 || DB_VERSION_MAJOR == 5
- if(globalUpdate || createdb || (dbfile != NULL && stat(dbfile,&st))){
- flag = DB_CREATE;
- if(createdb)