* [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
@ 2024-01-17 21:07 Julien Olivain
2024-01-18 5:30 ` Maxim Kochetkov via buildroot
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Julien Olivain @ 2024-01-17 21:07 UTC (permalink / raw)
To: buildroot; +Cc: Maxim Kochetkov, Julien Olivain
Since commit 2a8065e "package/postgresql: bump version to 16.1", the
postgresql service fail to start at runtime with an error:
FATAL: could not load library "/usr/lib/postgresql/dict_snowball.so": /usr/lib/postgresql/dict_snowball.so: undefined symbol: CurrentMemoryContext
This is due to the Posgresql autotool configure script trying to
detect whether the toolchain linker needs --export-dynamic or not.
This test is done with a runtime execution of a test program, and
therefore cannot run in cross-compilation. In that case, the
configure script assumes it is not needed. See commit [1], included
in PostgreSQL v16.0.
This commit fixes the issue by forcing the value in _CONF_ENV. The
package has already a Kconfig dependency on !BR2_STATIC_LIBS, so the
value can be unconditionally set.
[1] https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=9db49fc5bfdc0126be03f4b8986013e59d93b91d
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
This patch was tested on branch master at commit b200632, and also
with patch from:
https://patchwork.ozlabs.org/project/buildroot/patch/20240111224003.243443-1-ju.o@free.fr/
with command:
support/testing/run-tests \
-d dl -o output_folder \
tests.package.test_postgresql
...
OK
---
package/postgresql/postgresql.mk | 1 +
1 file changed, 1 insertion(+)
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index ec5b61b932..644f93d88a 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -15,6 +15,7 @@ POSTGRESQL_INSTALL_STAGING = YES
POSTGRESQL_CONFIG_SCRIPTS = pg_config
POSTGRESQL_CONF_ENV = \
ac_cv_type_struct_sockaddr_in6=yes \
+ pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic=yes \
LIBS=$(TARGET_NLS_LIBS)
POSTGRESQL_CONF_OPTS = --disable-rpath
POSTGRESQL_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-01-17 21:07 [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime Julien Olivain
@ 2024-01-18 5:30 ` Maxim Kochetkov via buildroot
2024-01-18 18:08 ` Julien Olivain
2024-01-21 9:14 ` Yann E. MORIN
2 siblings, 0 replies; 10+ messages in thread
From: Maxim Kochetkov via buildroot @ 2024-01-18 5:30 UTC (permalink / raw)
To: Julien Olivain, buildroot
On 18.01.2024 00:07, Julien Olivain wrote:
> Since commit 2a8065e "package/postgresql: bump version to 16.1", the
> postgresql service fail to start at runtime with an error:
>
> FATAL: could not load library "/usr/lib/postgresql/dict_snowball.so": /usr/lib/postgresql/dict_snowball.so: undefined symbol: CurrentMemoryContext
>
> This is due to the Posgresql autotool configure script trying to
> detect whether the toolchain linker needs --export-dynamic or not.
> This test is done with a runtime execution of a test program, and
> therefore cannot run in cross-compilation. In that case, the
> configure script assumes it is not needed. See commit [1], included
> in PostgreSQL v16.0.
>
> This commit fixes the issue by forcing the value in _CONF_ENV. The
> package has already a Kconfig dependency on !BR2_STATIC_LIBS, so the
> value can be unconditionally set.
>
> [1] https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=9db49fc5bfdc0126be03f4b8986013e59d93b91d
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Reviewed-by: Maxim Kochetkov <fido_max@inbox.ru>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-01-17 21:07 [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime Julien Olivain
2024-01-18 5:30 ` Maxim Kochetkov via buildroot
@ 2024-01-18 18:08 ` Julien Olivain
2024-01-21 9:14 ` Yann E. MORIN
2 siblings, 0 replies; 10+ messages in thread
From: Julien Olivain @ 2024-01-18 18:08 UTC (permalink / raw)
To: buildroot; +Cc: Maxim Kochetkov
Hi,
On 17/01/2024 22:07, Julien Olivain wrote:
> Since commit 2a8065e "package/postgresql: bump version to 16.1", the
> postgresql service fail to start at runtime with an error:
>
> FATAL: could not load library
> "/usr/lib/postgresql/dict_snowball.so":
> /usr/lib/postgresql/dict_snowball.so: undefined symbol:
> CurrentMemoryContext
>
> This is due to the Posgresql autotool configure script trying to
> detect whether the toolchain linker needs --export-dynamic or not.
> This test is done with a runtime execution of a test program, and
> therefore cannot run in cross-compilation. In that case, the
> configure script assumes it is not needed. See commit [1], included
> in PostgreSQL v16.0.
>
> This commit fixes the issue by forcing the value in _CONF_ENV. The
> package has already a Kconfig dependency on !BR2_STATIC_LIBS, so the
> value can be unconditionally set.
>
> [1]
> https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=9db49fc5bfdc0126be03f4b8986013e59d93b91d
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
> This patch was tested on branch master at commit b200632, and also
> with patch from:
> https://patchwork.ozlabs.org/project/buildroot/patch/20240111224003.243443-1-ju.o@free.fr/
>
> with command:
>
> support/testing/run-tests \
> -d dl -o output_folder \
> tests.package.test_postgresql
> ...
> OK
For info, I tested this patch on branch master at
commit d622ea0 with commands:
utils/test-pkg -a -p postgresql
arm-aarch64 [ 1/45]: OK
bootlin-aarch64-glibc [ 2/45]: OK
bootlin-arcle-hs38-uclibc [ 3/45]: OK
bootlin-armv5-uclibc [ 4/45]: OK
bootlin-armv7-glibc [ 5/45]: OK
bootlin-armv7m-uclibc [ 6/45]: SKIPPED
bootlin-armv7-musl [ 7/45]: OK
bootlin-m68k-5208-uclibc [ 8/45]: SKIPPED
bootlin-m68k-68040-uclibc [ 9/45]: OK
bootlin-microblazeel-uclibc [10/45]: OK
bootlin-mipsel32r6-glibc [11/45]: OK
bootlin-mipsel-uclibc [12/45]: OK
bootlin-nios2-glibc [13/45]: OK
bootlin-openrisc-uclibc [14/45]: OK
bootlin-powerpc64le-power8-glibc [15/45]: OK
bootlin-powerpc-e500mc-uclibc [16/45]: OK
bootlin-riscv32-glibc [17/45]: OK
bootlin-riscv64-glibc [18/45]: OK
bootlin-riscv64-musl [19/45]: OK
bootlin-s390x-z13-glibc [20/45]: OK
bootlin-sh4-uclibc [21/45]: OK
bootlin-sparc64-glibc [22/45]: OK
bootlin-sparc-uclibc [23/45]: OK
bootlin-x86-64-glibc [24/45]: OK
bootlin-x86-64-musl [25/45]: OK
bootlin-x86-64-uclibc [26/45]: OK
bootlin-xtensa-uclibc [27/45]: OK
br-arm-basic [28/45]: SKIPPED
br-arm-full-nothread [29/45]: OK
br-arm-full-static [30/45]: SKIPPED
br-i386-pentium4-full [31/45]: OK
br-i386-pentium-mmx-musl [32/45]: OK
br-mips64-n64-full [33/45]: OK
br-mips64r6-el-hf-glibc [34/45]: OK
br-powerpc-603e-basic-cpp [35/45]: SKIPPED
br-powerpc64-power7-glibc [36/45]: OK
linaro-aarch64-be [37/45]: OK
linaro-aarch64 [38/45]: OK
linaro-arm [39/45]: OK
sourcery-arm-armv4t [40/45]: OK
sourcery-arm [41/45]: OK
sourcery-arm-thumb2 [42/45]: OK
sourcery-mips64 [43/45]: OK
sourcery-mips [44/45]: OK
sourcery-nios2 [45/45]: OK
45 builds, 5 skipped, 0 build failed, 0 legal-info failed, 0 show-info
failed
> ---
> package/postgresql/postgresql.mk | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/package/postgresql/postgresql.mk
> b/package/postgresql/postgresql.mk
> index ec5b61b932..644f93d88a 100644
> --- a/package/postgresql/postgresql.mk
> +++ b/package/postgresql/postgresql.mk
> @@ -15,6 +15,7 @@ POSTGRESQL_INSTALL_STAGING = YES
> POSTGRESQL_CONFIG_SCRIPTS = pg_config
> POSTGRESQL_CONF_ENV = \
> ac_cv_type_struct_sockaddr_in6=yes \
> + pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic=yes \
> LIBS=$(TARGET_NLS_LIBS)
> POSTGRESQL_CONF_OPTS = --disable-rpath
> POSTGRESQL_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
> --
> 2.43.0
Best regards,
Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
[not found] <20240117210756.265708-1-ju.o__23021.2395939574$1705525733$gmane$org@free.fr>
@ 2024-01-20 15:30 ` Bernd Kuhls
2024-01-21 9:17 ` Yann E. MORIN
0 siblings, 1 reply; 10+ messages in thread
From: Bernd Kuhls @ 2024-01-20 15:30 UTC (permalink / raw)
To: buildroot
Am Wed, 17 Jan 2024 22:07:56 +0100 schrieb Julien Olivain:
> Since commit 2a8065e "package/postgresql: bump version to 16.1", the
> postgresql service fail to start at runtime with an error:
>
> FATAL: could not load library
> "/usr/lib/postgresql/dict_snowball.so":
> /usr/lib/postgresql/dict_snowball.so: undefined symbol:
> CurrentMemoryContext
Tested-by: Bernd Kuhls <bernd@kuhls.net>
[run-time tested, the dict_snowball.so bug is now fixed]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-01-17 21:07 [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime Julien Olivain
2024-01-18 5:30 ` Maxim Kochetkov via buildroot
2024-01-18 18:08 ` Julien Olivain
@ 2024-01-21 9:14 ` Yann E. MORIN
2024-02-04 9:06 ` Peter Korsgaard
2 siblings, 1 reply; 10+ messages in thread
From: Yann E. MORIN @ 2024-01-21 9:14 UTC (permalink / raw)
To: Julien Olivain; +Cc: Maxim Kochetkov, buildroot
Julien, All,
On 2024-01-17 22:07 +0100, Julien Olivain spake thusly:
> Since commit 2a8065e "package/postgresql: bump version to 16.1", the
> postgresql service fail to start at runtime with an error:
>
> FATAL: could not load library "/usr/lib/postgresql/dict_snowball.so": /usr/lib/postgresql/dict_snowball.so: undefined symbol: CurrentMemoryContext
>
> This is due to the Posgresql autotool configure script trying to
> detect whether the toolchain linker needs --export-dynamic or not.
> This test is done with a runtime execution of a test program, and
> therefore cannot run in cross-compilation. In that case, the
> configure script assumes it is not needed. See commit [1], included
> in PostgreSQL v16.0.
>
> This commit fixes the issue by forcing the value in _CONF_ENV. The
> package has already a Kconfig dependency on !BR2_STATIC_LIBS, so the
> value can be unconditionally set.
>
> [1] https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=9db49fc5bfdc0126be03f4b8986013e59d93b91d
I've added references to the ML thread upstream, with their position
that cross-compiling is not really a supoprted thing.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> This patch was tested on branch master at commit b200632, and also
> with patch from:
> https://patchwork.ozlabs.org/project/buildroot/patch/20240111224003.243443-1-ju.o@free.fr/
>
> with command:
>
> support/testing/run-tests \
> -d dl -o output_folder \
> tests.package.test_postgresql
> ...
> OK
> ---
> package/postgresql/postgresql.mk | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
> index ec5b61b932..644f93d88a 100644
> --- a/package/postgresql/postgresql.mk
> +++ b/package/postgresql/postgresql.mk
> @@ -15,6 +15,7 @@ POSTGRESQL_INSTALL_STAGING = YES
> POSTGRESQL_CONFIG_SCRIPTS = pg_config
> POSTGRESQL_CONF_ENV = \
> ac_cv_type_struct_sockaddr_in6=yes \
> + pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic=yes \
> LIBS=$(TARGET_NLS_LIBS)
> POSTGRESQL_CONF_OPTS = --disable-rpath
> POSTGRESQL_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
> --
> 2.43.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-01-20 15:30 ` Bernd Kuhls
@ 2024-01-21 9:17 ` Yann E. MORIN
0 siblings, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2024-01-21 9:17 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: buildroot
Bernd, All,
On 2024-01-20 16:30 +0100, Bernd Kuhls spake thusly:
> Am Wed, 17 Jan 2024 22:07:56 +0100 schrieb Julien Olivain:
>
> > Since commit 2a8065e "package/postgresql: bump version to 16.1", the
> > postgresql service fail to start at runtime with an error:
> >
> > FATAL: could not load library
> > "/usr/lib/postgresql/dict_snowball.so":
> > /usr/lib/postgresql/dict_snowball.so: undefined symbol:
> > CurrentMemoryContext
>
> Tested-by: Bernd Kuhls <bernd@kuhls.net>
> [run-time tested, the dict_snowball.so bug is now fixed]
Thanks for the feedback. However, as this is was not threaded as a reply
to the original mail, patchwork was not able to associate your Tested-by
to the conrresponding patch, and thus it was not recorded (I only
noticed your mail when searching the mail from Julien to reply to it).
Sorry for that. Next time, be sure to reply to the mail. Thanks!
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-01-21 9:14 ` Yann E. MORIN
@ 2024-02-04 9:06 ` Peter Korsgaard
2024-02-04 15:40 ` Baruch Siach via buildroot
2024-02-04 20:51 ` Maxim Kochetkov via buildroot
0 siblings, 2 replies; 10+ messages in thread
From: Peter Korsgaard @ 2024-02-04 9:06 UTC (permalink / raw)
To: Yann E. MORIN; +Cc: Maxim Kochetkov, Julien Olivain, buildroot
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
> Julien, All,
> On 2024-01-17 22:07 +0100, Julien Olivain spake thusly:
>> Since commit 2a8065e "package/postgresql: bump version to 16.1", the
>> postgresql service fail to start at runtime with an error:
>>
>> FATAL: could not load library
>> "/usr/lib/postgresql/dict_snowball.so":
>> /usr/lib/postgresql/dict_snowball.so: undefined symbol:
>> CurrentMemoryContext
>>
>> This is due to the Posgresql autotool configure script trying to
>> detect whether the toolchain linker needs --export-dynamic or not.
>> This test is done with a runtime execution of a test program, and
>> therefore cannot run in cross-compilation. In that case, the
>> configure script assumes it is not needed. See commit [1], included
>> in PostgreSQL v16.0.
>>
>> This commit fixes the issue by forcing the value in _CONF_ENV. The
>> package has already a Kconfig dependency on !BR2_STATIC_LIBS, so the
>> value can be unconditionally set.
>>
>> [1]
>> https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=9db49fc5bfdc0126be03f4b8986013e59d93b91d
> I've added references to the ML thread upstream, with their position
> that cross-compiling is not really a supoprted thing.
>> Signed-off-by: Julien Olivain <ju.o@free.fr>
> Applied to master, thanks.
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-02-04 9:06 ` Peter Korsgaard
@ 2024-02-04 15:40 ` Baruch Siach via buildroot
2024-02-04 20:59 ` Peter Korsgaard
2024-02-04 20:51 ` Maxim Kochetkov via buildroot
1 sibling, 1 reply; 10+ messages in thread
From: Baruch Siach via buildroot @ 2024-02-04 15:40 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: Maxim Kochetkov, Julien Olivain, Yann E. MORIN, buildroot
Hi Peter,
On Sun, Feb 04 2024, Peter Korsgaard wrote:
>>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
>
> > Julien, All,
> > On 2024-01-17 22:07 +0100, Julien Olivain spake thusly:
> >> Since commit 2a8065e "package/postgresql: bump version to 16.1", the
> >> postgresql service fail to start at runtime with an error:
> >>
> >> FATAL: could not load library
> >> "/usr/lib/postgresql/dict_snowball.so":
> >> /usr/lib/postgresql/dict_snowball.so: undefined symbol:
> >> CurrentMemoryContext
> >>
> >> This is due to the Posgresql autotool configure script trying to
> >> detect whether the toolchain linker needs --export-dynamic or not.
> >> This test is done with a runtime execution of a test program, and
> >> therefore cannot run in cross-compilation. In that case, the
> >> configure script assumes it is not needed. See commit [1], included
> >> in PostgreSQL v16.0.
> >>
> >> This commit fixes the issue by forcing the value in _CONF_ENV. The
> >> package has already a Kconfig dependency on !BR2_STATIC_LIBS, so the
> >> value can be unconditionally set.
> >>
> >> [1]
> >> https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=9db49fc5bfdc0126be03f4b8986013e59d93b91d
>
> > I've added references to the ML thread upstream, with their position
> > that cross-compiling is not really a supoprted thing.
>
> >> Signed-off-by: Julien Olivain <ju.o@free.fr>
>
> > Applied to master, thanks.
>
> Committed to 2023.11.x, thanks.
Not in 2023.11.x as of commit 7d35d445a1ae ("package/micropython: fix
building after dropping GIT_DIR=. workaround").
baruch
--
~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-02-04 9:06 ` Peter Korsgaard
2024-02-04 15:40 ` Baruch Siach via buildroot
@ 2024-02-04 20:51 ` Maxim Kochetkov via buildroot
1 sibling, 0 replies; 10+ messages in thread
From: Maxim Kochetkov via buildroot @ 2024-02-04 20:51 UTC (permalink / raw)
To: Peter Korsgaard, Yann E. MORIN; +Cc: Julien Olivain, buildroot
On 04.02.2024 12:06, Peter Korsgaard wrote:
>>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
>
> > Julien, All,
> > On 2024-01-17 22:07 +0100, Julien Olivain spake thusly:
> >> Since commit 2a8065e "package/postgresql: bump version to 16.1", the
> >> postgresql service fail to start at runtime with an error:
> >>
> >> FATAL: could not load library
> >> "/usr/lib/postgresql/dict_snowball.so":
> >> /usr/lib/postgresql/dict_snowball.so: undefined symbol:
> >> CurrentMemoryContext
> >>
> >> This is due to the Posgresql autotool configure script trying to
> >> detect whether the toolchain linker needs --export-dynamic or not.
> >> This test is done with a runtime execution of a test program, and
> >> therefore cannot run in cross-compilation. In that case, the
> >> configure script assumes it is not needed. See commit [1], included
> >> in PostgreSQL v16.0.
> >>
> >> This commit fixes the issue by forcing the value in _CONF_ENV. The
> >> package has already a Kconfig dependency on !BR2_STATIC_LIBS, so the
> >> value can be unconditionally set.
> >>
> >> [1]
> >> https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=9db49fc5bfdc0126be03f4b8986013e59d93b91d
>
> > I've added references to the ML thread upstream, with their position
> > that cross-compiling is not really a supoprted thing.
>
> >> Signed-off-by: Julien Olivain <ju.o@free.fr>
>
> > Applied to master, thanks.
>
> Committed to 2023.11.x, thanks.
>
Not needed for 2023.11. Because it is still on 15.5 Posgresql version
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime
2024-02-04 15:40 ` Baruch Siach via buildroot
@ 2024-02-04 20:59 ` Peter Korsgaard
0 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2024-02-04 20:59 UTC (permalink / raw)
To: Baruch Siach; +Cc: Maxim Kochetkov, Julien Olivain, Yann E. MORIN, buildroot
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:
> Hi Peter,
> On Sun, Feb 04 2024, Peter Korsgaard wrote:
>> > Applied to master, thanks.
>>
>> Committed to 2023.11.x, thanks.
> Not in 2023.11.x as of commit 7d35d445a1ae ("package/micropython: fix
> building after dropping GIT_DIR=. workaround").
Ehh, I made a mistake - 2023.11.x doesn't have postgresql 16.x, so this
is not backported.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-02-04 20:59 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-17 21:07 [Buildroot] [PATCH 1/1] package/postgresql: fix service runtime Julien Olivain
2024-01-18 5:30 ` Maxim Kochetkov via buildroot
2024-01-18 18:08 ` Julien Olivain
2024-01-21 9:14 ` Yann E. MORIN
2024-02-04 9:06 ` Peter Korsgaard
2024-02-04 15:40 ` Baruch Siach via buildroot
2024-02-04 20:59 ` Peter Korsgaard
2024-02-04 20:51 ` Maxim Kochetkov via buildroot
[not found] <20240117210756.265708-1-ju.o__23021.2395939574$1705525733$gmane$org@free.fr>
2024-01-20 15:30 ` Bernd Kuhls
2024-01-21 9:17 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox