Your message dated Thu, 14 Oct 2021 15:40:14 +0000
with message-id <[email protected]>
and subject line Bug#900718: fixed in rsyslog 8.2108.0-2
has caused the Debian Bug report #900718,
regarding rsyslog: FTBFS on hurd-i386
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
900718: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900718
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: rsyslog
Version: 8.34.0-1
Severity: important
Tags: patch

Hello,

rsyslog currently FTBFS on hurd-i386 due to unconditional uses of
PATH_MAX. Here is a patch fixing it.

Samuel

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 
'testing-debug'), (500, 'stable-debug'), (500, 'oldoldstable'), (500, 
'buildd-unstable'), (500, 'unstable'), (500, 'stable'), (500, 'oldstable'), (1, 
'experimental-debug'), (1, 'buildd-experimental'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.15.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), 
LANGUAGE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages rsyslog depends on:
ii  init-system-helpers  1.51
ii  libc6                2.27-3
ii  libestr0             0.1.10-2.1
ii  libfastjson4         0.99.8-2
ii  liblogging-stdlog0   1.0.6-3
ii  liblognorm5          2.0.5-1
ii  libsystemd0          232-25
ii  libuuid1             2.32-0.1
ii  lsb-base             9.20170808
ii  zlib1g               1:1.2.11.dfsg-1

Versions of packages rsyslog recommends:
ii  logrotate  3.11.0-0.1

Versions of packages rsyslog suggests:
pn  rsyslog-doc                    <none>
pn  rsyslog-gnutls                 <none>
pn  rsyslog-gssapi                 <none>
pn  rsyslog-mongodb                <none>
pn  rsyslog-mysql | rsyslog-pgsql  <none>
pn  rsyslog-relp                   <none>

-- no debconf information

-- 
Samuel
"...very few phenomena can pull someone out of Deep Hack Mode, with two
noted exceptions: being struck by lightning, or worse, your *computer*
being struck by lightning."
(By Matt Welsh)
Index: rsyslog-8.34.0/runtime/modules.c
===================================================================
--- rsyslog-8.34.0.orig/runtime/modules.c
+++ rsyslog-8.34.0/runtime/modules.c
@@ -51,7 +51,7 @@
 #include <unistd.h>
 #include <sys/file.h>
 
-#ifndef PATH_MAX
+#if !defined(PATH_MAX) && defined(MAXPATHLEN)
 #      define PATH_MAX MAXPATHLEN
 #endif
 
Index: rsyslog-8.34.0/plugins/imfile/imfile.c
===================================================================
--- rsyslog-8.34.0.orig/plugins/imfile/imfile.c
+++ rsyslog-8.34.0/plugins/imfile/imfile.c
@@ -66,6 +66,10 @@
 
 #include <regex.h>
 
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
 MODULE_TYPE_INPUT      /* must be present for input modules, do not remove */
 MODULE_TYPE_NOKEEP
 MODULE_CNFNAME("imfile")

--- End Message ---
--- Begin Message ---
Source: rsyslog
Source-Version: 8.2108.0-2
Done: Michael Biebl <[email protected]>

We believe that the bug you reported is fixed in the latest version of
rsyslog, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Biebl <[email protected]> (supplier of updated rsyslog package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 14 Oct 2021 16:13:50 +0200
Source: rsyslog
Architecture: source
Version: 8.2108.0-2
Distribution: unstable
Urgency: medium
Maintainer: Michael Biebl <[email protected]>
Changed-By: Michael Biebl <[email protected]>
Closes: 900718 992869
Changes:
 rsyslog (8.2108.0-2) unstable; urgency=medium
 .
   * build issue: handle undefined MAXPATHLEN, PATH_MAX (Closes: #900718)
   * ratelimit: fix rate limiting for already parsed messages (Closes: #992869)
   * Remove outdated section from debian/copyright
Checksums-Sha1:
 a5c9ed65d8b2fcdca0b7848f133f8370164022cc 3077 rsyslog_8.2108.0-2.dsc
 03b24ed7aea45377c125cd90946e1d0043693fd9 31104 rsyslog_8.2108.0-2.debian.tar.xz
 849d818d870e0ac89e5d8e9d3e30288b5a16c792 9691 
rsyslog_8.2108.0-2_source.buildinfo
Checksums-Sha256:
 2ac49a1e5aa282909fae19db63a7d0f74cdeb7a5273f5a3aea3f972ace785d71 3077 
rsyslog_8.2108.0-2.dsc
 35b827101658e59c32be7c11991d252817e4182b34dc1bdad2385e6715493073 31104 
rsyslog_8.2108.0-2.debian.tar.xz
 7321597e09a301410b32498697be2a748cfc59d6c46dc387eff6c74cfe0fcd9a 9691 
rsyslog_8.2108.0-2_source.buildinfo
Files:
 0fa51c7a04d7dba44e66b308958e7128 3077 admin important rsyslog_8.2108.0-2.dsc
 cddebbe15e266cccd65b48cb1a4e9798 31104 admin important 
rsyslog_8.2108.0-2.debian.tar.xz
 2ce7b08e15b66c97d70e9d0285339267 9691 admin important 
rsyslog_8.2108.0-2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEECbOsLssWnJBDRcxUauHfDWCPItwFAmFoSd4ACgkQauHfDWCP
Itxk0w//YzBc7osxao0C/vfM6mBGjjve1yDzQUuJV466cVl5BWD+NJ5CfqgTQo0W
0DsOhppTvtsDRemcTtOm4CMhjOs231IYWugg210BzKlT9CiRsDKKXzh8LOGZ95t3
fNRC9BWhQ3GI8it3ovTSoZkLdKC9taY3r1kczBno3zomm2/ecZD4uC7O4iBZ5xOE
ZAzfl7an8jQJH/NCmIMMT2FNSO0sQvnkfDZTto1mmVURkqJWz5OzhgW8AhenKmiV
7Bv5s8nvLHnvKqrK6SYLBiqWBRCNsLax+3z76RiesDWRX6qJlFTCj7urWdUoSf5X
oFPSU0pyhQn3nKzz6r21S+8zyb2Fxi4AGd63M6XB0Ga3FCBfZHm2w3hQyQpI4dTd
9UrX+4f1QdQW05FS1HZuWlXbpcgNgIKdcEdrw3EleIqQENpWW4x+gbig8aEoJSCt
9ZuhDcn7GGUgEqpauSVxL4IHUy3zti3QWrXKJelyxp497FbH/X0ptJNtnFQi1cCc
IwQgJKNVgxhR90u5UBDTowOr4k5uS412kTCB8gdWpw9zlcl+obrto0CMFYn0lkdE
aew5zy18KTuwY/6rZVRZJSqlHpquL6SrDYM49Tz/NtRhbULtSPPWom4/WfoI1arV
AvUT+jZqMkgVaBRoJNON/z0sMW/1qtzjH/0FEq6p/kT0YW1g88M=
=zFdb
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to