asmodai
42be6ba036
Synch: Add $FreeBSD$.
2001-02-07 21:58:16 +00:00
ru
9a8eefac4e
1. Disable hyphenation on a dash (`-') character in macro arguments.
...
2. Disable recognition of end-of-sentence characters in text-type
macro arguments.
3. Fix the missing space bug when an end-of-sentence character was
followed by another punctuation character.
4. Fix the bug where hyphenation was left disabled after .Re.
Obtained from: mdocNG
2001-02-07 17:45:22 +00:00
ru
02c6bbd122
Add a missing line-break request so that -ragged
...
-compact lists always start from the new line.
Example:
foo
.Bd -ragged -compact
bar
.Ed
Produced:
foo bar
Now produces:
foo
bar
2001-02-07 11:26:57 +00:00
asmodai
9bb829b9c2
Fix typo: compatability -> compatibility.
...
Compatability is not an existing english word.
2001-02-06 12:05:58 +00:00
asmodai
db24d83a1c
Fix typo: seperate -> separate.
...
Seperate does not exist in the english language.
Submitted to look at by: kris
2001-02-06 10:39:38 +00:00
asmodai
bd4658fe52
Fix typo: wierd -> weird.
...
There is no such thing as wierd in the english language.
2001-02-06 09:32:26 +00:00
darrenr
eab84cc9bf
fix conflicts
2001-02-04 14:26:56 +00:00
darrenr
9bdf853b44
This commit was generated by cvs2svn to compensate for changes in r72003,
...
which included commits to RCS files with non-trunk default branches.
2001-02-04 14:25:38 +00:00
darrenr
5e62aa9b3d
Import IP Filter update
2001-02-04 14:25:38 +00:00
ru
9099bb40b9
mdoc(7) police: split punctuation characters + misc fixes.
2001-02-01 17:12:45 +00:00
ru
4a866047a5
Make the exclamation mark (`!') a recognizable punctuation character.
...
Obtained from: mdocNG
2001-02-01 16:17:06 +00:00
asmodai
42ae93a1b3
Update port_after.h to reflect FreeBSD values.
2001-01-30 12:28:21 +00:00
asmodai
23170169ed
Resolve conflicts after import.
2001-01-28 23:06:48 +00:00
asmodai
d203d18dcd
This commit was generated by cvs2svn to compensate for changes in r71756,
...
which included commits to RCS files with non-trunk default branches.
2001-01-28 23:00:22 +00:00
asmodai
1f243835b5
Virgin import of BIND v8.2.3-REL
2001-01-28 23:00:22 +00:00
jdp
bc22907b88
Make the "-pthread" option work again, now that libc_r has to be
...
linked in addition to libc rather than instead of libc.
Ideally, "-pthread" would now be equivalent to adding "-lc_r" to the
end of the link command. But it is slightly different in this
implementation. Adding "-lc_r" to the link command would produce a
"ld" command line containing this:
... -lc_r /usr/lib/libgcc.a -lc /usr/lib/libgcc.a ...
but this implementation of the "-pthread" option produces this:
... /usr/lib/libgcc.a -lc_r -lc /usr/lib/libgcc.a ...
It would be possible to make them identical, but that doesn't fit
as nicely into GCC's way of doing things. I don't think the ordering
change will make any difference in practice.
2001-01-25 18:57:13 +00:00
ben
8b81a8de4a
Add entry for libcipher.
2001-01-24 14:26:06 +00:00
ru
ea8b4c8afa
-pthread -> -lc_r
2001-01-24 13:55:37 +00:00
gshapiro
ad5bf7eb4d
Update FreeBSD import README
2001-01-21 22:22:31 +00:00
gshapiro
730bb5b301
Repair 8.11.2 merge conflicts
2001-01-21 22:21:43 +00:00
gshapiro
20d291fa11
This commit was generated by cvs2svn to compensate for changes in r71345,
...
which included commits to RCS files with non-trunk default branches.
2001-01-21 22:17:06 +00:00
gshapiro
167a83e7b8
Import sendmail 8.11.2
2001-01-21 22:17:06 +00:00
ru
1d60a70335
mdoc(7) police: removed leading whitespaces that are not inside
...
Bd/Ed; these hardly degrade the quality of the produced output.
2001-01-19 14:15:40 +00:00
ru
22fd305a11
Add librpcsvc.
2001-01-17 18:19:06 +00:00
dwmalone
68ce7ee3c7
Make tcpwrappers use the magic in syslog.h for getting syslog facility
...
and level names.
Add FreeBSD tag.
PR: 24218
Approved by: markm
2001-01-14 23:00:59 +00:00
ru
b1e00d918d
Reduce diffs (mostly whitespace) to mdocNG.
...
Obtained from: mdocNG through NetBSD
2001-01-12 15:20:26 +00:00
ru
1d8c111bbc
Make .Ft and .Vt macros accept punctuation characters as
...
arguments, make .Vt usable outside the SYNOPSIS section.
Obtained from: mdocNG (not yet submitted for inclusion)
2001-01-12 15:14:28 +00:00
ru
76593715be
Fixed the ``undesirable hyphenation'' problem, most noticeable with Xr.
...
Obtained from: mdocNG
2001-01-11 09:18:31 +00:00
ru
69bbe898a0
Fixed the bug in D1 macro where it would eat its first (text) argument.
...
Obtained from: mdocNG
2001-01-11 09:16:28 +00:00
ru
225d61e4bb
Prepare for mdoc(7)NG.
2001-01-10 16:51:28 +00:00
ru
52d3c978bb
Prepare for mdoc(7)NG.
2001-01-10 14:18:12 +00:00
ru
e798d09d33
Prepare for mdoc(7)NG.
2001-01-10 14:01:39 +00:00
archie
f2bdf7f9d6
When pcap_compile() detects an error, it longjmp()'s out of the
...
scanner/parser. FreeBSD recently made 'flex' its default implementation
of 'lex'. One of the incompatibilities of 'flex' vs. 'lex' is that
if you longjmp() out of the scanner, you must call yyrestart()
before doing another scan (as documented in flex(1)). So add an
invocation to yyrestart() in lex_init(). This change should be
backwards compatible with the original 'lex'.
PR: bin/24116
2001-01-07 00:26:32 +00:00
obrien
ab7b9783bf
Upgrade instructions that describe the 11-July-2000 import.
2001-01-04 11:21:44 +00:00
ben
a3d899406c
more(3) -> more(1), and add $FreeBSD$
...
PR: 24033
Submitted by: Rich Morin <rdm@cfcl.com>
2001-01-03 18:32:10 +00:00
obrien
f51261a1d7
Merge rev 1.2 (-fformat-extensions); 1.{7,9} (complain about -O2 on the
...
Alpha & FORCE_OPTIMIZATION_DOWNGRADE); 1.8 (-Wnon-const-format)
into GCC 2.95.3(RC#1).
2001-01-03 18:05:31 +00:00
obrien
43754d770e
Merge gcc.2.95.3-test1 changes onto mainline
2001-01-03 17:17:01 +00:00
obrien
c0081e12ea
Merge gcc 2.95.3-test1 changes onto vendor branch
2001-01-03 17:17:00 +00:00
obrien
4e21a652d8
This commit was generated by cvs2svn to compensate for changes in r70635,
...
which included commits to RCS files with non-trunk default branches.
2001-01-03 17:16:04 +00:00
obrien
24b5a38679
Enlist the FreeBSD-CURRENT users as testers of GCC 2.95.3 Release Candidate #1
2001-01-03 17:16:04 +00:00
ru
da27cfab4f
Fixed the ``no space after a .Fl'' problem.
...
Example:
.Fl flag .
The space is missing.
Obtained from: mdocNG
2000-12-15 14:57:11 +00:00
alfred
dfeae8c4d8
Adapt to new struct kinfo_proc and unbreak world.
...
Apologies to: darrenr who is maintainer
2000-12-14 23:35:57 +00:00
obrien
e1d416af72
Import of a GCC 2.96 snapshot taken from the trunk of the FSF GCC anoncvs
...
server on 11-July-2000, at 17:32 Zulu.
This is the last point [that I know of] that Cygnus synced their internal
IA-64 GCC tree with the public FSF one.
2000-12-14 21:42:21 +00:00
obrien
d90fa4a206
This commit was generated by cvs2svn to compensate for changes in r70029,
...
which included commits to RCS files with non-trunk default branches.
2000-12-14 21:42:21 +00:00
ru
480ddbdd9f
Prepare for FreeBSD 4.3, we already have the manpage that refers to it.
2000-12-14 11:50:42 +00:00
assar
36a2de7dc2
(scrub_env): change to only accept a listed set of variables,
...
including only non-filename contents for TERMCAP
2000-12-10 20:50:20 +00:00
ru
bf36ab6066
Do not duplicate our efforts checking FreeBSD version. For a new version,
...
simply define the empty string before the .Fx macro definition, like this:
.ds Fx*4.3
2000-12-06 18:31:21 +00:00
ru
861bdefd54
Install the stock (as supplied by groff(1) distribution) tmac.an
...
and tmac.andoc files. The man(1), catman(1) and bsd.man.mk have
been modified to call groff(1) with -mandoc argument.
2000-12-06 17:02:33 +00:00
ru
7a8878e3df
Backout rev 1.2 (emulate :o' and
/o' letters using 'o'),
...
since they are already emulated in tmac.tty-char.
2000-12-06 12:45:10 +00:00
ru
0f5edd4324
Reduce the diffs with the stock (FSF) version.
2000-12-06 09:32:10 +00:00