mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 0/2] json-c: Revise configure options and version bump
@ 2026-06-29 11:34 Alexander Dahl via ptxdist
  2026-06-29 11:34 ` [ptxdist] [PATCH 1/2] json-c: Revise and pin down configuration options Alexander Dahl via ptxdist
  2026-06-29 11:34 ` [ptxdist] [PATCH 2/2] json-c: version bump 0.18 -> 0.19 Alexander Dahl via ptxdist
  0 siblings, 2 replies; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2026-06-29 11:34 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Hello,

some unset configure options piled up.
After tidy up bump to latest release.

Greets
Alex

Alexander Dahl (2):
  json-c: Revise and pin down configuration options
  json-c: version bump 0.18 -> 0.19

 rules/host-json-c.make | 11 +++++++++--
 rules/json-c.make      | 13 +++++++++----
 2 files changed, 18 insertions(+), 6 deletions(-)


base-commit: 61fa01ab7bdcaee364baea4297ddfbc5ea210fc9
-- 
2.47.3




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ptxdist] [PATCH 1/2] json-c: Revise and pin down configuration options
  2026-06-29 11:34 [ptxdist] [PATCH 0/2] json-c: Revise configure options and version bump Alexander Dahl via ptxdist
@ 2026-06-29 11:34 ` Alexander Dahl via ptxdist
  2026-07-10  6:21   ` [ptxdist] [APPLIED] " Michael Olbrich
  2026-06-29 11:34 ` [ptxdist] [PATCH 2/2] json-c: version bump 0.18 -> 0.19 Alexander Dahl via ptxdist
  1 sibling, 1 reply; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2026-06-29 11:34 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

removed with 0.15:
- BUILD_DOCUMENTATION

added with 0.15:
- DISABLE_THREAD_LOCAL_STORAGE
- OVERRIDE_GET_RANDOM_SEED

added with 0.16:
- DISABLE_JSON_POINTER

added with 0.17:
- BUILD_APPS
- DISABLE_JSON_PATCH
- NEWLOCALE_NEEDS_FREELOCALE

After changing json-c.make sync the changes to host-json-c.make …

Fixes: b6ac44c56bef ("json-c: version bump 0.14 -> 0.15")
Fixes: ecd364618410 ("json-c: version bump 0.15 -> 0.16")
Fixes: ee8afdbc3ea7 ("json-c: Version bump. 0.16 -> 0.17")
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/host-json-c.make | 11 +++++++++--
 rules/json-c.make      |  9 +++++++--
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/rules/host-json-c.make b/rules/host-json-c.make
index 8e607f783..dc45e28ba 100644
--- a/rules/host-json-c.make
+++ b/rules/host-json-c.make
@@ -18,12 +18,19 @@ HOST_PACKAGES-$(PTXCONF_HOST_JSON_C) += host-json-c
 HOST_JSON_C_CONF_TOOL	:= cmake
 HOST_JSON_C_CONF_OPT	:= \
 	$(HOST_CMAKE_OPT) \
-	-DBUILD_DOCUMENTATION:BOOL=OFF \
+	-DBUILD_APPS:BOOL=OFF \
 	-DBUILD_SHARED_LIBS:BOOL=ON \
+	-DBUILD_STATIC_LIBS:BOOL=OFF \
 	-DBUILD_TESTING:BOOL=OFF \
 	-DDISABLE_BSYMBOLIC:BOOL=ON \
+	-DDISABLE_EXTRA_LIBS:BOOL=ON \
+	-DDISABLE_JSON_PATCH=OFF \
+	-DDISABLE_JSON_POINTER=OFF \
+	-DDISABLE_THREAD_LOCAL_STORAGE=OFF \
 	-DDISABLE_WERROR:BOOL=ON \
 	-DENABLE_RDRAND:BOOL=OFF \
-	-DENABLE_THREADING:BOOL=OFF
+	-DENABLE_THREADING:BOOL=OFF \
+	-DNEWLOCALE_NEEDS_FREELOCALE=OFF \
+	-DOVERRIDE_GET_RANDOM_SEED=OFF
 
 # vim: syntax=make
diff --git a/rules/json-c.make b/rules/json-c.make
index f5850724a..024375c61 100644
--- a/rules/json-c.make
+++ b/rules/json-c.make
@@ -31,15 +31,20 @@ JSON_C_LICENSE_FILES	:= file://COPYING;md5=de54b60fbbc35123ba193fea8ee216f2
 JSON_C_CONF_TOOL	:= cmake
 JSON_C_CONF_OPT		:= \
 	$(CROSS_CMAKE_USR) \
-	-DBUILD_DOCUMENTATION:BOOL=OFF \
+	-DBUILD_APPS:BOOL=OFF \
 	-DBUILD_SHARED_LIBS:BOOL=ON \
 	-DBUILD_STATIC_LIBS:BOOL=OFF \
 	-DBUILD_TESTING:BOOL=OFF \
 	-DDISABLE_BSYMBOLIC:BOOL=ON \
 	-DDISABLE_EXTRA_LIBS:BOOL=ON \
+	-DDISABLE_JSON_PATCH=OFF \
+	-DDISABLE_JSON_POINTER=OFF \
+	-DDISABLE_THREAD_LOCAL_STORAGE=OFF \
 	-DDISABLE_WERROR:BOOL=ON \
 	-DENABLE_RDRAND:BOOL=OFF \
-	-DENABLE_THREADING:BOOL=OFF
+	-DENABLE_THREADING:BOOL=OFF \
+	-DNEWLOCALE_NEEDS_FREELOCALE=OFF \
+	-DOVERRIDE_GET_RANDOM_SEED=OFF
 
 # ----------------------------------------------------------------------------
 # Install
-- 
2.47.3




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ptxdist] [PATCH 2/2] json-c: version bump 0.18 -> 0.19
  2026-06-29 11:34 [ptxdist] [PATCH 0/2] json-c: Revise configure options and version bump Alexander Dahl via ptxdist
  2026-06-29 11:34 ` [ptxdist] [PATCH 1/2] json-c: Revise and pin down configuration options Alexander Dahl via ptxdist
