Joerg Wunsch
f1420840d1
Fix a bogon that prevented easy-import from inserting the new module
...
name in alphabetical order (broken by my previous commit).
Pointed out by: asami
1996-04-28 12:32:43 +00:00
John Polstra
55e214c197
When a local symbol that would normally be eliminated by "-x" or
...
"-X" must survive, because of references from relocations, don't
qualify the symbol name with the name of the input file. This
saves some string space. It makes libc_pic.a about 2.4% smaller.
Adapted from a suggestion by Bruce Evans.
1996-04-24 23:31:08 +00:00
Jordan K. Hubbard
4c043bb29e
Change "Found end of tape. Load next tape ..." messages to say
...
"volume" instead of tape. Running cpio off of /dev/fd0 and having
it say "give me the next tape" is kind of ludicrous.. :-)
1996-04-24 21:20:17 +00:00
John Polstra
7aa5215c03
Add a couple of needed X11 libraries. Discovered when trying to build a
...
static version.
1996-04-22 20:24:56 +00:00
John Polstra
dd2b076850
Implement support for LD_PRELOAD in the dynamic linker. Remove
...
descriptions of LD_NO_INTERN_SEARCH and LD_NOSTD_PATH from the manual
page, since they are not supported.
Submitted by: Doug Ambrisko <ambrisko@ambrisko.roble.com>
1996-04-20 18:29:50 +00:00
John Polstra
c049096e82
Implement support for LD_PRELOAD in the dynamic linker.
...
Submitted by: Doug Ambrisko <ambrisko@ambrisko.roble.com>
1996-04-20 18:27:56 +00:00
Mark Murray
01aa0a09a4
Attempt to break a $Log$ snafu where a *** /--- (minus space)
...
was fouling up a comment in the checked-out code.
1996-04-12 11:37:32 +00:00
Mark Murray
2bff10e8b9
Priorities were broken. If there was an Index: line and ***/--- lines
...
with valid names, the ***/---names were taken first.
this broke eg:
Index: foo/Makefile
==========
RCS <blah>
Retrieving <blah>
diff <blah>
*** Makefile <blah>
--- Makefile <blah>
By trying to patch the Makefile in the _curent_ directory, rather than
the one in the foo/ directory.
1996-04-11 10:13:40 +00:00
Mike Pritchard
edf0e5b3f8
Correct some man page xrefs, and some other minor changes to bring some
...
man pages up to mdoc guidelines and fix some minor formatting glitches.
Also fixed a number of man pages to not abuse the .Xr macro to
display functions and path names and a lot of other junk.
1996-04-08 04:18:31 +00:00
Joerg Wunsch
e8b90f0072
Make `easy-import' ready for vendor-branch imports.
...
I'm also going to install the new version on freefall.
1996-04-07 10:22:37 +00:00
Bruce Evans
5669f99f50
Moved the include of <sys/types.h> to before the include of <dirent.h>
...
so that mkisofs will compile when namespace pollution is removed from
<stdio.h>. (<dirent.h> recently became dependent on <sys/types.h>.)
1996-03-29 14:00:25 +00:00
Joerg Wunsch
4e20deaab3
f2c's -krd does not work with f77 wrapper
...
Closes PR # gnu/1101
Submitted by: kargl@troutmask.apl.washington.edu (Steven G. Kargl)
1996-03-27 07:46:04 +00:00
Wolfram Schneider
3974bcb043
Don't count character ``+'' as garbage (c++.1, flex++.1)
...
Submitted by: joerg
1996-03-21 18:17:41 +00:00
Joerg Wunsch
ff910f3507
Fix an infinite loop for empty files in the archive, and handle
...
sparsely stored linked files correctly.
Submitted by: haug@conterra.com (Brian R. Haug)
1996-03-18 23:08:29 +00:00
Joerg Wunsch
8aa07454ea
Several changes to the gethostname module:
...
. rename the function to main'gethostname, so it can be called unqualified,
. strip the trailing \0 character, closes PR # bin/1084,
. a better way to express an insane long string.
Submitted by: Giles Lean <giles@topaz.nemeton.com.au> (except the 1st)
1996-03-18 21:42:31 +00:00
Wolfram Schneider
29b5d06655
delete /usr/local/bin from PATH
...
Submitted by: nate
1996-03-12 23:09:04 +00:00
Wolfram Schneider
ee01e15bb2
delete /usr/ucb from PATH, move /usr/local/bin after /usr/bin
1996-03-12 21:42:40 +00:00
Wolfram Schneider
242e35141e
remove ``whatis''
1996-03-10 18:59:11 +00:00
Wolfram Schneider
d31934acb9
share the code between apropos and whatis
1996-03-10 18:52:33 +00:00
Bruce Evans
7bb6870434
Removed temporary file.
1996-03-01 15:18:55 +00:00
Paul Traina
0f6b2cb3f8
Bring in some of Paul K's fixes for ldconfig from NetBSD-current.
...
This solves the problem of being unable to use shared libraries with dots
in their names before the ".so.<version>" code.
This should be brought into -stable.
There are more changes from Paul that look like they should be included,
but they change the format of the hints file, so I'm not going to bring them
in now (but we should in the future).
Obtained from: pk@netbsd.org
1996-02-26 02:22:33 +00:00
Wolfram Schneider
d37cc74768
print error messages to stderr
...
don't fail if search arguments contain spaces
allow programs from $PATH as PAGER
faster
1996-02-25 23:41:46 +00:00
Bruce Evans
463c7e7ac6
Use ${ECHO} instead of echo' so that
make -s' is fairly quiet.
1996-02-25 20:25:05 +00:00
Joerg Wunsch
20ef00ec9c
Add a small `gethostname' package. It uses __sysctl(2), and thus
...
avoids the kludgy backquotes that are required by now (`hostname`).
Usage:
require "gethostname.pl";
$thishost = &gethostname'gethostname;
1996-02-13 13:17:49 +00:00
Mike Pritchard
a218f99adb
Added a ".Fx" macro to the mdoc package. Usage:
...
.Fx version.rel { , . ; : ( ) [ ]
Example:
The
.Nm xyzzy
command first appeared in
.Fx 2.2 .
Produces:
The xyzzy command first appeared in FreeBSD 2.2.
Suggested by wollman.
1996-02-12 19:25:18 +00:00
Nate Williams
b156b34dfe
Merged in FreeBSD changes.
1996-02-12 06:45:43 +00:00
Nate Williams
0ddab587f5
This commit was generated by cvs2svn to compensate for changes in r14049,
...
which included commits to RCS files with non-trunk default branches.
1996-02-12 06:39:49 +00:00
Nate Williams
cbf3709a42
Sort from GNU textutils 1.14
1996-02-12 06:39:49 +00:00
Mike Pritchard
bcff8e2ae4
Another round of man page cleanups.
...
Down to only about 100 items left to cleanup! :-)
1996-02-12 04:57:03 +00:00
Jean-Marc Zucconi
bf0b336a03
Spelling fixes.
...
This is the man page which has been obtained from NetBSD, not the program.
1996-02-09 21:14:26 +00:00
Mike Pritchard
6fad16fd59
Add some missing MLINKS, correct some cross references, correct some
...
file locations and some minor formatting/style problems.
1996-02-09 16:20:10 +00:00
Paul Traina
2a4a02c0c7
Whoops, do not reference myself.
1996-02-08 21:12:08 +00:00
Paul Traina
a920e92f31
Close docs/1002 - remove bogus cross references
1996-02-08 21:10:07 +00:00
Mike Pritchard
98f63eb3d2
Added entries for some info files that are being installed, but
...
not referenced in the main info menu:
cvs, cvsclient (cvs client/server stuff), diff/patch, gmp (GNU MP math
library).
1996-02-08 20:00:52 +00:00
Paul Traina
961ce31804
Fix bin/pr506 - uname from current system
1996-02-08 06:04:57 +00:00
John Polstra
f8b117f1e4
Update the manual page to reflect the fact that an "Index" line
...
now takes precedence over a context diff header for determining
the name of the file to patch.
1996-02-07 23:47:55 +00:00
Wolfram Schneider
cc54f38c51
making <page>.1 from <page>.man
1996-02-06 23:48:03 +00:00
Wolfram Schneider
12e1f465dd
recursive grep, enabled with -DHAVE_FTS=1
...
enable mmap (-DHAVE_MMAP=1)
1996-02-02 06:45:26 +00:00
Mike Pritchard
7c87ef470d
Correct some manual page cross reference errors. E.g. su is a section
...
one man page, not section eight. This is the first round of such changes
and only fixes man pages in manual section one.
1996-02-02 00:26:12 +00:00
Mike Pritchard
24b0124f19
Fix the ".Os" macro to not display "BSD Experimental" if no arguments
...
are specified. Just "BSD" is displayed instead.
1996-02-01 18:04:22 +00:00
Mike Pritchard
6f151a1436
Remove groff/tmac/mm.diff - it is just a small file containing a context
...
diff that was probably mistakenly committed when the package was brought in.
1996-01-31 21:07:22 +00:00
Mike Pritchard
83d3a958bf
Updated the ".St -ansiC" macro to report "ISO 9899: 1990 (``ISO C'')"
...
You can also specify -iso9899, or -isoC. Use -ansiC-89 if you still need
the X3.159-1989 string reported.
Suggested by Garrett Wollman.
1996-01-31 20:55:35 +00:00
Mike Pritchard
fb87014e2d
Teach the .Os macro about FreeBSD and our releases. E.g.
...
.Os FreeBSD 2.1
will now display "FreeBSD 2.1" at the bottom of the man page,
instead of just "FreeBSD".
Added a bunch of missing standards to the .St macro.
4.4BSD is no longer "BSD Experimental".
Obtained from: Partially obtained from NetBSD & 4.4BSD-lite2
1996-01-31 16:34:53 +00:00
Wolfram Schneider
98b1043eab
man.1 depend on man.man
1996-01-24 00:22:27 +00:00
Wolfram Schneider
7848c5e3b3
manpath.1 depend on manpath.man
1996-01-24 00:18:29 +00:00
Joerg Wunsch
09a9d67790
`-w' was actually a flag, not an option...
1996-01-23 21:27:39 +00:00
Joerg Wunsch
216f442d13
Add a hint that the -w flag to catman(1) is actually the command
...
wakewhatis(1) for us.
Closes PR # docs/966
Submitted by: obrien@cs.ucdavis.edu (David E. O'Brien)
1996-01-23 21:09:39 +00:00
Bruce Evans
5d391de1d4
Search section 9.
1996-01-23 14:03:26 +00:00
Wolfram Schneider
a270abb407
Add missing manpage zgrep.1 and links zegrep.1, zfgrep.1
...
Add missing links zegrep and zfgrep
1996-01-23 01:00:37 +00:00
Mike Pritchard
3f1cd88fb3
Change the reference to less(1) (which may not be installed) to more(1).
...
Closed PR# 847.
1996-01-22 09:25:45 +00:00