bug-bison
[Top][All Lists]
Advanced

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

Re: ANNOUNCE: port of alpha bison-2.0


From: Eli Zaretskii
Subject: Re: ANNOUNCE: port of alpha bison-2.0
Date: Wed, 12 Jan 2005 08:38:57 +0200

> From: "Juan Manuel Guerrero" <address@hidden>
> Date: Tue, 11 Jan 2005 21:56:54 +0200
> 
> The announce restriction to djgpp-workers is intentional.
> This is a port of the actual alpha release of bison.
> Starting with bison-1.35, the authors have decided to remove any support for
> non-posix systems like msdos/djgpp, MingW, etc. My patch for djgpp support
> for bison-1.875 has consequently been rejected but they offered my a djgpp
> directory to include all the djgpp specific files.
> Now, this port is the attempt to adapt the previous patch to the actual code
> and to the actual coding conditions.

Thanks for working on that.

Now, let me see if I understand: The package you put on
ftp.delorie.com has several files in its djgpp/ directory.  Of these,
only 4 files have any relation to the Bison sources:

 . the file `diffs' with minor patches to system.h and output.c
 . the files subpipe.[ch]

The rest are documentation and config.* files whose place is indeed in
a subdirectory (as you well know, several other GNU projects, which
did not drop DJGPP support, have these files in such a subdirectory).

The patches in `diffs' include, in addition to the equivalent of
subpipe.[ch], the following 2 small changes:

 . a 3-line patch to output.c that calls a function conditioned on
   HAVE_WORKING_VFORK and HAVE_WORKING_FORK being defined to zero.
 . a patch to system.h that removes a 2-line block conditioned by
   MSDOS and adds a different 2-liner conditioned by __DJGPP__.  The
   added block uses a Posix pathconf function to determine the value
   of TAB_EXT and OUTPUT_EXT macros.

Is this description accurate?

If it is, then I'm bewildered why similar patches were rejected by the
Bison maintainers.  The 3-line patch to output.c (actually, a one-line
patch if you don't count the preprocessor directives) is a no-brainer,
and is based on HAVE_* macros determined by the configure script, not
on ugly OS-dependent conditions; many GNU projects do that for systems
whose FORK implementation is buggy.  It is possible, with some minimal
effort, to rewrite djgpp/subpipe.[ch] files so that the result would
be usable on any reasonably portable platform that lacks a working
fork/vfork, not only on DJGPP.

system.h already has MSDOS-conditioned parts, so a claim that DOS,
MinGW and other non-Posix systems are ``not supported'' sounds
strange.  In any case, the __DJGPP__ condition could be removed and
the run-time definition using pathconf could be used on all platforms,
since pathconf is a Posix function, while relying on some minimal
file-name length being supported without checking first seems unwise
at best.

Could someone of the Bison maintainers please tell why Juan's patches
were rejected?  Would changing those patches in the sprit outlined
above be acceptable?




reply via email to

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