Your message dated Sun, 26 Jun 2005 12:47:49 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#314528: fixed in m17n-lib 1.2.0-4
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 16 Jun 2005 22:03:32 +0000
>From [EMAIL PROTECTED] Thu Jun 16 15:03:32 2005
Return-path: <[EMAIL PROTECTED]>
Received: from mail.gmx.de (mail.gmx.net) [213.165.64.20]
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1Dj2SS-0006BU-00; Thu, 16 Jun 2005 15:03:32 -0700
Received: (qmail invoked by alias); 16 Jun 2005 22:03:00 -0000
Received: from ppp-62-245-163-242.mnet-online.de (EHLO localhost.localdomain)
[62.245.163.242]
by mail.gmx.net (mp005) with SMTP; 17 Jun 2005 00:03:00 +0200
X-Authenticated: #686195
Received: from mbanck by localhost.localdomain with local (Exim 4.34)
id 1Dj2S6-0006tW-Dx
for [EMAIL PROTECTED]; Fri, 17 Jun 2005 00:03:10 +0200
Date: Fri, 17 Jun 2005 00:03:09 +0200
From: Michael Banck <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: m17n-lib: FTBFS on hurd-i386: Unconditional use of non-POSIX mandated
system limits
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="oyUTqETQ0mS9luUI"
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040907i
X-Y-GMX-Trusted: 0
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
--oyUTqETQ0mS9luUI
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Package: m17n-lib
Version: 1.2.0-3
Severity: important
Tags: patch
There was a problem autobuilding your package:
Automatic build of m17n-lib_1.2.0-3 on beethoven by sbuild/hurd-i386 1.170.5
Build started at 20050617-0132
******************************************************************************
[...]
Checking correctness of source dependencies...
Toolchain package versions: libc0.3-dev_2.3.2.ds1-22
gnumach-dev_1:20050501-2 hurd-dev_20050513-2 gcc-3.3_1:3.3.6-4
g++-3.3_1:3.3.6-4 binutils_2.15-5 libstdc++5-3.3-dev_1:3.3.6-4
libstdc++5_1:3.3.6-4
------------------------------------------------------------------------------
dpkg-source: extracting m17n-lib in m17n-lib-1.2.0
dpkg-buildpackage: source package is m17n-lib
dpkg-buildpackage: source version is 1.2.0-3
dpkg-buildpackage: host architecture is hurd-i386
[...]
rm: cannot remove `': Invalid argument
cc -DHAVE_CONFIG_H -I. -I. -I. -DM17NDIR=\"/usr/share/m17n\"
-I/usr/include/freetype2 -I/usr/include -I/usr/include/freetype2
-I/usr/X11R6/include -I/usr/include/libxml2 -I/usr/X11R6/include -g
-Wall -O2 -DDLOPEN_SHLIB_EXT=\".so.0\" -MT database.lo -MD -MP -MF
.deps/database.Tpo -c database.c -fPIC -DPIC -o .libs/database.o
database.c: In function `load_database':
database.c:427: error: `PATH_MAX' undeclared (first use in this function)
database.c:427: error: (Each undeclared identifier is reported only once
database.c:427: error: for each function it appears in.)
database.c:427: warning: unused variable `path'
database.c: In function `mdatabase__init':
database.c:514: error: `PATH_MAX' undeclared (first use in this function)
database.c:514: warning: unused variable `path'
make[3]: *** [database.lo] Error 1
make[3]: Leaving directory `/build/mbanck/m17n-lib-1.2.0/src'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/build/mbanck/m17n-lib-1.2.0/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/build/mbanck/m17n-lib-1.2.0'
make: *** [debian/stamp-makefile-build] Error 2
******************************************************************************
Build finished at 20050617-0137
FAILED [dpkg-buildpackage died]
------------------------------------------------------------------------------
POSIX says PATH_MAX should be defined to the maximum path length, if
such a limit exists. As the GNU system does not have this (or any other
arbitrary) limit, PATH_MAX is not defined.
I have attached a patch which fixes this. However, the clean solution
would be to allocate the needed space dynamically, so you or upstream
might want to consider implementing that instead.
Michael
--oyUTqETQ0mS9luUI
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="m17n-lib.diff"
--- m17n-lib-1.2.0/src/database.c 2004-04-28 11:06:47.000000000 +0200
+++ m17n-lib-1.2.0/src/database.c.new 2005-06-17 02:02:23.000000000 +0200
@@ -130,6 +130,10 @@
#include "coding.h"
#include "plist.h"
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
/** The file containing a list of databases. */
#define MDB_DIR "mdb.dir"
#define MDB_DIR_LEN 8
--- m17n-lib-1.2.0/src/font-ft.c 2004-11-05 02:15:26.000000000 +0100
+++ m17n-lib-1.2.0/src/font-ft.c.new 2005-06-17 02:02:23.000000000 +0200
@@ -50,6 +50,10 @@
static FcConfig *fc_config;
#endif /* HAVE_FONTCONFIG */
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
/* Registries. */
static MSymbol Municode_bmp, Municode_full, Miso10646_1, Miso8859_1;
--oyUTqETQ0mS9luUI--
---------------------------------------
Received: (at 314528-close) by bugs.debian.org; 26 Jun 2005 16:51:41 +0000
>From [EMAIL PROTECTED] Sun Jun 26 09:51:41 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DmaM9-0002qG-00; Sun, 26 Jun 2005 09:51:41 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DmaIP-000067-00; Sun, 26 Jun 2005 12:47:49 -0400
From: Hidetaka Iwai <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#314528: fixed in m17n-lib 1.2.0-4
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 26 Jun 2005 12:47:49 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: m17n-lib
Source-Version: 1.2.0-4
We believe that the bug you reported is fixed in the latest version of
m17n-lib, which is due to be installed in the Debian FTP archive:
libm17n-0_1.2.0-4_i386.deb
to pool/main/m/m17n-lib/libm17n-0_1.2.0-4_i386.deb
libm17n-dev_1.2.0-4_i386.deb
to pool/main/m/m17n-lib/libm17n-dev_1.2.0-4_i386.deb
m17n-lib-bin_1.2.0-4_i386.deb
to pool/main/m/m17n-lib/m17n-lib-bin_1.2.0-4_i386.deb
m17n-lib_1.2.0-4.diff.gz
to pool/main/m/m17n-lib/m17n-lib_1.2.0-4.diff.gz
m17n-lib_1.2.0-4.dsc
to pool/main/m/m17n-lib/m17n-lib_1.2.0-4.dsc
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.
Hidetaka Iwai <[EMAIL PROTECTED]> (supplier of updated m17n-lib 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: SHA1
Format: 1.7
Date: Sat, 25 Jun 2005 00:39:02 +0900
Source: m17n-lib
Binary: m17n-lib-bin libm17n-dev libm17n-0
Architecture: source i386
Version: 1.2.0-4
Distribution: unstable
Urgency: high
Maintainer: Hidetaka Iwai <[EMAIL PROTECTED]>
Changed-By: Hidetaka Iwai <[EMAIL PROTECTED]>
Description:
libm17n-0 - a multilingual text processing library - runtime
libm17n-dev - a multilingual text processing library - development
m17n-lib-bin - a multilingual text processing library - utilities
Closes: 314528
Changes:
m17n-lib (1.2.0-4) unstable; urgency=high
.
* Applied tha patch which fixes FTBFS on Hurd due to PATH_MAX.
Thank to Michael Banck <[EMAIL PROTECTED]> (closes: #314528).
Files:
dd6bcda4209bcfb9f215e79121b7f987 785 text optional m17n-lib_1.2.0-4.dsc
7b9880d0b0dc25f4d7fe654f183b879c 2884 text optional m17n-lib_1.2.0-4.diff.gz
d39d4bb0ec4f4f432f086733bc218473 193958 libs optional
libm17n-0_1.2.0-4_i386.deb
5b3cdbbb383e112756902f8d2fab6306 223686 libdevel optional
libm17n-dev_1.2.0-4_i386.deb
7a54c4b4065b6720af8a1617e924841b 49624 utils optional
m17n-lib-bin_1.2.0-4_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCvtf74QYOB7JaXPERAh5SAJ9Ep0OT4Y7JGvOjlnfybcKKgxtrFgCeJWKd
+HiNIgpgSKXhZPbfsBKVGRQ=
=D+P4
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]