Commit Graph

532575 Commits

Author SHA1 Message Date
Nate Williams
18b45b34dc Really fixed the obj/noobj problems in CVS, and also made it so a
make install did not install libcvs in /usr/lib, since it has no
reason to do that.
1993-07-06 19:12:57 +00:00
nate
bf3a05faf0 Removed egrep since the new grep is just a link to it w/out any changes
anymore
1993-07-06 18:53:50 +00:00
Nate Williams
67b32f8a64 Removed egrep since the new grep is just a link to it w/out any changes
anymore
1993-07-06 18:53:50 +00:00
nate
acb9893ca7 Left an ugly in the Makefile 1993-07-06 18:45:59 +00:00
Nate Williams
ef7cc70c15 Left an ugly in the Makefile 1993-07-06 18:45:59 +00:00
cvs2svn
bce1a0a51a This commit was manufactured by cvs2svn to create branch 'FSF'. 1993-07-06 18:45:28 +00:00
cvs2svn
c0712724bc This commit was manufactured by cvs2svn to create tag 'grep_2_0'. 1993-07-06 18:45:27 +00:00
nate
a166e91d63 Update GNU grep to version 2.0 1993-07-06 18:45:26 +00:00
Nate Williams
c0db29cc59 Update GNU grep to version 2.0 1993-07-06 18:45:26 +00:00
nate
28938b8198 Don't echo anything when doing null args, since not doing anything is
more like the standard behavior.
1993-07-06 18:36:50 +00:00
Nate Williams
b0accfccb4 Don't echo anything when doing null args, since not doing anything is
more like the standard behavior.
1993-07-06 18:36:50 +00:00
nate
8070683509 #ifdef out an unecessary function prototype that conflicted with the
system prototype. (Needed for gcc1)
1993-07-06 18:00:18 +00:00
Nate Williams
574af12988 #ifdef out an unecessary function prototype that conflicted with the
system prototype. (Needed for gcc1)
1993-07-06 18:00:18 +00:00
nate
b2b980b0d9 Fixed netstart to have a hard-coded localhost address.
This fixes situations where you don't have a correct localhost in
your nameserver or no name-server.
1993-07-05 21:43:35 +00:00
Nate Williams
961fadf86f Fixed netstart to have a hard-coded localhost address.
This fixes situations where you don't have a correct localhost in
your nameserver or no name-server.
1993-07-05 21:43:35 +00:00
root
a0b680d9d9 Increased default data size (DFLDSIZ) to 16MB. Need to rebuild libutil,
kernel, ps and w for this to work!
1993-07-03 21:21:35 +00:00
Charlie Root
c26491ecf4 Increased default data size (DFLDSIZ) to 16MB. Need to rebuild libutil,
kernel, ps and w for this to work!
1993-07-03 21:21:35 +00:00
root
7048cfb1c8 Added ${COPY} knob to the install commands 1993-07-03 00:21:21 +00:00
Charlie Root
dcd59e0868 Added ${COPY} knob to the install commands 1993-07-03 00:21:21 +00:00
root
c14f660fa9 New manual page system 1993-07-02 06:44:07 +00:00
Charlie Root
99f770b8b8 New manual page system 1993-07-02 06:44:07 +00:00
alm
ffd56febcd Consolidate mark code - no functional changes or fixes. 1993-07-02 06:16:28 +00:00
Andrew Moore
95c745afb2 Consolidate mark code - no functional changes or fixes. 1993-07-02 06:16:28 +00:00
root
20c65c6730 New manual page system 1993-07-02 06:10:31 +00:00
Charlie Root
24cd262d1a New manual page system 1993-07-02 06:10:31 +00:00
root
64fa45ecd0 New manual page system 1993-07-02 05:48:19 +00:00
Charlie Root
0e6051a5f4 New manual page system 1993-07-02 05:48:19 +00:00
root
8f0189751c New manual page system 1993-07-02 04:54:10 +00:00
Charlie Root
845c052a41 New manual page system 1993-07-02 04:54:10 +00:00
root
bce6cf20b1 New manual page system 1993-07-02 04:32:41 +00:00
Charlie Root
ed68e4229d New manual page system 1993-07-02 04:32:41 +00:00
root
aa99538e13 New manual page system 1993-07-02 04:22:44 +00:00
Charlie Root
8e9bf0f35a New manual page system 1993-07-02 04:22:44 +00:00
nate
d35a5142fa Bruce Evans:
The enclosed diffs implement printing of the floating point state for
the version of gdb-3.5 in 386BSD-0.0.  I don't have gdb for 386BSD-0.1
but I've been told that it is also missing this feature.

