guile-devel
[Top][All Lists]
Advanced

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

Re: Pkgsrc patches: patch-ag


From: Ludovic Courtès
Subject: Re: Pkgsrc patches: patch-ag
Date: Sat, 16 Feb 2008 20:28:11 +0100
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux)

Hi,

Greg Troxel <address@hidden> writes:

> Fix for solaris, but I thinh preserves behavior on C99 machines.
>
>
> $NetBSD: patch-ag,v 1.5 2007/07/20 00:09:22 gdt Exp $
>
> solaris-2.9 does not have stdint.h but does have inttypes.h
>
> --- libguile/c-tokenize.c.orig        2007-06-13 18:00:56.000000000 -0400
> +++ libguile/c-tokenize.c
> @@ -39,7 +39,12 @@
>  #define __STDC_LIMIT_MACROS 1
>  #endif
>  
> +#ifdef HAVE_STDINT_H
> +#include <stdint.h> /* May break IA64 test-noansi-r */
> +#else
>  #include <inttypes.h>
> +#endif

First, the comment and the patch are contradictory.  A bit of googling
seems to confirm the comment, in which case the patch isn't needed.

Second, C99 requires both (Sections 7.18 and 7.8).

Third, the `#include' is within a `#if __STDC_VERSION__ >= 199901L', so
only C99 systems get to include it.

Fourth, this is a Flex-generated file, so it'd be nice to avoid patching
it.

Just to say that I'm dubious about this patch.  :-)

Thanks,
Ludovic.





reply via email to

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