Re: Bug#218039: /usr/bin/make: Clock skew detected warnings

2003-11-01 Thread Dan Jacobson
> Version: 3.80-4
> $ cat Makefile
> a: /proc
>   :
> $ make
> make: Warning: File `/proc' has modification time 2.4e+04 s in the future
> :
> make: warning:  Clock skew detected.  Your build may be incomplete.
> 
> You see, I wanted a file that means 'now', but recent versions of make
> make these worrisome warnings.
> 

> "Manoj" == Manoj Srivastava <[EMAIL PROTECTED]> writes:

Manoj>Why is this a bug, exactly?

OK, then it isn't. Closing the debian bug, and CCing upstream, and
thinking about other solutions.


___
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make


Re: make signal text descriptions

2003-11-01 Thread J. Grant
Hi,

#define SIGINT  2   /* Interactive attention */
#define SIGILL  4   /* Illegal instruction */
#define SIGFPE  8   /* Floating point error */
#define SIGSEGV 11  /* Segmentation violation */
#define SIGTERM 15  /* Termination request */
#define SIGBREAK21  /* Control-break */
#define SIGABRT 22  /* Abnormal termination (abort) */
#define NSIG 23 /* maximum signal number + 1 */
Perhaps if someone could do a test where they try and execute a missing 
exe (replicating the Signal 127), this could be added as a win32'ism.

I noticed on this list list they talk about it being a failed exec:

http://www.cygwin.com/ml/cygwin/2003-06/msg00674.html

If it is a failed exec, could this be added to the list.. if it is 
convention on win32.

Only if you can find MSDN documentation that supports it.
I can't find any documentation, just a link illustrating it again:

http://groups.yahoo.com/group/ntemacs-users/message/13063



In signame.c, this is the piece of code that creates the "Signal 127" 
message in gnumake win32:

  if (signal > 0 || signal < NSIG)
return (char *) sys_siglist[signal];
  sprintf (buf, "Signal %d", signal);
  return buf;




Kind regards

JG



___
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make