The changes are small.  Code to read the FP state from the kernel was
#ifdef'ed out, but it essentially works.  Code to change the FP regs
is still #ifdef'ed out.  It is close to working too.  Printing of the
FP regs was broken because hard reg numbers were confused with stack
offsets.

4. The emulator does not handle FP errors right, and it does not
   communicate the emulated FP state to the rest of the kernel, so
   "info float" shows garbage.
1993-07-01 00:17:55 +00:00
Nate Williams
315615555c Bruce Evans:
The enclosed diffs implement printing of the floating point state for
the version of gdb-3.5 in 386BSD-0.0.  I don't have gdb for 386BSD-0.1
but I've been told that it is also missing this feature.

The changes are small.  Code to read the FP state from the kernel was
#ifdef'ed out, but it essentially works.  Code to change the FP regs
is still #ifdef'ed out.  It is close to working too.  Printing of the
FP regs was broken because hard reg numbers were confused with stack
offsets.

4. The emulator does not handle FP errors right, and it does not
   communicate the emulated FP state to the rest of the kernel, so
   "info float" shows garbage.
1993-07-01 00:17:55 +00:00
nate
be449bcfcc Added (protection) around negative constants, in case a program wants
to use the negative of that constant.

#define NEG_NUM -3
#define SAFE_NEG_NUM (-3)

i = -NEG_NUM;		/* Error --3 */
j = -SAFE_NEG_NUM	/* Okay -(-3) */
1993-06-30 22:59:18 +00:00
Nate Williams
beb7ebb072 Added (protection) around negative constants, in case a program wants
to use the negative of that constant.

#define NEG_NUM -3
#define SAFE_NEG_NUM (-3)

i = -NEG_NUM;		/* Error --3 */
j = -SAFE_NEG_NUM	/* Okay -(-3) */
1993-06-30 22:59:18 +00:00
nate
4bbfb3867b Setting up for updated (usable) FPE atof/vfprintf/vfscanf fixes 1993-06-29 13:34:33 +00:00
Nate Williams
330b151312 Setting up for updated (usable) FPE atof/vfprintf/vfscanf fixes 1993-06-29 13:34:33 +00:00
nate
05148176c2 Fixed a missing letter that causes an error when formatting the document 1993-06-29 10:17:35 +00:00
Nate Williams
634e1387da Fixed a missing letter that causes an error when formatting the document 1993-06-29 10:17:35 +00:00
nate
f9404ce93c ld is moved to src/gnu 1993-06-29 09:58:20 +00:00
Nate Williams
6db721f938 ld is moved to src/gnu 1993-06-29 09:58:20 +00:00
nate
f7bd8bcf61 Added gdb/gas/ld to GNU makefiles
Changed the default install directory to be /usr/bin, instead of the
non-standard /usr/gnu/bin.  Until we fix the rest of the tree, it
breaks things.
1993-06-29 09:54:26 +00:00
Nate Williams
dde0fa550b Added gdb/gas/ld to GNU makefiles
Changed the default install directory to be /usr/bin, instead of the
non-standard /usr/gnu/bin.  Until we fix the rest of the tree, it
breaks things.
1993-06-29 09:54:26 +00:00
nate
8ae31b813c Added the new gas directory 1993-06-29 09:51:23 +00:00
Nate Williams
682642fa09 Added the new gas directory 1993-06-29 09:51:23 +00:00
nate
3d05155a65 Added GNU gdb to src/gnu 1993-06-29 09:48:26 +00:00
Nate Williams
3edf564a32 Added GNU gdb to src/gnu 1993-06-29 09:48:26 +00:00
nate
76b8039b4b Added diff/diff3 to the Makefile 1993-06-29 08:38:38 +00:00