@ 2026-06-29 11:34 ` Alexander Dahl via ptxdist
  2026-07-10  6:21   ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 1 reply; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2026-06-29 11:34 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Some new features, some bug fixes, including:

* Issue #927: CVE-2026-9146 - update json_object_iterator documentation
* Issue #929: CVE-2026-11322 - fix information disclosure bug in apps/json_parse (not installed by default)

Link: https://github.com/json-c/json-c/releases/tag/json-c-0.19-20260627
Link: https://github.com/json-c/json-c/blob/json-c-0.19/ChangeLog
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/json-c.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/json-c.make b/rules/json-c.make
index 024375c61..461188ce1 100644
--- a/rules/json-c.make
+++ b/rules/json-c.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_JSON_C) += json-c
 #
 # Paths and names
 #
-JSON_C_VERSION		:= 0.18
-JSON_C_SHA256		:= 876ab046479166b869afc6896d288183bbc0e5843f141200c677b3e8dfb11724
+JSON_C_VERSION		:= 0.19
+JSON_C_SHA256		:= 37ad0249902e301bd9052bf712e511fcc6acff4ecaad4b5900aad9ce564e26de
 JSON_C			:= json-c-$(JSON_C_VERSION)
 JSON_C_SUFFIX		:= tar.gz
 JSON_C_URL		:= https://s3.amazonaws.com/json-c_releases/releases/$(JSON_C).$(JSON_C_SUFFIX)
-- 
2.47.3




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ptxdist] [APPLIED] json-c: Revise and pin down configuration options
  2026-06-29 11:34 ` [ptxdist] [PATCH 1/2] json-c: Revise and pin down configuration options Alexander Dahl via ptxdist
