bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: new module stdlib


From: Bruno Haible
Subject: Re: new module stdlib
Date: Sun, 18 Feb 2007 22:02:28 +0100
User-agent: KMail/1.5.4

Hi Jim,

> I don't have time to look into it now, but this seems to
> be the cause of some new coreutils buildbot failures, e.g.,
> 
>   http://proulx.com:9000/i686%20gnu-linux%20full/builds/753/step-compile/0
> 
> I see the failure locally, too.

Thanks for the quick heads-up. This fixes it. (Obviously modeled after
Paul's same workaround in time_.h :-))

2007-02-18  Bruno Haible  <address@hidden>

        * lib/stdlib_.h: Handle glibc's special invocation convention
        specially.

--- lib/stdlib_.h       18 Feb 2007 15:39:54 -0000      1.1
+++ lib/stdlib_.h       18 Feb 2007 20:51:16 -0000
@@ -16,6 +16,11 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
+#if defined __need_malloc_and_calloc
+/* Special invocation convention inside glibc header files.  */
+#include @ABSOLUTE_STDLIB_H@
+#else
+/* Normal invocation convention.  */
 #ifndef _GL_STDLIB_H
 #define _GL_STDLIB_H
 
@@ -83,4 +88,5 @@
 }
 #endif
 
+#endif /* _GL_STDLIB_H */
 #endif





reply via email to

[Prev in Thread] Current Thread [Next in Thread]