groff
[Top][All Lists]
Advanced

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

Re: [Groff] MSVC port still maintained?


From: MARSHALL Keith
Subject: Re: [Groff] MSVC port still maintained?
Date: Wed, 19 Nov 2003 13:49:25 +0000

Werner,

This particular error is caused by a subtle inconsistency between the 
definition of HAVE_DECL_SYS_SIGLIST, placed in config.h by the autoconf 
macro, and the usage of this in pipeline.c; it is fairly trivial to fix, 
with a patch to pipeline.c (based on a snapshot downloaded during the 
evening of Monday 17 Nov, at about 20h00 GMT)

@@ -529,7 +530,7 @@
   static char buf[sizeof("Signal ") + 1 + sizeof(int) * 3];
 
 #ifdef NSIG
-#ifdef HAVE_DECL_SYS_SIGLIST
+#if HAVE_DECL_SYS_SIGLIST
   if (n >= 0 && n < NSIG && sys_siglist[n] != 0)
     return sys_siglist[n];
 #endif /* HAVE_DECL_SYS_SIGLIST */

I have also noted another problem in pipeline.c, relating to the use of 
function itoa().  I also have a quick hack to get around it, but I think 
we need a more in depth discussion, to define a more appropriate solution. 
 I will have to get back to you later, on this one.

Best regards,
Keith





Alejandro López-Valencia <address@hidden>
Sent by: address@hidden
19-11-2003 12:07 PM

 
        To:     "Werner LEMBERG" <address@hidden>
        cc:     <address@hidden>, <address@hidden>
        Subject:        Re: [Groff] MSVC port still maintained?


On Wednesday, November 19, 2003 6:21 AM [GMT-5],
Werner LEMBERG <address@hidden> wrote:

>>
>> pipeline.c:533: error: `sys_siglist' undeclared (first use in
this
>> function)
>
> Are you sure that you have done `./configure'?  On 2003-11-09 I've
> changed the handling of sys_siglist to use an autoconf macro
instead
> of a selfmade function.

Yes, a make distclean and configure.

_______________________________________________
Groff maillist  -  address@hidden
http://ffii.org/mailman/listinfo/groff




reply via email to

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