@ 2026-07-10  6:21   ` Michael Olbrich
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2026-07-10  6:21 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as 69555c70215c21fe180c4a8ad371d77f8c85c8ed.

Michael

[sent from post-receive hook]

On Fri, 10 Jul 2026 08:21:09 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> removed with 0.15:
> - BUILD_DOCUMENTATION
> 
> added with 0.15:
> - DISABLE_THREAD_LOCAL_STORAGE
> - OVERRIDE_GET_RANDOM_SEED
> 
> added with 0.16:
> - DISABLE_JSON_POINTER
> 
> added with 0.17:
> - BUILD_APPS
> - DISABLE_JSON_PATCH
> - NEWLOCALE_NEEDS_FREELOCALE
> 
> After changing json-c.make sync the changes to host-json-c.make …
> 
> Fixes: b6ac44c56bef ("json-c: version bump 0.14 -> 0.15")
> Fixes: ecd364618410 ("json-c: version bump 0.15 -> 0.16")
> Fixes: ee8afdbc3ea7 ("json-c: Version bump. 0.16 -> 0.17")
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20260629113457.1664202-2-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-json-c.make b/rules/host-json-c.make
> index 8e607f78346d..dc45e28ba76f 100644
> --- a/rules/host-json-c.make
> +++ b/rules/host-json-c.make
> @@ -18,12 +18,19 @@ HOST_PACKAGES-$(PTXCONF_HOST_JSON_C) += host-json-c
>  HOST_JSON_C_CONF_TOOL	:= cmake
>  HOST_JSON_C_CONF_OPT	:= \
>  	$(HOST_CMAKE_OPT) \
> -	-DBUILD_DOCUMENTATION:BOOL=OFF \
> +	-DBUILD_APPS:BOOL=OFF \
>  	-DBUILD_SHARED_LIBS:BOOL=ON \
> +	-DBUILD_STATIC_LIBS:BOOL=OFF \
>  	-DBUILD_TESTING:BOOL=OFF \
>  	-DDISABLE_BSYMBOLIC:BOOL=ON \
> +	-DDISABLE_EXTRA_LIBS:BOOL=ON \
> +	-DDISABLE_JSON_PATCH=OFF \
> +	-DDISABLE_JSON_POINTER=OFF \
> +	-DDISABLE_THREAD_LOCAL_STORAGE=OFF \
>  	-DDISABLE_WERROR:BOOL=ON \
>  	-DENABLE_RDRAND:BOOL=OFF \
> -	-DENABLE_THREADING:BOOL=OFF
> +	-DENABLE_THREADING:BOOL=OFF \
> +	-DNEWLOCALE_NEEDS_FREELOCALE=OFF \
> +	-DOVERRIDE_GET_RANDOM_SEED=OFF
>  
>  # vim: syntax=make
> diff --git a/rules/json-c.make b/rules/json-c.make
> index f5850724a2f7..024375c61c54 100644
> --- a/rules/json-c.make
> +++ b/rules/json-c.make
> @@ -31,15 +31,20 @@ JSON_C_LICENSE_FILES	:= file://COPYING;md5=de54b60fbbc35123ba193fea8ee216f2
>  JSON_C_CONF_TOOL	:= cmake
>  JSON_C_CONF_OPT		:= \
>  	$(CROSS_CMAKE_USR) \
> -	-DBUILD_DOCUMENTATION:BOOL=OFF \
> +	-DBUILD_APPS:BOOL=OFF \
>  	-DBUILD_SHARED_LIBS:BOOL=ON \
>  	-DBUILD_STATIC_LIBS:BOOL=OFF \
>  	-DBUILD_TESTING:BOOL=OFF \
>  	-DDISABLE_BSYMBOLIC:BOOL=ON \
>  	-DDISABLE_EXTRA_LIBS:BOOL=ON \
> +	-DDISABLE_JSON_PATCH=OFF \
> +	-DDISABLE_JSON_POINTER=OFF \
> +	-DDISABLE_THREAD_LOCAL_STORAGE=OFF \
>  	-DDISABLE_WERROR:BOOL=ON \
>  	-DENABLE_RDRAND:BOOL=OFF \
> -	-DENABLE_THREADING:BOOL=OFF
> +	-DENABLE_THREADING:BOOL=OFF \
> +	-DNEWLOCALE_NEEDS_FREELOCALE=OFF \
> +	-DOVERRIDE_GET_RANDOM_SEED=OFF
>  
>  # ----------------------------------------------------------------------------
>  # Install



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ptxdist] [APPLIED] json-c: version bump 0.18 -> 0.19
  2026-06-29 11:34 ` [ptxdist] [PATCH 2/2] json-c: version bump 0.18 -> 0.19 Alexander Dahl via ptxdist
@ 2026-07-10  6:21   ` Michael Olbrich
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2026-07-10  6:21 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as 223bea655670b2d81399d8dbc884e43bbb820ca0.

Michael

[sent from post-receive hook]

On Fri, 10 Jul 2026 08:21:09 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> Some new features, some bug fixes, including:
> 
> * Issue #927: CVE-2026-9146 - update json_object_iterator documentation
> * Issue #929: CVE-2026-11322 - fix information disclosure bug in apps/json_parse (not installed by default)
> 
> Link: https://github.com/json-c/json-c/releases/tag/json-c-0.19-20260627
> Link: https://github.com/json-c/json-c/blob/json-c-0.19/ChangeLog
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20260629113457.1664202-3-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/json-c.make b/rules/json-c.make
> index 024375c61c54..461188ce16e4 100644
> --- a/rules/json-c.make
> +++ b/rules/json-c.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_JSON_C) += json-c
>  #
>  # Paths and names
>  #
> -JSON_C_VERSION		:= 0.18
> -JSON_C_SHA256		:= 876ab046479166b869afc6896d288183bbc0e5843f141200c677b3e8dfb11724
> +JSON_C_VERSION		:= 0.19
> +JSON_C_SHA256		:= 37ad0249902e301bd9052bf712e511fcc6acff4ecaad4b5900aad9ce564e26de
>  JSON_C			:= json-c-$(JSON_C_VERSION)
>  JSON_C_SUFFIX		:= tar.gz
>  JSON_C_URL		:= https://s3.amazonaws.com/json-c_releases/releases/$(JSON_C).$(JSON_C_SUFFIX)



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-07-10  6:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-29 11:34 [ptxdist] [PATCH 0/2] json-c: Revise configure options and version bump Alexander Dahl via ptxdist
2026-06-29 11:34 ` [ptxdist] [PATCH 1/2] json-c: Revise and pin down configuration options Alexander Dahl via ptxdist
2026-07-10  6:21   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-06-29 11:34 ` [ptxdist] [PATCH 2/2] json-c: version bump 0.18 -> 0.19 Alexander Dahl via ptxdist
2026-07-10  6:21   ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox