add support for nanosecond timestamps on *BSD systems.

2000-10-10 Thread J.T. Conklin
The enclosed patch adds support for nanosecond timestamps on *BSD systems. Since *BSD uses st_mtimespec and Solaris uses st_mtim, this required AC_STRUCT_ST_MTIM_NSEC to pass the toplevel field name instead of just tv_nsec (or equiv). --jtc 2000-10-10 J.T. Conklin <[EMAIL PROTECTED

Weird "override" behaviour

2000-10-10 Thread Peter Eisentraut
peter ~$ cat Makefile override FOO := foo FOO += bar default: @echo $(FOO) peter ~$ make foo *** but *** peter ~$ cat Makefile FOO := foo override FOO += bar default: @echo $(FOO) peter ~$ make foo bar (both 3.76.1 and 3.79.1) I'd argue the first is wrong, but at least

Re: make core-dumps

2000-10-10 Thread Paul D. Smith
I believe this has already been fixed in later versions ob GNU make. Please try the latest (3.79.1) and see if you continue to see the problem. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips