Go to file
Gyorgy Sarvari 909985d1b9
pgpool2: fix compiling for 32-bit arches
When compiling for 32-bit targets, two issues came to surface:

1. gcc was complaining that math.h is not included in snprintf, and some
   calls were implicitly defined. Added a patch that includes the required
   headers in snprintf.c file:

| snprintf.c: In function 'fmtfloat':
| snprintf.c:1232:13: error: implicit declaration of function 'isnan' [-Wimplicit-function-declaration]
|  1232 |         if (isnan(value))
|       |             ^~~~~
| snprintf.c:50:1: note: include '<math.h>' or provide a declaration of 'isnan'

2. The code passes a time_t argument to a function that expects a long. This works for
   64-bit targets, because on those usually time_t is long.
   However on 32-bit systems time_t is usually long long, which makes compilation fail
   with the following error:

| wd_json_data.c:540:66: error: passing argument 3 of 'json_get_long_value_for_key' from incompatible pointer type [-Wincompatible-pointer-types]
|   540 |         if (json_get_long_value_for_key(root, "StartupTimeSecs", &wdNode->startup_time.tv_sec))
|       |                                                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~

   To account for this, add a new helper method in a patch that returns the required json value
   as a time_t value.

The patches are in pending state, because the mailing list of the project is sufferring from
technical problems - when the site loads, sign up attempts throw internal server errors.

It is planned to submit the patches and to update the status once their infrastructure is back.

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-09-11 17:31:42 -07:00
contrib contrib: oe-stylize: Use Python3 explicitly 2023-06-04 22:29:46 -07:00
meta-filesystems zfs: Upgrade to 2.2.8 release 2025-08-26 11:27:12 -07:00
meta-gnome metacity: upgrade 3.52.0 -> 3.56.0 2025-09-11 17:31:42 -07:00
meta-initramfs klibc: Do not let clang generate wcslen builtin 2025-09-01 15:52:05 -07:00
meta-multimedia tinyalsa: Add meson build option for plugin support 2025-09-10 23:50:39 -07:00
meta-networking pgpool2: fix compiling for 32-bit arches 2025-09-11 17:31:42 -07:00
meta-oe include-what-you-use: Upgrade to 0.25 (clang_21) 2025-09-10 23:50:39 -07:00
meta-perl libalgorithm-diff-perl: upgrade 1.1903 -> 1.201 2025-09-09 22:39:24 -07:00
meta-python python3-txws: Switch to pypi for fetching 2025-09-07 23:34:42 -07:00
meta-webserver swagger-ui: upgrade 5.27.1 -> 5.28.0 2025-09-04 10:28:30 -07:00
meta-xfce xfce4-screenshooter: Upgrade to 1.11.2 2025-07-16 08:52:06 -07:00
.b4-config Add toplevel b4 config file 2025-04-10 08:31:06 -07:00
.gitignore
COPYING.MIT
README.md layers: Move READMEs to markdown format 2023-06-17 08:30:01 -07:00

Collection of layers for the OE-core universe

Main layer maintainer: Khem Raj raj.khem@gmail.com

This repository is a collection of layers to suppliment OE-Core with additional packages, Each layer have designated maintainer Please see the respective READMEs in the layer subdirectories