Files
meta-openembedded/meta-networking/recipes-support
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
..
2025-07-22 16:39:48 -07:00
2025-03-24 07:29:13 -07:00
2024-11-23 09:00:14 -08:00
2025-09-04 10:28:22 -07:00
2023-02-16 19:33:29 -08:00
2025-03-21 11:07:33 -07:00
2025-06-26 07:24:01 -07:00
2020-11-09 20:49:52 -08:00
2023-10-17 21:42:56 -07:00
2025-08-20 07:35:08 -07:00
2025-07-15 23:54:15 -07:00
2024-05-23 08:44:42 -07:00
2025-07-21 22:43:59 -07:00
2025-04-19 14:36:07 -07:00
2025-06-26 07:26:21 -07:00
2025-04-12 07:09:49 -07:00
2024-04-09 13:56:26 -07:00
2025-07-18 21:02:45 -07:00
2025-04-19 14:36:02 -07:00
2025-06-09 21:24:16 -07:00
2024-11-21 21:42:35 -08:00
2023-12-29 09:04:16 -08:00