Thomas Petazzoni
b47a466bbd
package/libxcrypt: make available only with glibc
...
libxcrypt has been added as a replacement for the libcrypt
implementation that was part of glibc, but dropped from glibc starting
from version 2.39.
However, libxcrypt was made available for all C libraries, and this is
unfortunately causing some problems as it can clash with the libcrypt
implementation provided by the C library.
In particular, linux-pam has been consistently failing with uclibc, in
BR2_PER_PACKAGE_DIRECTORIES=y builds, with the following build
failure:
opasswd.c: In function 'compare_password':
opasswd.c:133:27: error: invalid application of 'sizeof' to incomplete type 'struct crypt_data'
What happens is relatively tricky, but let's try to break it down:
- uclibc-ng install a stub libcrypt.a (no shared variant, as for
shared libraries, everything is in libc.so), and crypt.h
- libxcrypt installs libcrypt.so.* and crypt.h
So there is no "clash" on the library itself, but there is a clash on
the header file.
Since we're using BR2_PER_PACKAGE_DIRECTORIES=y, when building
linux-pam, we are creating the per-package STAGING_DIR by copying the
STAGING_DIR of linux-pam dependencies, i.e both the libxcrypt
STAGING_DIR and the uclibc-ng STAGING_DIR. But the latter ends up
being copied last, which means that at the end of the day, we have in
the per-package STAGING_DIR of linux-pam:
- The libcrypt.so from libxcrypt
- The crypt.h header from uclibc-ng
- The libcrypt.a from uclibc-ng
When the ./configure script of linux-pam tests whether the library has
crypt_r(), it concludes that yes it's available: and indeed
libcrypt.so from libxcrypt has it.
So it tries to use 'struct crypt_data' and 'crypt_r()', but those are
not supported in uClibc-ng, and so cannot be found in the <crypt.h>
header. So even if the ./configure script and the linux-pam code has
some logic to fallback to crypt() if crypt_r() isn't available, this
fallback doesn't trigger because the installed libcrypt.so does have
crypt_r().
Basically what happens is that uclibc-ng + libxcrypt is a combo that
violates a golden rule of our BR2_PER_PACKAGE_DIRECTORIES=y
implementation: packages shouldn't overwrite files from each other.
To avoid this situation, we make libxcrypt only installable on
glibc. This isn't a problem because as of today, BR2_PACKAGE_LIBXCRYPT
is always selected "if BR2_TOOLCHAIN_USES_GLIBC".
It should be noted though that the case of an older glibc (which still
had its own internal libcrypt) + libxcrypt continues to exist. It's
less likely to cause trouble though, as the libcrypt implementations
are much more similar.
Fixes:
http://autobuild.buildroot.net/results/560f66b0311d02dc884732221d6870ae3c38067c/
Note: we do not add a Config.in comment for this glibc dependency,
because libxcrypt really is a "replacement" library to fill in the
void left by libcrypt's removal from glibc. There isn't realy a point
showing "libxcrypt needs a toolchain w/ glibc", because with musl or
uclibc-ng, the libcrypt functionality is directly part of the C
library.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com >
Signed-off-by: Julien Olivain <ju.o@free.fr >
(cherry picked from commit 5c0a91f729 )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2025-01-09 10:50:50 +01:00
..
2024-10-23 23:14:17 +02:00
2024-10-24 22:46:27 +02:00
2024-09-02 17:50:19 +02:00
2024-10-13 12:48:05 +02:00
2024-12-04 22:33:09 +01:00
2024-09-05 21:28:29 +02:00
2024-09-10 22:49:22 +02:00
2024-10-26 21:12:34 +02:00
2024-12-04 22:44:17 +01:00
2024-10-29 19:36:09 +01:00
2024-12-29 20:55:23 +01:00
2024-10-22 23:08:57 +02:00
2024-09-03 22:03:26 +02:00
2024-10-24 21:29:40 +02:00
2024-10-02 23:37:50 +02:00
2024-09-10 22:49:23 +02:00
2024-08-20 23:23:43 +02:00
2024-12-12 22:29:18 +01:00
2024-09-10 22:49:25 +02:00
2024-10-02 23:01:07 +02:00
2024-10-26 16:08:01 +02:00
2024-10-22 22:57:54 +02:00
2024-08-20 23:33:05 +02:00
2024-08-20 23:33:12 +02:00
2024-12-03 13:44:40 +01:00
2024-12-13 23:36:37 +01:00
2024-09-10 22:49:27 +02:00
2024-09-10 22:49:29 +02:00
2024-09-14 19:15:31 +02:00
2024-11-10 19:33:08 +01:00
2024-10-24 21:29:45 +02:00
2024-08-23 19:37:16 +02:00
2024-10-29 19:51:35 +01:00
2024-10-26 18:21:51 +02:00
2024-11-11 21:22:49 +01:00
2025-01-06 17:08:01 +01:00
2025-01-06 17:07:44 +01:00
2024-09-05 22:24:22 +02:00
2024-11-23 10:44:03 +01:00
2024-11-11 21:20:17 +01:00
2024-10-02 22:34:41 +02:00
2024-10-29 21:25:30 +01:00
2025-01-08 22:17:57 +01:00
2024-09-10 22:49:32 +02:00
2024-09-03 22:49:25 +02:00
2024-10-02 23:43:13 +02:00
2024-10-26 17:35:18 +02:00
2024-08-23 18:41:06 +02:00
2024-10-26 17:59:32 +02:00
2024-10-31 13:51:13 +01:00
2024-08-26 18:31:45 +02:00
2024-09-10 22:49:33 +02:00
2024-10-29 21:23:35 +01:00
2024-09-05 21:08:53 +02:00
2024-10-26 22:06:20 +02:00
2024-10-29 19:34:34 +01:00
2024-11-06 22:19:29 +01:00
2024-08-27 18:51:30 +02:00
2024-10-26 15:33:39 +02:00
2024-10-26 12:45:13 +02:00
2024-10-26 22:43:45 +02:00
2024-10-28 15:42:34 +01:00
2024-11-06 20:50:27 +01:00
2025-01-08 22:57:20 +01:00
2024-09-14 21:56:27 +02:00
2024-10-01 22:07:45 +02:00
2024-12-26 22:51:57 +01:00
2024-10-27 19:13:50 +01:00
2024-09-03 23:05:29 +02:00
2024-09-10 22:49:36 +02:00
2024-09-03 23:14:07 +02:00
2024-10-29 18:52:46 +01:00
2024-10-29 22:11:28 +01:00
2024-09-10 22:49:37 +02:00
2024-12-12 22:29:18 +01:00
2024-10-26 15:33:35 +02:00
2024-10-26 15:33:41 +02:00
2024-10-26 15:33:33 +02:00
2024-10-26 13:00:38 +02:00
2024-08-24 18:40:21 +02:00
2024-08-24 18:40:44 +02:00
2024-11-24 19:41:43 +01:00
2025-01-02 13:32:43 +01:00
2024-10-27 19:13:54 +01:00
2024-11-09 16:29:09 +01:00
2024-09-10 22:49:39 +02:00
2024-10-29 23:20:35 +01:00
2024-11-04 23:03:44 +01:00
2024-09-04 00:42:48 +02:00
2024-09-06 21:05:52 +02:00
2024-09-10 22:49:40 +02:00
2024-10-28 22:02:43 +01:00
2024-08-27 18:26:40 +02:00
2024-09-10 22:49:42 +02:00
2024-09-04 00:29:11 +02:00
2024-09-04 00:27:36 +02:00
2024-09-04 00:28:54 +02:00
2024-09-04 00:29:19 +02:00
2024-09-04 00:29:23 +02:00
2024-09-04 00:28:37 +02:00
2024-09-04 00:29:15 +02:00
2024-09-04 00:29:03 +02:00
2024-09-04 00:29:07 +02:00
2024-09-04 00:29:27 +02:00
2024-09-04 00:28:46 +02:00
2024-09-04 00:28:42 +02:00
2024-09-04 00:28:33 +02:00
2024-09-04 00:28:58 +02:00
2024-09-04 00:29:31 +02:00
2024-09-04 00:26:43 +02:00
2024-09-04 00:28:29 +02:00
2024-10-24 22:47:04 +02:00
2024-10-26 16:53:15 +02:00
2024-10-27 19:13:48 +01:00
2024-08-20 23:25:20 +02:00
2024-10-26 17:56:56 +02:00
2024-11-02 21:25:47 +01:00
2024-09-10 22:49:43 +02:00
2024-11-13 18:55:41 +01:00
2024-12-07 10:50:35 +01:00
2024-10-22 23:16:09 +02:00
2024-09-10 22:49:44 +02:00
2024-09-03 23:32:38 +02:00
2024-09-10 22:49:46 +02:00
2024-08-26 18:28:55 +02:00
2024-08-23 16:57:37 +02:00
2024-08-23 19:29:09 +02:00
2024-09-10 22:49:47 +02:00
2024-11-08 21:51:10 +01:00
2024-10-26 23:25:56 +02:00
2024-11-11 21:25:26 +01:00
2024-11-06 21:15:03 +01:00
2024-09-10 22:49:49 +02:00
2024-11-10 18:14:00 +01:00
2024-10-29 18:52:50 +01:00
2024-10-29 18:52:51 +01:00
2024-09-10 22:49:51 +02:00
2024-10-29 18:52:48 +01:00
2024-12-07 10:50:45 +01:00
2024-12-14 09:51:21 +01:00
2024-08-27 18:48:18 +02:00
2024-12-01 20:16:42 +01:00
2024-10-02 22:51:14 +02:00
2024-09-25 19:33:59 +02:00
2024-09-10 22:49:53 +02:00
2024-10-31 19:27:17 +01:00
2025-01-02 12:32:26 +01:00
2024-10-02 23:09:19 +02:00
2024-09-14 11:33:39 +02:00
2024-09-11 21:41:18 +02:00
2024-10-27 19:13:46 +01:00
2024-10-31 19:06:16 +01:00
2024-09-14 19:18:39 +02:00
2024-12-31 17:05:37 +01:00
2025-01-08 22:28:17 +01:00
2024-10-25 19:36:48 +02:00
2025-01-02 13:23:49 +01:00
2024-12-12 20:37:04 +01:00
2025-01-08 23:01:16 +01:00
2025-01-02 14:19:19 +01:00
2024-09-14 20:09:09 +02:00
2024-10-24 23:02:20 +02:00
2024-09-10 22:50:04 +02:00
2024-10-27 19:14:08 +01:00
2024-09-10 22:50:06 +02:00
2024-09-25 19:34:03 +02:00
2024-09-10 22:50:07 +02:00
2024-09-23 21:34:29 +02:00
2024-08-23 18:39:29 +02:00
2024-10-07 08:31:29 +02:00
2024-10-31 19:09:30 +01:00
2024-09-14 13:31:35 +02:00
2024-12-07 15:36:55 +01:00
2024-09-14 10:06:36 +02:00
2025-01-08 22:41:30 +01:00
2024-09-03 23:00:36 +02:00
2024-10-19 19:55:51 +02:00
2024-10-27 19:13:56 +01:00
2024-11-15 23:25:53 +01:00
2024-10-27 19:13:58 +01:00
2024-11-08 22:47:35 +01:00
2024-11-11 21:25:07 +01:00
2025-01-09 10:06:58 +01:00
2024-09-14 13:31:36 +02:00
2024-10-26 10:46:18 +02:00
2024-10-23 22:05:40 +02:00
2024-09-14 10:15:02 +02:00
2024-11-10 18:13:54 +01:00
2024-10-28 22:05:49 +01:00
2024-10-28 21:48:38 +01:00
2024-09-14 10:15:12 +02:00
2024-10-27 19:13:44 +01:00
2024-10-25 20:53:11 +02:00
2024-09-14 10:19:10 +02:00
2024-09-14 10:19:13 +02:00
2024-09-07 19:18:34 +02:00
2024-11-10 17:53:41 +01:00
2024-08-23 19:06:00 +02:00
2024-09-14 23:54:26 +02:00
2024-11-10 17:53:45 +01:00
2024-10-25 08:15:24 +02:00
2024-08-23 19:05:04 +02:00
2024-08-23 19:05:06 +02:00
2024-11-10 17:53:49 +01:00
2024-10-25 08:15:26 +02:00
2024-08-23 19:05:11 +02:00
2024-10-29 19:39:47 +01:00
2024-09-21 21:57:04 +02:00
2024-08-23 19:06:00 +02:00
2024-09-14 10:19:14 +02:00
2024-08-21 14:03:47 +02:00
2024-10-06 22:46:35 +02:00
2024-10-26 16:28:20 +02:00
2024-10-22 23:16:11 +02:00
2024-11-21 23:42:47 +01:00
2024-10-23 21:00:36 +02:00
2024-09-14 10:19:15 +02:00
2024-09-14 10:19:16 +02:00
2024-08-24 09:14:15 +02:00
2024-12-19 09:24:51 +01:00
2024-10-26 13:44:55 +02:00
2024-09-14 23:51:46 +02:00
2024-09-14 11:22:36 +02:00
2024-09-14 10:19:17 +02:00
2024-09-14 10:19:18 +02:00
2024-09-14 10:19:19 +02:00
2024-10-26 15:18:09 +02:00
2024-09-14 10:19:20 +02:00
2024-10-24 22:46:30 +02:00
2024-11-13 18:55:42 +01:00
2024-10-28 15:46:10 +01:00
2024-09-14 10:19:21 +02:00
2024-08-23 19:41:51 +02:00
2024-09-03 23:03:44 +02:00
2024-10-31 18:50:37 +01:00
2024-09-14 11:22:40 +02:00
2024-08-23 18:39:35 +02:00
2024-10-02 23:18:12 +02:00
2024-10-24 21:29:38 +02:00
2024-10-24 22:46:37 +02:00
2024-08-21 09:28:37 +02:00
2024-11-16 10:47:41 +01:00
2024-09-03 22:41:57 +02:00
2024-10-27 19:13:36 +01:00
2024-10-26 15:22:28 +02:00
2024-09-14 10:19:24 +02:00
2024-09-14 20:07:42 +02:00
2024-10-28 15:47:26 +01:00
2024-10-30 21:00:07 +01:00
2024-09-14 10:19:25 +02:00
2024-09-14 10:19:26 +02:00
2024-11-06 21:38:30 +01:00
2024-11-06 21:38:36 +01:00
2024-11-18 23:42:41 +01:00
2024-10-27 19:13:38 +01:00
2024-10-28 21:24:39 +01:00
2024-10-27 19:14:00 +01:00
2024-09-14 10:19:28 +02:00
2024-09-23 21:46:30 +02:00
2024-09-14 10:19:29 +02:00
2024-11-16 10:48:18 +01:00
2024-10-26 17:59:24 +02:00
2024-10-26 17:59:19 +02:00
2024-10-26 17:59:14 +02:00
2025-01-02 12:08:32 +01:00
2024-12-29 20:57:35 +01:00
2024-11-06 20:59:26 +01:00
2024-10-27 19:13:42 +01:00
2024-12-28 09:41:04 +01:00
2024-11-05 23:33:09 +01:00
2024-09-15 12:53:02 +02:00
2024-11-09 19:05:17 +01:00
2024-10-24 21:28:20 +02:00
2024-08-26 22:41:30 +02:00
2024-10-22 23:16:14 +02:00
2024-10-27 19:13:32 +01:00
2024-10-31 13:46:36 +01:00
2025-01-09 09:58:27 +01:00
2024-12-04 22:11:12 +01:00
2024-10-26 16:40:08 +02:00
2025-01-09 10:50:50 +01:00
2025-01-08 21:43:46 +01:00
2024-11-13 18:55:44 +01:00
2025-01-08 22:03:49 +01:00
2024-09-15 14:58:25 +02:00
2024-10-06 22:46:49 +02:00
2024-10-26 16:01:29 +02:00
2024-09-14 15:14:40 +02:00
2025-01-05 19:10:42 +01:00
2025-01-09 10:48:17 +01:00
2024-12-03 21:54:21 +01:00
2024-09-14 15:15:32 +02:00
2024-09-14 20:16:42 +02:00
2024-12-05 16:52:49 +01:00
2024-09-14 11:22:38 +02:00
2024-12-01 21:42:09 +01:00
2024-08-24 09:22:45 +02:00
2024-10-26 18:59:41 +02:00
2024-09-14 15:54:28 +02:00
2024-10-31 19:22:42 +01:00
2024-10-31 19:22:39 +01:00
2024-11-04 22:56:58 +01:00
2024-10-26 22:59:30 +02:00
2024-09-14 15:54:36 +02:00
2024-10-19 19:50:40 +02:00
2024-10-07 08:05:25 +02:00
2024-09-14 11:22:39 +02:00
2024-09-14 15:54:38 +02:00
2024-09-14 15:54:39 +02:00
2024-09-14 15:54:40 +02:00
2024-10-07 08:33:17 +02:00
2024-11-06 20:57:28 +01:00
2024-09-25 19:34:09 +02:00
2024-09-15 14:55:47 +02:00
2024-09-04 00:08:58 +02:00
2024-10-02 22:59:07 +02:00
2024-10-02 22:59:09 +02:00
2024-10-08 22:10:05 +02:00
2024-10-28 22:09:11 +01:00
2024-09-14 15:54:42 +02:00
2024-09-07 19:18:34 +02:00
2024-09-03 23:14:08 +02:00
2024-08-27 18:49:54 +02:00
2024-10-27 19:14:28 +01:00
2024-11-06 22:19:09 +01:00
2024-12-07 10:50:19 +01:00
2024-11-11 21:22:29 +01:00
2024-09-14 15:54:43 +02:00
2024-09-14 15:54:45 +02:00
2024-10-06 15:55:01 +02:00
2024-10-07 08:02:56 +02:00
2024-09-14 15:54:46 +02:00
2024-12-04 21:01:36 +01:00
2024-10-30 20:45:29 +01:00
2024-09-25 19:34:13 +02:00
2024-09-14 15:54:48 +02:00
2024-12-29 20:58:31 +01:00
2024-10-29 19:50:34 +01:00
2024-12-14 09:51:22 +01:00
2024-09-10 22:44:40 +02:00
2024-09-03 22:41:59 +02:00
2024-12-04 21:23:20 +01:00
2024-10-29 19:52:34 +01:00
2024-09-14 15:54:51 +02:00
2024-09-14 15:54:49 +02:00
2024-09-14 15:54:52 +02:00
2024-10-31 13:45:11 +01:00
2024-08-26 11:31:49 +02:00
2024-10-29 22:50:35 +01:00
2024-08-20 23:35:59 +02:00
2024-10-07 08:02:25 +02:00
2024-09-14 15:54:55 +02:00
2024-10-28 21:24:21 +01:00
2024-12-14 09:51:20 +01:00
2024-12-12 22:29:19 +01:00
2024-12-12 22:29:20 +01:00
2024-10-10 23:44:10 +02:00
2024-10-28 21:24:42 +01:00
2024-10-24 21:52:55 +02:00
2024-10-26 16:30:50 +02:00
2024-09-15 11:29:35 +02:00
2024-11-07 08:55:52 +01:00
2025-01-09 10:05:04 +01:00
2024-10-29 21:23:38 +01:00
2024-09-05 08:04:28 +02:00
2024-12-12 22:29:21 +01:00
2024-12-04 21:14:46 +01:00
2024-11-04 19:25:57 +01:00
2024-10-24 22:46:34 +02:00
2024-09-03 23:31:39 +02:00
2024-12-12 22:29:22 +01:00
2024-10-07 08:01:24 +02:00
2025-01-08 22:21:09 +01:00
2024-09-11 15:26:07 +02:00
2024-09-11 15:26:26 +02:00
2024-09-11 15:26:08 +02:00
2024-09-11 15:26:09 +02:00
2024-09-11 15:26:10 +02:00
2024-10-23 21:21:34 +02:00
2024-09-11 15:26:20 +02:00
2024-09-11 15:26:21 +02:00
2024-10-23 21:21:35 +02:00
2024-09-11 15:26:25 +02:00
2024-09-11 15:26:23 +02:00
2024-09-11 15:26:24 +02:00
2024-10-23 21:21:36 +02:00
2024-10-23 21:21:37 +02:00
2024-09-14 11:29:57 +02:00
2024-09-11 15:26:12 +02:00
2024-09-14 11:28:11 +02:00
2024-09-11 15:26:13 +02:00
2024-09-11 15:26:14 +02:00
2024-09-11 15:26:15 +02:00
2024-10-23 21:21:38 +02:00
2024-10-23 21:21:39 +02:00
2024-09-11 15:26:18 +02:00
2024-09-11 15:26:19 +02:00
2024-10-23 21:21:40 +02:00
2024-09-14 11:28:16 +02:00
2025-01-08 22:44:00 +01:00
2024-11-10 17:52:01 +01:00
2024-09-12 09:04:52 +02:00
2025-01-08 22:35:48 +01:00
2024-11-06 22:19:53 +01:00
2024-10-26 17:59:28 +02:00
2024-12-28 18:40:11 +01:00
2024-11-08 19:19:07 +01:00
2024-11-28 19:44:58 +01:00
2024-10-19 20:11:51 +02:00
2025-01-06 17:13:29 +01:00
2024-08-26 10:05:02 +02:00
2024-10-25 21:04:03 +02:00
2024-11-06 22:20:18 +01:00
2024-10-01 21:54:59 +02:00
2024-11-06 21:15:36 +01:00
2024-12-14 12:09:57 +01:00
2024-11-06 23:22:33 +01:00
2024-09-14 00:17:01 +02:00
2024-11-04 21:39:10 +01:00
2024-09-14 23:51:49 +02:00
2024-10-24 09:27:50 +02:00
2024-11-06 23:22:30 +01:00
2024-10-13 12:40:06 +02:00
2024-09-14 00:17:11 +02:00
2024-11-07 08:55:58 +01:00
2024-10-02 23:01:04 +02:00
2024-09-14 00:18:03 +02:00
2024-09-14 00:22:30 +02:00
2024-10-26 18:35:33 +02:00
2024-09-14 23:51:51 +02:00
2024-11-07 08:56:00 +01:00
2024-09-14 23:51:56 +02:00
2024-10-24 09:28:13 +02:00
2024-10-26 10:49:31 +02:00
2024-11-07 08:56:02 +01:00
2024-10-10 23:17:14 +02:00
2024-09-14 23:52:02 +02:00
2024-10-24 09:27:37 +02:00
2024-08-23 19:28:59 +02:00
2024-11-10 17:43:54 +01:00
2024-10-28 14:47:30 +01:00
2024-10-24 09:27:39 +02:00
2024-09-14 23:52:07 +02:00
2024-09-14 23:52:09 +02:00
2025-01-02 14:11:37 +01:00
2024-09-14 23:55:54 +02:00
2024-10-02 23:01:07 +02:00
2024-09-15 10:02:10 +02:00
2024-09-15 10:02:11 +02:00
2024-10-24 09:28:29 +02:00
2024-09-15 10:02:12 +02:00
2024-11-06 23:22:17 +01:00
2024-09-15 10:02:13 +02:00
2024-10-26 10:49:35 +02:00
2024-09-15 10:02:14 +02:00
2024-11-06 23:22:24 +01:00
2024-11-10 17:43:58 +01:00
2024-09-15 10:02:17 +02:00
2024-11-10 17:44:00 +01:00
2024-11-10 17:44:02 +01:00
2024-10-26 10:49:37 +02:00
2024-10-13 12:40:16 +02:00
2024-10-28 14:47:32 +01:00
2024-09-15 10:02:21 +02:00
2024-08-23 19:35:29 +02:00
2024-09-15 10:02:22 +02:00
2024-10-13 12:40:19 +02:00
2024-09-07 21:46:26 +02:00
2024-09-21 22:11:55 +02:00
2024-09-15 10:02:25 +02:00
2024-09-15 10:02:24 +02:00
2024-10-13 12:40:22 +02:00
2024-09-15 10:02:26 +02:00
2024-09-15 10:35:46 +02:00
2024-10-24 09:28:25 +02:00
2024-11-04 21:39:14 +01:00
2024-09-22 18:02:43 +02:00
2024-09-15 10:02:29 +02:00
2024-09-15 10:02:30 +02:00
2024-11-04 22:19:37 +01:00
2024-09-15 10:02:31 +02:00
2024-10-26 17:56:15 +02:00
2024-09-15 10:02:32 +02:00
2024-11-06 23:22:27 +01:00
2024-10-13 12:40:25 +02:00
2024-12-19 09:29:09 +01:00
2024-10-24 09:27:54 +02:00
2024-10-24 09:28:23 +02:00
2024-09-15 10:02:34 +02:00
2024-10-29 22:15:13 +01:00
2024-11-10 17:44:06 +01:00
2024-11-06 23:22:34 +01:00
2024-09-15 10:02:36 +02:00
2024-09-15 10:02:37 +02:00
2024-10-26 10:49:41 +02:00
2024-10-10 23:17:30 +02:00
2024-09-15 10:02:40 +02:00
2024-09-15 10:02:41 +02:00
2024-10-24 09:27:52 +02:00
2024-11-10 17:44:08 +01:00
2024-10-28 14:48:00 +01:00
2024-10-24 09:27:43 +02:00
2024-10-24 09:27:22 +02:00
2024-10-10 23:17:32 +02:00
2024-09-15 10:02:50 +02:00
2024-11-06 23:22:22 +01:00
2024-09-15 10:02:46 +02:00
2024-09-15 10:02:48 +02:00
2024-10-26 10:49:47 +02:00
2024-10-26 10:49:49 +02:00
2024-11-07 08:56:07 +01:00
2024-10-02 23:01:10 +02:00
2024-10-26 10:49:51 +02:00
2024-09-15 10:02:52 +02:00
2024-09-15 10:02:53 +02:00
2024-09-15 10:02:54 +02:00
2024-09-22 18:04:21 +02:00
2024-11-04 21:39:15 +01:00
2024-11-10 17:44:10 +01:00
2024-09-15 10:02:58 +02:00
2024-09-15 10:12:44 +02:00
2024-09-22 18:04:33 +02:00
2024-09-15 10:31:52 +02:00
2024-11-04 21:39:18 +01:00
2024-11-04 21:39:16 +01:00
2024-09-15 10:32:07 +02:00
2024-10-24 09:27:58 +02:00
2024-10-24 09:28:00 +02:00
2024-09-15 10:32:08 +02:00
2024-10-24 09:27:48 +02:00
2024-10-24 09:27:35 +02:00
2024-10-24 09:28:03 +02:00
2024-09-21 22:11:59 +02:00
2024-11-06 23:22:26 +01:00
2024-09-15 10:35:44 +02:00
2024-09-15 10:35:46 +02:00
2024-09-15 11:59:17 +02:00
2024-10-24 09:27:24 +02:00
2024-10-26 22:53:22 +02:00
2024-11-06 23:22:25 +01:00
2024-09-16 12:08:37 +02:00
2024-11-04 21:39:19 +01:00
2024-09-15 11:59:19 +02:00
2024-09-15 11:59:20 +02:00
2024-09-15 11:59:21 +02:00
2024-10-24 23:07:28 +02:00
2024-09-15 11:59:23 +02:00
2024-10-24 09:27:28 +02:00
2024-10-24 09:28:36 +02:00
2024-10-28 14:47:36 +01:00
2024-09-16 11:42:48 +02:00
2024-09-21 22:12:13 +02:00
2024-11-06 23:22:39 +01:00
2024-09-16 13:54:56 +02:00
2024-09-16 11:47:01 +02:00
2024-10-28 14:47:38 +01:00
2024-09-07 21:50:07 +02:00
2024-11-04 21:39:20 +01:00
2024-10-26 22:53:25 +02:00
2024-11-09 19:29:00 +01:00
2024-11-09 19:29:04 +01:00
2024-10-26 22:53:27 +02:00
2024-09-16 11:54:31 +02:00
2024-10-22 21:11:05 +02:00
2024-10-26 22:53:30 +02:00
2024-11-07 08:56:09 +01:00
2024-09-16 11:54:36 +02:00
2024-09-16 11:54:44 +02:00
2024-09-16 11:54:41 +02:00
2024-10-02 23:01:11 +02:00
2024-11-10 17:44:12 +01:00
2024-09-16 11:54:47 +02:00
2024-09-16 11:54:50 +02:00
2024-09-16 11:54:52 +02:00
2024-09-16 11:54:55 +02:00
2024-09-16 11:54:58 +02:00
2024-11-04 21:39:22 +01:00
2024-09-21 22:22:26 +02:00
2024-11-04 21:39:23 +01:00
2024-11-04 21:39:25 +01:00
2024-09-22 11:31:34 +02:00
2024-10-27 19:13:30 +01:00
2024-09-21 22:52:33 +02:00
2024-11-07 08:56:11 +01:00
2024-11-10 17:44:14 +01:00
2024-10-24 09:28:17 +02:00
2024-09-21 22:52:37 +02:00
2024-09-21 22:52:39 +02:00
2024-09-22 18:53:13 +02:00
2024-09-21 22:52:40 +02:00
2024-09-21 22:52:41 +02:00
2024-11-04 21:39:26 +01:00
2024-09-21 22:52:44 +02:00
2024-11-12 20:53:16 +01:00
2024-11-10 17:44:16 +01:00
2024-11-06 23:22:28 +01:00
2024-09-21 22:52:48 +02:00
2024-10-22 21:10:41 +02:00
2024-11-06 23:22:19 +01:00
2024-10-02 23:01:12 +02:00
2024-10-28 14:48:22 +01:00
2024-10-27 19:14:14 +01:00
2024-10-27 19:14:16 +01:00
2024-12-04 21:07:29 +01:00
2024-10-24 09:28:09 +02:00
2024-10-27 19:14:20 +01:00
2024-09-21 22:52:54 +02:00
2024-10-29 21:30:57 +01:00
2024-09-21 22:52:56 +02:00
2024-12-12 22:29:26 +01:00
2024-12-12 22:29:27 +01:00
2024-09-21 22:52:57 +02:00
2024-09-21 22:52:59 +02:00
2024-09-21 22:53:00 +02:00
2024-10-10 23:17:56 +02:00
2024-09-21 22:53:03 +02:00
2024-11-04 21:39:28 +01:00
2024-10-24 09:27:26 +02:00
2024-11-07 08:56:13 +01:00
2024-11-04 21:39:09 +01:00
2024-09-21 22:53:09 +02:00
2024-09-21 22:53:10 +02:00
2024-10-27 19:14:24 +01:00
2024-10-24 09:28:19 +02:00
2024-10-24 09:27:45 +02:00
2024-11-07 08:56:15 +01:00
2024-09-21 22:53:16 +02:00
2024-11-10 17:44:18 +01:00
2024-11-06 23:22:40 +01:00
2024-10-27 19:14:26 +01:00
2024-09-21 22:53:20 +02:00
2024-09-21 22:53:22 +02:00
2024-09-21 22:53:23 +02:00
2024-10-28 14:47:40 +01:00
2024-11-04 21:39:29 +01:00
2024-11-06 23:22:38 +01:00
2024-10-10 23:18:01 +02:00
2024-10-28 14:47:42 +01:00
2024-12-12 22:29:28 +01:00
2024-10-26 22:04:45 +02:00
2024-09-21 22:53:29 +02:00
2024-10-24 23:08:40 +02:00
2024-11-10 17:44:20 +01:00
2024-11-10 17:44:22 +01:00
2024-11-06 23:22:18 +01:00
2024-09-21 22:53:32 +02:00
2024-09-22 18:53:18 +02:00
2024-09-21 22:53:35 +02:00
2024-09-21 22:53:33 +02:00
2024-11-04 21:39:32 +01:00
2024-09-21 22:53:37 +02:00
2024-09-21 22:53:39 +02:00
2024-09-07 21:58:20 +02:00
2024-11-06 23:22:29 +01:00
2024-10-28 14:47:48 +01:00
2024-10-24 09:28:33 +02:00
2024-11-10 17:44:24 +01:00
2024-09-21 22:53:46 +02:00
2024-09-03 23:38:29 +02:00
2024-11-10 17:44:26 +01:00
2024-11-06 23:22:20 +01:00
2024-09-21 22:53:49 +02:00
2024-10-28 14:47:50 +01:00
2024-10-22 21:11:11 +02:00
2024-11-10 17:44:28 +01:00
2024-09-21 22:53:52 +02:00
2024-11-04 21:39:35 +01:00
2024-09-16 13:32:54 +02:00
2024-09-21 22:53:53 +02:00
2024-11-04 21:39:36 +01:00
2024-11-07 08:56:16 +01:00
2024-10-28 14:47:54 +01:00
2024-11-04 21:39:38 +01:00
2024-10-10 23:18:16 +02:00
2024-09-22 11:31:54 +02:00
2024-11-06 23:22:36 +01:00
2024-10-22 21:11:15 +02:00
2024-09-22 11:37:22 +02:00
2024-11-06 23:22:23 +01:00
2024-11-23 10:46:59 +01:00
2024-10-02 23:01:14 +02:00
2024-09-22 11:37:30 +02:00
2024-10-02 23:01:15 +02:00
2024-09-22 11:37:34 +02:00
2024-09-22 11:37:38 +02:00
2024-10-24 09:28:27 +02:00
2024-10-02 23:01:16 +02:00
2024-10-26 10:49:29 +02:00
2024-10-24 09:27:19 +02:00
2024-10-28 14:47:58 +01:00
2024-09-22 11:37:50 +02:00
2024-09-22 11:37:54 +02:00
2024-09-22 11:37:58 +02:00
2024-10-24 09:27:41 +02:00
2024-11-06 23:22:32 +01:00
2024-09-22 11:38:02 +02:00
2024-09-22 11:38:06 +02:00
2024-10-28 14:48:02 +01:00
2024-11-04 21:39:42 +01:00
2024-09-22 11:38:14 +02:00
2024-10-10 23:18:24 +02:00
2024-10-10 23:18:22 +02:00
2024-11-06 23:22:21 +01:00
2024-09-22 12:28:30 +02:00
2024-11-06 23:22:37 +01:00
2024-09-22 12:30:25 +02:00
2024-11-10 17:44:29 +01:00
2024-10-24 09:28:15 +02:00
2024-09-22 12:30:29 +02:00
2024-10-28 14:48:06 +01:00
2024-09-22 12:30:31 +02:00
2024-10-28 14:48:09 +01:00
2024-11-01 22:31:40 +01:00
2024-09-22 12:30:36 +02:00
2024-11-07 08:56:18 +01:00
2024-09-22 12:30:39 +02:00
2024-10-10 23:18:27 +02:00
2024-09-22 12:30:42 +02:00
2024-09-22 12:30:43 +02:00
2024-10-02 23:01:17 +02:00
2024-10-24 09:28:31 +02:00
2024-10-28 14:48:10 +01:00
2024-10-10 23:18:30 +02:00
2024-10-24 09:28:07 +02:00
2024-10-28 23:01:40 +01:00
2024-09-22 12:30:49 +02:00
2024-11-07 08:56:20 +01:00
2024-09-22 12:30:52 +02:00
2024-11-04 21:39:43 +01:00
2024-09-22 12:30:55 +02:00
2024-10-10 23:18:38 +02:00
2024-10-28 14:48:14 +01:00
2024-09-22 12:30:56 +02:00
2024-09-22 12:30:58 +02:00
2024-11-10 17:44:31 +01:00
2024-11-10 17:44:35 +01:00
2024-08-23 19:09:15 +02:00
2024-10-13 12:40:33 +02:00
2024-10-28 14:48:18 +01:00
2024-09-22 12:31:02 +02:00
2024-09-22 12:31:03 +02:00
2024-10-28 14:48:20 +01:00
2024-11-04 21:39:46 +01:00
2024-09-22 12:31:05 +02:00
2024-09-22 12:31:06 +02:00
2024-11-06 23:22:31 +01:00
2024-10-28 14:48:28 +01:00
2024-09-22 12:31:09 +02:00
2024-10-28 14:48:30 +01:00
2024-11-07 08:56:24 +01:00
2024-10-28 22:45:06 +01:00
2024-11-01 21:36:17 +01:00
2024-09-25 20:30:21 +02:00
2024-10-26 16:47:14 +02:00
2024-10-26 16:47:24 +02:00
2024-09-25 20:37:59 +02:00
2025-01-03 20:07:59 +01:00
2024-11-24 15:50:32 +01:00
2024-12-29 21:07:59 +01:00
2024-09-25 20:39:05 +02:00
2024-11-11 22:31:35 +01:00
2024-09-07 19:18:34 +02:00
2024-10-23 22:21:14 +02:00
2024-09-25 20:40:00 +02:00
2024-10-26 18:00:02 +02:00
2024-10-26 17:59:36 +02:00
2024-09-25 20:40:16 +02:00
2024-09-14 09:30:38 +02:00
2024-08-23 18:39:54 +02:00
2024-09-25 20:40:31 +02:00
2024-09-03 23:38:29 +02:00
2024-10-24 22:46:59 +02:00
2024-10-26 15:33:29 +02:00
2024-12-04 22:37:37 +01:00
2024-10-31 19:08:19 +01:00
2024-09-14 21:56:48 +02:00
2024-10-24 21:29:36 +02:00
2024-10-26 15:33:37 +02:00
2024-12-04 21:12:14 +01:00
2024-10-28 15:44:35 +01:00
2024-12-14 11:52:35 +01:00
2024-10-24 21:52:48 +02:00
2024-11-06 20:43:35 +01:00
2024-10-26 17:59:45 +02:00
2024-10-26 17:59:41 +02:00
2024-10-26 17:59:56 +02:00
2024-12-04 22:29:23 +01:00
2024-09-15 14:50:13 +02:00
2024-10-06 22:45:13 +02:00
2025-01-06 14:58:38 +01:00
2024-09-25 20:42:13 +02:00
2024-11-19 22:05:18 +01:00
2024-09-25 20:42:45 +02:00
2024-10-22 21:32:06 +02:00
2024-09-25 20:43:28 +02:00
2024-09-25 20:43:44 +02:00
2024-08-25 12:04:07 +02:00
2024-09-25 20:44:03 +02:00
2024-11-11 21:22:55 +01:00
2024-10-27 19:13:34 +01:00
2024-08-27 18:28:19 +02:00
2024-10-30 21:00:05 +01:00
2024-10-27 19:13:28 +01:00
2024-10-02 23:40:20 +02:00
2024-10-07 08:01:47 +02:00
2024-09-15 09:38:01 +02:00
2024-12-19 09:24:24 +01:00
2024-11-09 21:34:40 +01:00
2024-09-25 20:47:24 +02:00
2024-10-29 19:33:39 +01:00
2024-09-25 20:48:26 +02:00
2024-10-26 13:45:05 +02:00
2024-10-31 19:11:10 +01:00
2024-10-26 13:51:36 +02:00
2024-08-27 18:59:26 +02:00
2024-10-28 22:14:34 +01:00
2024-11-06 20:52:12 +01:00
2024-12-12 22:29:29 +01:00
2024-10-02 23:38:55 +02:00
2024-09-23 21:46:26 +02:00
2024-10-10 23:44:03 +02:00
2024-12-12 22:29:30 +01:00
2024-11-14 19:52:43 +01:00
2024-11-13 18:55:43 +01:00
2024-10-10 23:39:33 +02:00
2024-09-14 11:20:06 +02:00
2024-10-07 08:30:48 +02:00
2024-09-03 20:57:25 +02:00
2024-10-27 19:13:52 +01:00
2024-12-12 22:29:30 +01:00
2024-10-24 21:28:18 +02:00
2024-12-12 22:29:31 +01:00
2024-10-27 19:14:10 +01:00
2025-01-09 10:17:40 +01:00
2024-10-02 22:34:40 +02:00
2024-11-09 22:26:42 +01:00
2024-11-11 16:18:29 +01:00
2024-08-27 18:33:52 +02:00
2024-09-06 21:05:52 +02:00
2024-11-11 21:41:29 +01:00
2024-10-29 19:52:17 +01:00
2024-10-26 16:35:12 +02:00
2024-11-23 10:51:49 +01:00
2025-01-08 22:32:13 +01:00
2024-12-12 22:29:32 +01:00
2024-12-12 22:29:33 +01:00
2024-11-07 08:55:54 +01:00
2024-11-07 08:55:56 +01:00
2025-01-03 20:08:52 +01:00
2024-12-28 11:29:42 +01:00
2024-10-02 23:09:22 +02:00
2025-01-03 20:09:16 +01:00
2024-12-14 12:01:02 +01:00
2024-12-12 22:29:34 +01:00
2024-10-10 10:00:22 +02:00
2024-09-11 21:41:19 +02:00
2024-12-19 09:25:07 +01:00
2024-10-27 19:45:09 +01:00
2024-10-26 21:09:53 +02:00
2024-12-28 11:30:28 +01:00
2024-12-12 22:29:35 +01:00
2024-11-08 22:18:45 +01:00
2024-08-25 14:58:29 +02:00
2024-10-10 23:43:55 +02:00
2024-08-23 16:33:32 +02:00
2024-12-12 22:29:35 +01:00
2024-11-13 17:26:46 +01:00
2024-10-24 21:29:43 +02:00
2024-11-08 21:58:39 +01:00
2024-12-28 09:33:21 +01:00
2025-01-08 21:40:18 +01:00
2024-10-22 23:16:20 +02:00
2024-10-29 19:40:40 +01:00
2024-10-31 18:45:48 +01:00
2024-12-14 12:03:17 +01:00
2025-01-09 10:17:26 +01:00
2024-11-10 19:33:08 +01:00
2024-10-26 21:12:34 +02:00
2024-10-02 22:34:13 +02:00
2024-12-12 22:29:23 +01:00
2024-12-12 22:29:24 +01:00
2024-12-12 22:29:25 +01:00
2025-01-08 22:59:45 +01:00
2024-11-04 23:19:55 +01:00
2024-12-12 22:29:26 +01:00