* [PATCH] squidGuard: Fix generating databases with libdb >= 5
@ 2020-05-22 11:49 Michael Tremer
2020-05-22 12:33 ` Matthias Fischer
0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2020-05-22 11:49 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1644 bytes --]
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
lfs/squidguard | 1 +
src/patches/squidGuard-1.4-db5.patch | 12 ++++++++++++
2 files changed, 13 insertions(+)
create mode 100644 src/patches/squidGuard-1.4-db5.patch
diff --git a/lfs/squidguard b/lfs/squidguard
index f627a27d8..38efab0ee 100644
--- a/lfs/squidguard
+++ b/lfs/squidguard
@@ -71,6 +71,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidguard-1.4-squid-helper-protocol.patch
+ cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidGuard-1.4-db5.patch
cd $(DIR_APP) && ./configure --prefix=/usr --datadir=/usr/share \
--sysconfdir=/etc --localstatedir=/var --infodir=/usr/info --mandir=/usr/man \
--with-sg-config=/var/ipfire/urlfilter/squidGuard.conf \
diff --git a/src/patches/squidGuard-1.4-db5.patch b/src/patches/squidGuard-1.4-db5.patch
new file mode 100644
index 000000000..733fbad2e
--- /dev/null
+++ b/src/patches/squidGuard-1.4-db5.patch
@@ -0,0 +1,12 @@
+diff -ruN squidGuard-1.4-vanilla/src/sgDb.c squidGuard-1.4/src/sgDb.c
+--- squidGuard-1.4-vanilla/src/sgDb.c 2008-07-15 04:29:41.000000000 +1000
++++ squidGuard-1.4/src/sgDb.c 2013-01-21 12:47:41.049325756 +1100
+@@ -114,7 +114,7 @@
+ }
+ }
+ #endif
+-#if DB_VERSION_MAJOR == 4
++#if DB_VERSION_MAJOR >= 4
+ if(globalUpdate || createdb || (dbfile != NULL && stat(dbfile,&st))){
+ flag = DB_CREATE;
+ if(createdb)
\ No newline at end of file
--
2.20.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] squidGuard: Fix generating databases with libdb >= 5
2020-05-22 11:49 [PATCH] squidGuard: Fix generating databases with libdb >= 5 Michael Tremer
@ 2020-05-22 12:33 ` Matthias Fischer
2020-05-22 12:38 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Matthias Fischer @ 2020-05-22 12:33 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1971 bytes --]
Hi,
just saw this patch (and couldn't help but smile a bit):
=> https://patchwork.ipfire.org/patch/947/
I don't know why, but I can't find this one on GIT anymore.
But:
Interested?
Best,
Matthias
On 22.05.2020 13:49, Michael Tremer wrote:
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> lfs/squidguard | 1 +
> src/patches/squidGuard-1.4-db5.patch | 12 ++++++++++++
> 2 files changed, 13 insertions(+)
> create mode 100644 src/patches/squidGuard-1.4-db5.patch
>
> diff --git a/lfs/squidguard b/lfs/squidguard
> index f627a27d8..38efab0ee 100644
> --- a/lfs/squidguard
> +++ b/lfs/squidguard
> @@ -71,6 +71,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
> @$(PREBUILD)
> @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
> cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidguard-1.4-squid-helper-protocol.patch
> + cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidGuard-1.4-db5.patch
> cd $(DIR_APP) && ./configure --prefix=/usr --datadir=/usr/share \
> --sysconfdir=/etc --localstatedir=/var --infodir=/usr/info --mandir=/usr/man \
> --with-sg-config=/var/ipfire/urlfilter/squidGuard.conf \
> diff --git a/src/patches/squidGuard-1.4-db5.patch b/src/patches/squidGuard-1.4-db5.patch
> new file mode 100644
> index 000000000..733fbad2e
> --- /dev/null
> +++ b/src/patches/squidGuard-1.4-db5.patch
> @@ -0,0 +1,12 @@
> +diff -ruN squidGuard-1.4-vanilla/src/sgDb.c squidGuard-1.4/src/sgDb.c
> +--- squidGuard-1.4-vanilla/src/sgDb.c 2008-07-15 04:29:41.000000000 +1000
> ++++ squidGuard-1.4/src/sgDb.c 2013-01-21 12:47:41.049325756 +1100
> +@@ -114,7 +114,7 @@
> + }
> + }
> + #endif
> +-#if DB_VERSION_MAJOR == 4
> ++#if DB_VERSION_MAJOR >= 4
> + if(globalUpdate || createdb || (dbfile != NULL && stat(dbfile,&st))){
> + flag = DB_CREATE;
> + if(createdb)
> \ No newline at end of file
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] squidGuard: Fix generating databases with libdb >= 5
2020-05-22 12:33 ` Matthias Fischer
@ 2020-05-22 12:38 ` Michael Tremer
2020-05-23 10:06 ` Matthias Fischer
0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2020-05-22 12:38 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2466 bytes --]
Hi,
Oh yes, I totally forgot.
Patchwork only seems to have half of the patch for some reason.
But it is here: https://lists.ipfire.org/pipermail/development/2016-December/002829.html
@Arne: I would recommend to merge this one then for the next core update. There seem to be some security-related fixes in it.
Best,
-Michael
> On 22 May 2020, at 13:33, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote:
>
> Hi,
>
> just saw this patch (and couldn't help but smile a bit):
>
> => https://patchwork.ipfire.org/patch/947/
>
> I don't know why, but I can't find this one on GIT anymore.
>
> But:
> Interested?
>
> Best,
> Matthias
>
> On 22.05.2020 13:49, Michael Tremer wrote:
>> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
>> ---
>> lfs/squidguard | 1 +
>> src/patches/squidGuard-1.4-db5.patch | 12 ++++++++++++
>> 2 files changed, 13 insertions(+)
>> create mode 100644 src/patches/squidGuard-1.4-db5.patch
>>
>> diff --git a/lfs/squidguard b/lfs/squidguard
>> index f627a27d8..38efab0ee 100644
>> --- a/lfs/squidguard
>> +++ b/lfs/squidguard
>> @@ -71,6 +71,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
>> @$(PREBUILD)
>> @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
>> cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidguard-1.4-squid-helper-protocol.patch
>> + cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidGuard-1.4-db5.patch
>> cd $(DIR_APP) && ./configure --prefix=/usr --datadir=/usr/share \
>> --sysconfdir=/etc --localstatedir=/var --infodir=/usr/info --mandir=/usr/man \
>> --with-sg-config=/var/ipfire/urlfilter/squidGuard.conf \
>> diff --git a/src/patches/squidGuard-1.4-db5.patch b/src/patches/squidGuard-1.4-db5.patch
>> new file mode 100644
>> index 000000000..733fbad2e
>> --- /dev/null
>> +++ b/src/patches/squidGuard-1.4-db5.patch
>> @@ -0,0 +1,12 @@
>> +diff -ruN squidGuard-1.4-vanilla/src/sgDb.c squidGuard-1.4/src/sgDb.c
>> +--- squidGuard-1.4-vanilla/src/sgDb.c 2008-07-15 04:29:41.000000000 +1000
>> ++++ squidGuard-1.4/src/sgDb.c 2013-01-21 12:47:41.049325756 +1100
>> +@@ -114,7 +114,7 @@
>> + }
>> + }
>> + #endif
>> +-#if DB_VERSION_MAJOR == 4
>> ++#if DB_VERSION_MAJOR >= 4
>> + if(globalUpdate || createdb || (dbfile != NULL && stat(dbfile,&st))){
>> + flag = DB_CREATE;
>> + if(createdb)
>> \ No newline at end of file
>>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] squidGuard: Fix generating databases with libdb >= 5
2020-05-22 12:38 ` Michael Tremer
@ 2020-05-23 10:06 ` Matthias Fischer
0 siblings, 0 replies; 4+ messages in thread
From: Matthias Fischer @ 2020-05-23 10:06 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2781 bytes --]
Hi,
JFYI: regarding this update I saw that at that time I forgot to delete a
no longer needed patch while sending it:
src/patches/squidGuard-1.4-db5.patch
Best,
Matthias
On 22.05.2020 14:38, Michael Tremer wrote:
> Hi,
>
> Oh yes, I totally forgot.
>
> Patchwork only seems to have half of the patch for some reason.
>
> But it is here: https://lists.ipfire.org/pipermail/development/2016-December/002829.html
>
> @Arne: I would recommend to merge this one then for the next core update. There seem to be some security-related fixes in it.
>
> Best,
> -Michael
>
>> On 22 May 2020, at 13:33, Matthias Fischer <matthias.fischer(a)ipfire.org> wrote:
>>
>> Hi,
>>
>> just saw this patch (and couldn't help but smile a bit):
>>
>> => https://patchwork.ipfire.org/patch/947/
>>
>> I don't know why, but I can't find this one on GIT anymore.
>>
>> But:
>> Interested?
>>
>> Best,
>> Matthias
>>
>> On 22.05.2020 13:49, Michael Tremer wrote:
>>> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
>>> ---
>>> lfs/squidguard | 1 +
>>> src/patches/squidGuard-1.4-db5.patch | 12 ++++++++++++
>>> 2 files changed, 13 insertions(+)
>>> create mode 100644 src/patches/squidGuard-1.4-db5.patch
>>>
>>> diff --git a/lfs/squidguard b/lfs/squidguard
>>> index f627a27d8..38efab0ee 100644
>>> --- a/lfs/squidguard
>>> +++ b/lfs/squidguard
>>> @@ -71,6 +71,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
>>> @$(PREBUILD)
>>> @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
>>> cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidguard-1.4-squid-helper-protocol.patch
>>> + cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/squidGuard-1.4-db5.patch
>>> cd $(DIR_APP) && ./configure --prefix=/usr --datadir=/usr/share \
>>> --sysconfdir=/etc --localstatedir=/var --infodir=/usr/info --mandir=/usr/man \
>>> --with-sg-config=/var/ipfire/urlfilter/squidGuard.conf \
>>> diff --git a/src/patches/squidGuard-1.4-db5.patch b/src/patches/squidGuard-1.4-db5.patch
>>> new file mode 100644
>>> index 000000000..733fbad2e
>>> --- /dev/null
>>> +++ b/src/patches/squidGuard-1.4-db5.patch
>>> @@ -0,0 +1,12 @@
>>> +diff -ruN squidGuard-1.4-vanilla/src/sgDb.c squidGuard-1.4/src/sgDb.c
>>> +--- squidGuard-1.4-vanilla/src/sgDb.c 2008-07-15 04:29:41.000000000 +1000
>>> ++++ squidGuard-1.4/src/sgDb.c 2013-01-21 12:47:41.049325756 +1100
>>> +@@ -114,7 +114,7 @@
>>> + }
>>> + }
>>> + #endif
>>> +-#if DB_VERSION_MAJOR == 4
>>> ++#if DB_VERSION_MAJOR >= 4
>>> + if(globalUpdate || createdb || (dbfile != NULL && stat(dbfile,&st))){
>>> + flag = DB_CREATE;
>>> + if(createdb)
>>> \ No newline at end of file
>>>
>>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-05-23 10:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-22 11:49 [PATCH] squidGuard: Fix generating databases with libdb >= 5 Michael Tremer
2020-05-22 12:33 ` Matthias Fischer
2020-05-22 12:38 ` Michael Tremer
2020-05-23 10:06 ` Matthias Fischer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox