mycroft
62ddceb6fc
Yah, yah...
1993-07-11 09:53:44 +00:00
mycroft
7d3cf97d73
Oops. Back out clist changes, but leave the bug fix.
1993-07-11 09:45:07 +00:00
cgd
4d187f65ae
DDB makes these kernels too large. damn.
1993-07-11 09:03:13 +00:00
cgd
0836388ff0
if no symbols present, don't complain, and exit with 0 exit status.
...
that way we can use dbsym from kernel makefiles and actually pay attention
to its errors...
1993-07-11 08:43:34 +00:00
cgd
cc86d5be93
don't ignore errors from dbsym... it might say that, e.g. there's
...
not enough symbol space!
1993-07-11 08:42:22 +00:00
mycroft
dd71ecc3aa
This is so utterly revolting I refuse to describe it, except to say that it
...
fixes the problem of console output hogging the CPU.
1993-07-11 07:54:47 +00:00
cgd
cfb32a6bf6
fix the cat bug found by mycroft in a more asthetically pleasing
...
way... also turn "Header" into "Id" for RCS...
1993-07-11 07:47:40 +00:00
cgd
1695b91b15
need more space for symbols than DDB normally gives you...
1993-07-11 07:28:09 +00:00
cgd
daacc668f9
re-add two changes which had been deleted by commit of r1.7
1993-07-11 07:22:52 +00:00
mycroft
3567ef561d
Work correctly if a write() comes up short.
1993-07-11 06:36:20 +00:00
cgd
3e2b1078a3
kill an extraneous # which was annoying cpp
1993-07-11 06:09:48 +00:00
cgd
d27033e23c
install as "cc", "cpp", etc. and make sure man & program links are right
1993-07-11 04:21:12 +00:00
cgd
69325b3c37
forget gcc, use gcc2
1993-07-11 04:12:34 +00:00
cgd
a4e5b730b9
fix makefile man page bogosities, and add a "VERSION" file
1993-07-11 03:22:16 +00:00
mycroft
37fbd45af1
Remove a spurious `unknown' that was screwing people over.
1993-07-10 21:23:36 +00:00
brezak
c17cb39f9c
Allow SYS_INCLUDES={copies,symlinks} choice in bsd.own.mk.
1993-07-10 03:56:10 +00:00
brezak
083cf2243a
Fix some probs with stack tb's. Deal with syscalls.
1993-07-10 03:26:44 +00:00
brezak
98628d1c90
Print symbolic args and line no's in stack traces.
1993-07-10 03:25:45 +00:00
cgd
5a84b475d6
handle the initflags problem in a simple (if twisted) way.
...
also, remind the pagedaemon that it's a daemon, not an r... 8-)
1993-07-10 03:25:03 +00:00
brezak
bb39e46611
Print symbolic args and line no's in stack traces.
1993-07-10 03:25:02 +00:00
mycroft
842b58edb5
Change the names of processes 0 and 2.
1993-07-10 02:48:57 +00:00
brezak
b5236e7d0f
Roundup stack len to naturally aligned address. This fixes emacs aborting due to an odd address in alloca'ed memory.
1993-07-10 02:07:48 +00:00
cgd
892404628d
patch from Paul Kranenburg <pk@cs.few.eur.nl> so that if given a kernel
...
name, kvm_mkdb will work properly.
1993-07-10 01:16:15 +00:00
mycroft
3a67833dd8
Enable #pragma pack for building NetBSD and 386BSD kernels.
1993-07-10 01:06:01 +00:00
mycroft
c37de77947
Clean up deleted files.
1993-07-09 16:03:43 +00:00
jtc
bd8f9f26fc
Look for gzip in gzip subdirectory
1993-07-09 15:57:18 +00:00
mycroft
29ee083082
Clean up deleted files.
1993-07-09 15:55:27 +00:00
jtc
c5848148de
GNU Gzip 1.2.2
1993-07-09 15:47:36 +00:00
brezak
6d65f0bf71
Cleanup warnings and add netbsd kernel name suffix.
1993-07-09 15:24:10 +00:00
mycroft
9033da4fdc
Clean up deleted files.
1993-07-09 15:09:27 +00:00
jtc
64142a4b6a
Moved diff3.c and sdiff.c back into the diff directory. The makefiles
...
for diff3 and sdiff access them through the .PATH: construct. This
allows all the source to be contained in the diff directory, and
should make it a little bit easier to upgrade to newer versions of diff.
1993-07-09 15:09:04 +00:00
paul
a15bb972ff
Removed g++ from subdirs since gcc-2.4.5 will be used instead
1993-07-09 13:32:33 +00:00
paul
4930f00d3b
gcc-2.4.5
1993-07-09 13:11:49 +00:00
cgd
aacbd3b3e3
don't include an extra atof.c...
1993-07-09 10:09:31 +00:00
cgd
49693da854
update for better FP routines, from AT&T & elsewhere
1993-07-09 09:40:07 +00:00
mycroft
965a95338b
Clean up deleted files.
1993-07-09 09:40:01 +00:00
cgd
4cbf5e04e2
update for better FP routines, from AT&T & elsewhere
1993-07-09 09:39:13 +00:00
alm
75de25bb93
added Andrew Chernov's patch set:
...
Standard curses library use eight bit for standout mode, so
8-bit characters displays like highlighted 7-bit characters.
This patch produce library which is fully compatible with all curses
programs and add 8-bit chars to all input/display functions.
---
I don't think, that any programs wish to use internal curses
attribute _STANDOUT directly, in expressions like:
addch( ch | _STANDOUT );
Normal interface use standout() and standend() functions instead.
Many programs use 'char' type (with sign extention) for input characters
and sign extention becomes _STANDOUT mode in this case.
So, I refuse this future and allow 8-bit characters for programs,
which is designed for 7-bit only ('char' type using instead of
'unsigned char').
---
This small patch fix unpleasant standard curses bug:
curses can't expand TAB at all (but tries).
A man who wrote this curses misplace SYNC_IN and SYNCH_OUT,
this patch exchange macro calls.
This patch useful for standard 7-bit curses too, for this
you must delete '_' symbol before waddbytes and apply patch.
---
Oh, NO! This curses are really buggy!
This small patch fix following problem:
[ assumed scrollok(stdscr, TRUE) ]
when addch(ch) at lower right corner of screen, curses are realy
gone mad instead if simple scrolling... Curses code assumed that
this will be done correctly, but implement it with two bugs.
1993-07-09 05:34:14 +00:00
cgd
cb880ccb94
fix evil interaction with new physio; don't set error bit for short reads.
1993-07-09 04:28:55 +00:00
mycroft
6bb6d2e7bb
Add comment about oddity in find for anyone who might wonder.
1993-07-09 04:27:33 +00:00
mycroft
b81128b96d
Be careful not to copy CVS files.
1993-07-09 04:24:28 +00:00
mycroft
25b5cffd48
Clean up deleted files.
1993-07-09 03:15:10 +00:00
mycroft
a2954c5519
Clean up deleted files.
1993-07-09 02:42:23 +00:00
mycroft
56af0a290d
Clean up deleted files.
1993-07-09 02:19:26 +00:00
jtc
d0159b7b6c
use rcs 5.6.0.1
1993-07-09 02:05:20 +00:00
jtc
8a6fe8365f
GNU RCS 5.6.0.1
1993-07-09 01:56:50 +00:00
mycroft
1c33fddc0b
Oops.
1993-07-08 22:53:05 +00:00
jtc
004c711f39
compile sdiff too..
1993-07-08 20:15:41 +00:00
jtc
d6c40c8bdf
Update to GNU sdiff 2.3
1993-07-08 20:14:33 +00:00
mycroft
45dbbd544b
Clean up deleted files.
1993-07-08 20:14:25 +00:00