[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: texinfo-4.6 patches (Cygwin, AM_MAINTAINER_MODE)
From: |
Eli Zaretskii |
Subject: |
Re: texinfo-4.6 patches (Cygwin, AM_MAINTAINER_MODE) |
Date: |
08 Sep 2003 16:17:18 +0200 |
> Date: Mon, 8 Sep 2003 13:43:29 +0200
> From: Thomas Klausner <address@hidden>
>
> texinfo is a host tool in cross-building NetBSD, and one supported
> host platform is Cygwin. We have one patch for this in CVS; it's
> attached.
Thanks.
However, I think the patch needs to be changed in this part:
> -# define PATH_SEP ";"
> +# ifdef __unix__
> +# define PATH_SEP ":"
> +# define DEFAULT_TMPDIR "/tmp/"
> +# else
> +# define PATH_SEP ";"
> +# define DEFAULT_TMPDIR "c:/"
> +# endif
This change will break the DJGPP port because DJGPP also defines
__unix__, but still uses the DOS/Windows conventions like `;' being
the path separator. So please use something more specific to the
Cygwin build (isn't there some __CYGWIN__ symbol, for example?).