shin
67ff6efc68
Fix telnet core dump at invalid service name specified.
...
Added an error check to avoid it.
Approved by: jkh
Submitted by: Robert Muir <rmuir@gibralter.net>
2000-02-07 00:52:49 +00:00
shin
225d233deb
Missing tcp_wrapper IPv6 support seemed to be a bug, so commit it.
...
Now when tcp_wrapper is enabled by inetd -wW,
several accesses which should be permitted are refused only for IPv6,
if hostname is used to decide the host to be allowed.
IPv6 users will be just upset.
About security related concern.
-All extensions are wrapped by #ifdef INET6, so people can completely
disable the extension by recompile libwrap without INET6 option.
-Access via IPv6 is not enabled by default.
People need to enable IPv6 access by changing /etc/inetd.conf at first,
by adding tcp6 and/or tcp46 entries.
-The base of patches are from KAME package and are actually daily used
for more than a year in several Japanese IPv6 environments.
-Patches are reviewed by markm.
Approved by: jkh
Submitted by: Hajimu UMEMOTO <ume@mahoroba.org>
Reviewed by: markm
Obtained from: KAME project
2000-02-03 10:27:03 +00:00
obrien
ef7325f7c9
Import the latest version ehopt.c from the Cygnus Sourceware anoncvs
...
repository (dated 5-3-1999).
This fixes the endless loop the assembler gets in when it is trying to
decide how big part of the exception handling table should be on the Alpha.
This version of this file allows qradiobutton.cpp from qt and widget.cc
from kdelibs11 to be compilable.
2000-02-02 03:10:44 +00:00
obrien
f5eed24e1c
This commit was generated by cvs2svn to compensate for changes in r56944,
...
which included commits to RCS files with non-trunk default branches.
2000-02-02 03:10:44 +00:00
obrien
fc44169a9a
Retire Bison as it is not need to build GCC any more.
...
Ok'ed by: JKH
2000-01-30 19:24:31 +00:00
fenner
c780ea93f3
Merge tcpdump 3.5
2000-01-30 01:05:24 +00:00
fenner
107d567bf3
This commit was generated by cvs2svn to compensate for changes in r56893,
...
which included commits to RCS files with non-trunk default branches.
2000-01-30 00:45:58 +00:00
fenner
54c4a9c9f2
Virgin import of tcpdump.org tcpdump v3.5
2000-01-30 00:45:58 +00:00
fenner
787eaee1ab
Merge libpcap 0.5
2000-01-30 00:43:38 +00:00
fenner
cd005a9569
This commit was generated by cvs2svn to compensate for changes in r56889,
...
which included commits to RCS files with non-trunk default branches.
2000-01-30 00:32:56 +00:00
fenner
aae9bd2bcc
Virgin import of tcpdump.org libpcap v0.5
2000-01-30 00:32:56 +00:00
shin
3859c2231c
Add NI_NAMEREQD flag to getnameinfo() call. Without this flag,
...
getnameinfo() don't return error at name resolving failure.
But it is used at doaddrlookup(-N) case in telnet, error need to be
returned to correctly initialize hostname buffer.
Discovered at checking recent KAME repository change, noticed by itojun.
2000-01-29 18:21:05 +00:00
markm
e72f2900e8
Force installs. This is to allow (semi-)automatic garbage removal by
...
"find /usr/libdata -ctime -N -delete".
2000-01-29 17:27:17 +00:00
bde
62d970a531
Fixed IEXTEN handling in raw mode again. The effect of IEXTEN when
...
ICANON is off is implementation-defined. Under BSD, IEXTEN is
independent of ICANON, so it must be turned off to get "raw" mode.
This was first fixed in rev.1.4 (1995/10/21) of libncurses/lib_raw.c,
but the change was lost in the downgrade to the contrib version.
The fix here is the same as in the old rev.1.4, less style bugs. A
better fix would use cfmakeraw(3) to actually handle all of the
complications for switching to raw mode.
2000-01-29 13:55:02 +00:00
obrien
6995e4285b
Fix our -mprofiler-epilogue code.
...
"The problem is that egcs/gcc-2.95's reorganisation of the prologue and
epilogue code to use rtl instead of output_asm_insn() completely broke our
hooks. rtl is emitted in a different order, only after optimisation, while
output_asm_insn() is emitted immediately. rtl is presumably used so that
the prologue and epilogue can be optimised.
I couldn't find any good examples to copy. gcc's own
FUNCTION_BLOCK_PROFILER still uses output_asm_insn() and seems to be
completely broken. One of the XXX comments points to this.
IIRC, the hacks here basically arrange to emit magic label names; then when
the magic names are output, they are transformed into prologue and epilogue
code."
Submitted by: bde
2000-01-29 13:06:33 +00:00
roberto
8b5a30bd76
Update for ntp 4.0.99b.
2000-01-28 15:13:45 +00:00
roberto
20bb478963
Merge conflicts with the import of 4.0.99b.
2000-01-28 15:02:35 +00:00
roberto
b5b40f9e42
Virgin import of ntpd 4.0.99b
2000-01-28 14:55:50 +00:00
roberto
51214ec4a3
This commit was generated by cvs2svn to compensate for changes in r56746,
...
which included commits to RCS files with non-trunk default branches.
2000-01-28 14:55:50 +00:00
obrien
3050fca7ad
Bump __FreeBSD_version and __FreeBSD_cc_version due to the C++ ABI change
...
in GCC 2.95.2 from -fvtable-thunks to -fno-vtable-thunks by default.
2000-01-27 23:12:38 +00:00
joerg
6ed1daf7e1
Fix a problem that caused the generation of an (almost) empty first
...
page of -mdoc manual pages in troff mode. The problem has been
introduced in rev 1.12; apparently ending a line inside a macro
definition with \c doesn't behave as Bill expected, and troff was
fooled to believe previous output was already pending thus a new page
needed to be emitted. Using a troff comment .\" instead of \c seems
to solve this, alas the brain^Wnice sed(1) magic needs to be taught to
_not_ strip those comments now.
I think -stable is not affected by this.
2000-01-27 17:56:41 +00:00
shin
ce15efb7c0
another tcp apps IPv6 updates.(should be make world safe)
...
ftp, telnet, ftpd, faithd
also telnet related sync with crypto, secure, kerberosIV
Obtained from: KAME project
2000-01-27 09:28:38 +00:00
archie
f63e74b382
Document the -X flag.
2000-01-26 18:55:58 +00:00
archie
769ad54c1d
Add the -X flag to dump the buffer in "emacs-hexl" style,
...
that is, with ASCII character decoding.
Obtained from: OpenBSD
2000-01-26 18:10:21 +00:00
peter
3c3c44af53
Revision 1.3 is now taken care of in the base ncurses source.
2000-01-26 16:55:09 +00:00
peter
eb50977cab
Import ncurses-5.0-release to update the 5.0-prerelease that we had.
2000-01-26 16:43:25 +00:00
peter
4ffed038cc
This commit was generated by cvs2svn to compensate for changes in r56639,
...
which included commits to RCS files with non-trunk default branches.
2000-01-26 16:43:25 +00:00
obrien
d581a449b9
Do not use "DEFAULT_VTABLE_THUNKS". The bugs that have existed since
...
EGCS 1.x have not been worked out. And with 4.0 RELEASE comming quickly
we need C++ to be stable and usable.
2000-01-25 06:58:15 +00:00
ru
ea8b499b29
Quietly delete duplicate Info entries with --quiet.
...
Reviewed by: bde
2000-01-24 16:05:17 +00:00
obrien
8797ccaa10
Merge in fixes from the GCC anoncvs tree.
2000-01-22 16:05:33 +00:00
obrien
d41539bd1f
Merge in the restore pic register fix from the vendor branch.
...
PR: 3441
Submitted by: Mark Diekhans <markd@Grizzly.COM>
2000-01-22 16:04:30 +00:00
obrien
19e1413b5d
Bring in bug fixes from the GCC anoncvs server's "gcc-2_95-branch"
...
branch on Jan 20th, 2000.
2000-01-22 02:59:08 +00:00
obrien
0c931ae0a1
This commit was generated by cvs2svn to compensate for changes in r56385,
...
which included commits to RCS files with non-trunk default branches.
2000-01-22 02:59:08 +00:00
chris
c3602b40ed
- Use proper markup for a section header.
...
- Replace nonexistent OPIE_PROMPT_MAX with OPIE_CHALLENGE_MAX
PR: 16209
Submitted by: Tetsuro Furuya <tfuruya@ppp142197.asahi-net.or.jp>
2000-01-19 21:54:19 +00:00
obrien
06f3b91449
Virgin import of the GCC 2.95.2 compilers
2000-01-17 12:16:41 +00:00
obrien
620cc853d2
This commit was generated by cvs2svn to compensate for changes in r56173,
...
which included commits to RCS files with non-trunk default branches.
2000-01-17 12:16:41 +00:00
ru
61fe52b859
Add upgrade instructions and helper file.
2000-01-17 11:53:54 +00:00
ru
dba8857d58
Update for GNU texinfo 4.0
2000-01-17 10:52:37 +00:00
ru
31780e6c3d
Merge our changes into GNU texinfo 4.0
2000-01-17 10:50:35 +00:00
ru
42d2eadf22
This is the stock GNU texinfo 4.0 file
2000-01-17 10:45:43 +00:00
ru
8638a4ebc8
Remove files not present in last import
2000-01-17 10:42:59 +00:00
ru
b5a89659ea
This commit was generated by cvs2svn to compensate for changes in r56160,
...
which included commits to RCS files with non-trunk default branches.
2000-01-17 10:39:58 +00:00
ru
05f7b4b967
Virgin import of GNU texinfo 4.0
2000-01-17 10:39:58 +00:00
obrien
801d203e37
Update this for the recient import.
2000-01-16 10:22:31 +00:00
obrien
02b61bd46d
Merge rev 1.2 into BC 1.0.5a, which fixes a spelling error.
2000-01-16 10:14:50 +00:00
obrien
09391925ee
GNU has figured out they should fix the bug we fixed in rev 1.2 themselves.
...
So return this file back to the stock version.
2000-01-16 10:10:15 +00:00
obrien
23ef7a8bc9
This commit was generated by cvs2svn to compensate for changes in r56101,
...
which included commits to RCS files with non-trunk default branches.
2000-01-16 10:01:07 +00:00
obrien
9657c835ff
Import GNU bc 1.05a.
2000-01-16 10:01:07 +00:00
obrien
b7100c5789
Only log when there is a real change to the configuration state.
...
Requested and Tested by: unfurl
2000-01-15 22:46:40 +00:00
bde
fc143221f0
Removed redundant declarations again. Fixed in rev.1.5, broken in rev.1.8.
2000-01-14 18:57:33 +00:00
bde
edcb4e358c
Fixed bitrot in K&R support (3 missing __P(())'s defeated the point of 7
...
non-missing ones in <com_err.h> which includes this file).
2000-01-14 18:51:30 +00:00
bde
81c47c06b2
Fixed bitrot in K&R support (1 missing __P(()) defeated the point of 7
...
non-missing ones).
Removed private declaration of __P(()) while I'm here. Include
<sys/cdefs.h> to get the system definition. The privation declaration
would break the system definition if it were different.
2000-01-14 18:28:23 +00:00
guido
c3aa6ac872
Import of ipfilter 3.3.6 (freebsd relevant part)
...
Obtained from: ftp://coombs.anu.edu.au/pub/net/firewall/ip-filter/ip_fil3.3.6.tar.gz
2000-01-13 18:30:37 +00:00
guido
60ab23b038
This commit was generated by cvs2svn to compensate for changes in r55924,
...
which included commits to RCS files with non-trunk default branches.
2000-01-13 18:30:37 +00:00
asmodai
d44028c3f5
Fix dhclient-exit-hooks location. (PR 14253)
...
Add $FreeBSD$ CVS identifier.
PR: 14253
Submitted by: Arcady Genkin
2000-01-13 16:27:20 +00:00
asmodai
6ff8279593
The groff package is not maintained by jjc@jclark.com anymore.
...
Reflect this change in the upgrade file.
2000-01-12 10:35:57 +00:00
asmodai
eabb065743
Fix conflicts which arose during import, also add $FreeBSD$.
2000-01-12 10:26:36 +00:00
asmodai
a7003a9d6e
This commit was generated by cvs2svn to compensate for changes in r55839,
...
which included commits to RCS files with non-trunk default branches.
2000-01-12 09:51:43 +00:00
asmodai
2e2c9047c3
Virgin import of FSF groff v1.15
2000-01-12 09:51:43 +00:00
kris
e5b1a8eb3e
10 X's in mkstemp().
2000-01-10 09:17:46 +00:00
kris
3b6a5fa38a
Use X x X's in mkstemp().
2000-01-10 08:56:01 +00:00
phantom
3f4abe0d33
Teach .Os macro about 3.4-RELEASE and 3.5-RELEASE.
...
Allow to specify major version number only (like ``.Os FreeBSD 3''.
2000-01-07 12:54:00 +00:00
phantom
c07a4a5a76
Teach .Fx macro about 3.4-RELEASE and 3.5-RELEASE
2000-01-07 12:51:34 +00:00
peter
d8b8a4a2a7
I believe this fixes the problem certain people have been seeing when doing
...
checkouts from a local repo and committing via remote cvs. A cvs -d
override of the mismatched CVS/Root files was missing. This is a client
side fix, I'd appreciate it if the folks having trouble with this would
update their cvs client and pay particular attention next time..
2000-01-06 17:57:24 +00:00
ache
06a3f76fce
Oops, fix typo in prev commit
2000-01-06 12:48:48 +00:00
ache
097686da47
Don't set \(hy to char173 for koi8-r
2000-01-06 12:47:21 +00:00
obrien
9569213cd2
Since this has left the vendor branch, sort this incredably disorganized
...
manpage.
2000-01-02 11:13:23 +00:00
obrien
c34ec3d7da
Allow the specification of a prefix for gcc to find all the various bits.
...
If one wishes to anchor the compiler toolchain tree somewhere other than /,
all one needs to do is set "TOOLS_PREFIX" to a different rooting.
Submitted by: marcel (in a different format and reworked by me)
1999-12-29 14:42:46 +00:00
sheldonh
3bc63b4b30
Fix zero-padding for printf formats which include a precision or
...
width.
This is a vendor-supplied patch.
Requested by: bde
Submitted by: Aharon Robbins <arnold@skeeve.com>
1999-12-23 18:24:31 +00:00
obrien
8ed9d0ffe7
Reduce the FreeBSD custom hacks to gcc.c by using the GCC provided methods
...
of changing the search dirs. This also removes an used search dir,
removes unneeded redundancy, and a bugus dir we enherited on the i386
by baseing off of svr4.h.
We went from:
install: /usr/libexec/(null)
programs: /usr/libexec/<OBJFORMAT>/:/usr/libexec/:/usr/bin/:/usr/libexec/
libraries: /usr/libdata/gcc/:/usr/libexec/:/usr/ccs/lib/:/usr/lib/
to:
install: /usr/libexec/(null)
programs: /usr/libexec/<OBJFORMAT>/:/usr/libexec/
libraries: /usr/libexec/:/usr/lib/
1999-12-22 05:00:28 +00:00
phantom
fb59e40253
s/tcpdump/traceroute
...
PR: docs/14523
Submitted by: Adam Morrison <adam@xpert.com>
1999-12-20 16:07:53 +00:00
obrien
48ced86689
Install sendmail.cf into /etc/mail.
...
The current offical Sendmail Inc. version uses /var/mail/ and when we upgrade
our repository to that version, we will get the change. It is best to make
the path change in 4.0-R (which may not have the latest Sendmail Inc. version,
than to change in mid-4.x stream when we may upgrade.
Ok'ed by: Peter (quite a while ago)
1999-12-19 19:55:19 +00:00
obrien
119cfeff30
Use symbolic values rather than constants in TARGET_DEFAULT.
...
Submitted by: bde on -current
1999-12-19 07:40:17 +00:00
obrien
4cced586e8
Use a unified CPP_SPEC.
1999-12-19 06:42:24 +00:00
obrien
76277b31cd
Provide complete coverage in switch statement to quiet -Wall.
1999-12-18 09:56:15 +00:00
grog
07d0cafdf2
Change location of temporary file from /tmp to /var/tmp. This is a
...
repeat of an earlier commit which apparently got lost with the last
import. It helps solve the frequently reported problem
pid 4032 (mail.local), uid 0 on /: file system full
(though there appears to be a lot of space) caused by idiots sending
30 MB mail messages.
Most-recently-reported-by: jahanur <jahanur@jjsoft.com>
Add $FreeBSD$ so that I can check the file back in.
Rejected-by: CVS
1999-12-17 01:18:44 +00:00
obrien
f1e75fd104
Fix my CPP_SPEC synatax screwup.
...
Totally pissed at self: obrien
1999-12-16 02:03:35 +00:00
obrien
fc793cf05b
Remove the defining of __i486__ baesd on TARGET_CPU_DEFAULT and !m386 or m486.
1999-12-15 10:16:25 +00:00
ache
d49556544e
Fix bug with internal functions when locale is active
...
PR: 15370
Reviewed by: no responce from maintainer
Obtained from: perl development sources
1999-12-13 19:11:53 +00:00
peter
d71c51b5fa
Oops. HAVE_INET6_STRUCTS was supposed to be HAS_INET6_STRUCTS. Luckily
...
it was implicitly on because we had AF_INET6 defined.
1999-12-13 15:43:32 +00:00
obrien
9e84904436
Do not add routes for localhost to the `dhclient' controlled interface.
...
Doing so is bogus if the loop-back interface was not configured.
Typically ``network_interfaces="auto"'' will return the list of
interfaces such that "lo0" is not first. Thus there are times when
`dhclient' configs an interface before "lo0" is configured.
Under BSD4.4, there's no need to add the above route, as it will be
automatically generated by the kernel.
PR: conf/14098, misc/15183
Submitted by: luoqi (true identification of the problem)
1999-12-12 01:04:36 +00:00
peter
f76c207acb
Unmangle cvs's MD5* calls.
1999-12-11 15:10:02 +00:00
peter
17ef7b81d6
Take a shot at using mkstemp() since we have a __warn_references() on
...
the other temporary file creation functions..
1999-12-11 14:58:02 +00:00
peter
702fe2212d
Merge error. rcs_lockfile is freed after unlock.
1999-12-11 13:19:17 +00:00
peter
d47f395242
Update for 1.10.7 update.
1999-12-11 13:11:47 +00:00
peter
aab6aeadd4
Merge cyclic changes from 1.10.7 into our mainline. I did this seperately
...
as cvs update -j had kittens over the whole thing and I ended up merging
it by hand.
1999-12-11 13:00:18 +00:00
peter
206fbe27a1
Merge cyclic changes for 1.10.7 only our mainline.
1999-12-11 12:50:10 +00:00
peter
474a3106d4
Revert to vendor version. Sigh, this left the vendor branch because
...
of a fix for a y2k non-problem. :-(
1999-12-11 12:42:49 +00:00
peter
b38569ff99
This commit was generated by cvs2svn to compensate for changes in r54427,
...
which included commits to RCS files with non-trunk default branches.
1999-12-11 12:24:21 +00:00
peter
784ea5066c
Import cvs-1.10.7. There are a number of nasty bugs that have been fixed.
...
Obtained from: cyclic.com
1999-12-11 12:24:21 +00:00
roberto
4ca5852837
This is the list of files excluded from the original tarball.
...
Reviewed by: peter, obrien
1999-12-09 13:26:04 +00:00
roberto
9d54c9a66c
Commit a fix several warnings on alpha for sysctlbyname arguments. It could
...
have resulted in stack corruption. A patch has been sent to the ntp author
for inclusion in next version.
Obtained from: peter
1999-12-09 13:17:01 +00:00
roberto
a7f3c64efa
Please all welcome the long-awaited upgrade from our ancient xntpd 3.4f
...
to a brand new and shiny ntpd 4.0.98f.
I got tired of waiting for 4.1.0 and there is the feature freeze deadline
so here it is. This is the contrib/ part of the upgrade. The Makefile glue
will be added very soon in usr.sbin.
It builds and runs on both i386 and alpha (Thanks Peter!).
The bad news is that manpages no longer exist, everything is in HTML. I'll
commit the text version of each HTML file in /usr/share/doc/ntp soon to have
at least the help files w/o needing to get the entire contrib/ntp tree.
I'll commit FREEBSD-Xlist as soon as I can skip over $FreeBSD$ checks...
Reviewed by: peter, obrien
Pushed by: phk
1999-12-09 13:13:26 +00:00
roberto
ef64b99e84
Virgin import of ntpd 4.0.98f
1999-12-09 13:01:21 +00:00
roberto
8eeba8afa3
This commit was generated by cvs2svn to compensate for changes in r54359,
...
which included commits to RCS files with non-trunk default branches.
1999-12-09 13:01:21 +00:00
peter
e739339ea1
Add maintainer tag, and add a description of a few more things we've
...
added/changed locally for FreeBSD.
1999-12-08 16:49:38 +00:00
obrien
eb52c51753
Style nit.
1999-12-08 06:42:50 +00:00
obrien
1faaa28bba
Document what "X" in the table means.
1999-12-08 06:42:08 +00:00
marcel
43f39f8759
When a Makefile.PL is evaluated in a subdirectory (ext/SDBM_Files/sdbm)
...
do not prepend '../' to PERL and FULLPERL. It breaks cross-building.
Approved by: markm
1999-12-04 12:35:56 +00:00
obrien
4dbe46020b
Call isspace() directly to get rid of an objectionable include.
1999-12-04 08:44:05 +00:00
peter
370aed25b5
Document the .cvsrc "cvs" option for global options.
1999-12-04 02:15:30 +00:00
obrien
63450d9255
Support the environtmental var "CVS_OPTIONS". Which can hold a set of
...
default options for cvs. These options are interpreted first and can be
overwritten by explicit command line parameters.
Obtained from: GNU Grep 2.3
1999-12-04 01:23:26 +00:00
peter
d948318609
Hardwire HAVE_INET6_STRUCTS rather than probe at compile time. -current
...
has the structures that probe_ipv6 tested for, so this will always be
defined if the standard tests are run.
1999-11-30 04:24:01 +00:00
peter
526e00ec21
Files not in 8.2.2.p5
1999-11-30 03:44:02 +00:00
peter
c6117a178d
Files gone from 8.2.2.p5
1999-11-30 03:41:17 +00:00
peter
9a9bef5e16
Files removed in 8.2.2.p5
1999-11-30 03:40:06 +00:00
peter
3fc00dd03f
Merge changes from vendor branch onto HEAD.
1999-11-30 02:52:56 +00:00
peter
4ef23ce695
Import bind v8.2.2.p5, minus the crypto for the time being. The bind
...
package does have BXA export approval, but the licensing strings on the
dnssafe code are a bit unpleasant. The crypto is easy to restore and bind
will run without it - just without full dnssec support.
Obtained from: The Internet Software Consortium (www.isc.org)
1999-11-30 02:43:11 +00:00
peter
9716636318
This commit was generated by cvs2svn to compensate for changes in r53910,
...
which included commits to RCS files with non-trunk default branches.
1999-11-30 02:43:11 +00:00
obrien
1d683d70e0
* Use getobjformat() rather than manually do what it does.
...
* Don't conditional based on i386, but generalize to all FreeBSD arch's.
* Don't be a.out-centric, but generalize to handle other possible future
formats.
Submitted by: marcel (partial)
1999-11-29 10:41:21 +00:00
brian
306c565c67
Pass the pppoe packets into do_ppp_print correctly.
1999-11-27 18:04:57 +00:00
obrien
46689ca7f0
* Support the environtmental var "DIFF_OPTIONS". Which can hold a set of
...
default options for diff. These options are interpreted first and can be
overwritten by explicit command line parameters.
* Add the "-o" option to specify old-traditional output style.
* Add utility functions for env vars obtained from GNU Grep 2.3h.
1999-11-26 02:51:44 +00:00
peter
f1034aa494
This commit was generated by cvs2svn to compensate for changes in r53696,
...
which included commits to RCS files with non-trunk default branches.
1999-11-25 18:03:05 +00:00
peter
a392fe0bdb
Apply the sendmail 8.9.3 denial-of-service patch which prevents untrusted
...
users from running newaliases. (This is to protect aliases.db against
truncation).
PR: 15088
1999-11-25 18:03:05 +00:00
obrien
5498842a41
Virgin import of the GCC 2.95.1 compilers
...
(gcc/config/i386/freebsd.h renamed to freebsd-aout.h)
1999-11-24 06:24:35 +00:00
obrien
77fa5db577
This commit was generated by cvs2svn to compensate for changes in r53660,
...
which included commits to RCS files with non-trunk default branches.
1999-11-24 06:24:35 +00:00
obrien
722d29dd3f
Virgin import of gcc from EGCS 1.1.2.
...
(renamed to freebsd-aout.h)
1999-11-24 06:23:43 +00:00
obrien
53fe286fed
This commit was generated by cvs2svn to compensate for changes in r53657,
...
which included commits to RCS files with non-trunk default branches.
1999-11-24 06:23:43 +00:00
obrien
cada3a5382
Virgin import of GCC 2.7.2.3's gcc/config/i386/freebsd.h for a.out systems.
...
[This has been renamed to freebsd-aout.h to not conflict with our own
hacked up version.]
1999-11-24 06:22:22 +00:00
obrien
262bec7848
This commit was generated by cvs2svn to compensate for changes in r53654,
...
which included commits to RCS files with non-trunk default branches.
1999-11-24 06:22:22 +00:00
peter
61388a47ab
Fix (I believe) Bill Paul's core dump when using gdb on shared executables.
...
This is an addition to rev 1.5. If lm == NULL, new->lm is uninitialized.
1999-11-22 18:04:53 +00:00
obrien
224187cfed
* Remove a trailing ";" from a macro.
...
* Style cleanup.
1999-11-17 07:18:25 +00:00
obrien
4c6571b53b
This temperary file can die now.
1999-11-17 07:03:32 +00:00
obrien
ff78e4a96e
Fix a minor bogon.
1999-11-15 19:26:58 +00:00
obrien
aad7f00e38
Undo rev 1.13 (define "OBSTACK_CHUNK_SIZE" as getpagesize()).
...
It causes internal compiler errors and sig 11's with GCC 2.95.2.
1999-11-15 07:57:13 +00:00
obrien
7c64544e75
Upgrade support file for GCC 2.95.2.
1999-11-15 04:41:30 +00:00
obrien
9151d1432f
Add rev 1.2 profiling tweaks, to GCC 2.95.2.
1999-11-15 04:33:36 +00:00
obrien
53ecec3782
Use the stock 2.95.2 file here.
...
I cannot determine if our previous (rev 1.2) changes for ObjC are still
appropriate.
1999-11-15 04:28:55 +00:00
obrien
3470fefd25
Bump __FreeBSD_cc_version due to the compiler upgrade.
1999-11-15 04:25:13 +00:00
obrien
196d3fb65e
Make cross-compilation work for Alpha on i386 machines.
...
Note that the optimizer has a bug somewhere. This means that only -O0
works at this time.
Submitted by: marcel
1999-11-14 12:07:57 +00:00
obrien
89cb48b53d
Remove 'SET_ASM_OP' macro, which is unused now and rather harmful
...
for recent Egcs 1.1.x.
Submitted by: simokawa
1999-11-14 12:04:02 +00:00
obrien
0caf21e247
Changes for Alpha and EGCS.
...
* Commonalities with i386, moved to a FreeBSD wide config file.
* Major additions to this file were adapted from Hidetoshi Shimokawa
<simokawa@FreeBSD.ORG>'s Alpha suppliment to the Egcs 1.1.2 port.
1999-11-14 12:01:58 +00:00
brian
2d0abab14d
Support PPPoE.
...
Add a missing comma to the lcp config options table.
1999-11-14 11:28:11 +00:00
obrien
ed15955f8c
Virgin import of the GCC 2.95.1 compilers
1999-11-14 08:33:44 +00:00
obrien
ac8208f082
This commit was generated by cvs2svn to compensate for changes in r53142,
...
which included commits to RCS files with non-trunk default branches.
1999-11-14 08:33:44 +00:00
obrien
163cbd8b5a
Virgin import of gcc from EGCS 1.1.2
1999-11-14 08:31:18 +00:00
obrien
584ae1bbef
This commit was generated by cvs2svn to compensate for changes in r53140,
...
which included commits to RCS files with non-trunk default branches.
1999-11-14 08:31:18 +00:00
ache
91b25fa7a9
Fix time printing bug
...
PR: 14813
Submitted by: idea by netch@lucky.net (Valentin Nechayev)
1999-11-13 20:04:41 +00:00
marcel
1b5e9c01a9
Make cross-compilation work for Alpha on i386 machines. Note that
...
the optimizer has a bug somewhere. This means that only -O0 works
at this time.
1999-11-12 16:36:16 +00:00
guido
0539756f3d
Import of ipfilter 3.3.3 in anticipation of its revival.
...
More to come in the next days.
1999-11-08 20:51:23 +00:00
guido
9452e54400
This commit was generated by cvs2svn to compensate for changes in r53024,
...
which included commits to RCS files with non-trunk default branches.
1999-11-08 20:51:23 +00:00
obrien
fd196ecc7d
Merge vendor changes into our version of this.
1999-11-05 12:56:09 +00:00
obrien
4108fe3797
Update for the 6.0.3s1 import.
1999-11-05 11:59:47 +00:00
obrien
2f57d4d4df
Fix conflicts.
1999-11-05 11:58:05 +00:00
obrien
26b8629f85
This commit was generated by cvs2svn to compensate for changes in r52894,
...
which included commits to RCS files with non-trunk default branches.
1999-11-05 11:42:30 +00:00
obrien
af59541d88
Virgin import of AMD (am-utils) v6.0.3s1
1999-11-05 11:42:30 +00:00
obrien
9c9be5f80d
Get the tar arguments right.
1999-11-05 11:37:09 +00:00
obrien
077ec7b22c
Virgin import from GCC 2.95.1.
...
As of GCC 2.95 these files from libiberty are absolutely required:
ansidecl.h libiberty.h splay-tree.h splay-tree.c
To keep from having to import all of libiberty, they are imported here
for now. Before all is said and done, libiberty might be imported, or
these files might move elsewhere.
1999-11-04 10:35:02 +00:00
obrien
cbf1ad1c72
This commit was generated by cvs2svn to compensate for changes in r52878,
...
which included commits to RCS files with non-trunk default branches.
1999-11-04 10:35:02 +00:00
obrien
a252558aba
Merge rev 1.2 [_exit() over exit()] into GCC 2.95.1.
1999-11-04 10:26:31 +00:00
obrien
eb5e8caab7
Merge rev 1.2 (use /tmp 1st, and then /var/tmp) into GCC 2.95.1.
1999-11-04 10:23:25 +00:00
obrien
a2002c935c
Virgin import from GCC 2.95.1.
...
As of GCC 2.95 these files:
choose-temp.c demangle.h getopt.h obstack.c pexecute.c
cplus-dem.c getopt.c getopt1.c obstack.h
were removed from the GCC compilers proper to libiberty. To continue our
revision history, and to keep from having to import all of libiberty,
they are imported here as if they were never moved.
1999-11-04 10:20:05 +00:00
obrien
2c20d04b86
This commit was generated by cvs2svn to compensate for changes in r52874,
...
which included commits to RCS files with non-trunk default branches.
1999-11-04 10:20:05 +00:00
obrien
a6091f0a42
Structure field name changed.
1999-11-03 12:33:56 +00:00
obrien
7c732ab5d0
This brings rev 1.2 (reality check and document profiling extensions)
...
into GCC 2.95.2.
1999-11-01 20:09:07 +00:00
obrien
68ba60f301
This adds rev 1.2 (-fformat-extensions) to GCC 2.95.2.
1999-11-01 19:51:19 +00:00
obrien
929a892c18
Merge rev 1.2 (a.out support) into GCC 2.95.2.
1999-11-01 18:56:02 +00:00
obrien
60685dfcfd
Add Alpha and proper x86 support to GCC 2.95.2.
...
[ Functionally speaking, this covers revs 1.{2,3} ]
1999-11-01 18:53:45 +00:00
obrien
69611a5db3
Merge our -fformat-extensions and printf0() into GCC 2.95.2.
1999-11-01 18:41:09 +00:00
obrien
4b66dfb903
Virgin import of the GCC 2.95.2 compilers
1999-11-01 08:28:22 +00:00
obrien
244fe162cc
This commit was generated by cvs2svn to compensate for changes in r52750,
...
which included commits to RCS files with non-trunk default branches.
1999-11-01 08:28:22 +00:00
obrien
1d061a7b0a
Virgin import of GCC 2.95.2's libstdc++
1999-11-01 07:40:19 +00:00
obrien
279b76614c
This commit was generated by cvs2svn to compensate for changes in r52746,
...
which included commits to RCS files with non-trunk default branches.
1999-11-01 07:40:19 +00:00
obrien
fb9d0c2e47
Virgin import of GCC 2.95.2's libio -- the C++ iostream facility.
1999-11-01 07:37:09 +00:00
obrien
137ebd0b91
This commit was generated by cvs2svn to compensate for changes in r52744,
...
which included commits to RCS files with non-trunk default branches.
1999-11-01 07:37:09 +00:00
obrien
e74c9b21c3
Change quote style.
1999-11-01 07:35:24 +00:00
obrien
ea2ef55af9
Virgin import of GCC 2.95.2's libf2c
1999-11-01 07:32:56 +00:00
obrien
96977cfe8e
This commit was generated by cvs2svn to compensate for changes in r52741,
...
which included commits to RCS files with non-trunk default branches.
1999-11-01 07:32:56 +00:00
obrien
b7652a08d1
Tell others how I did this.
1999-11-01 07:27:42 +00:00
obrien
94bfed1f74
This file came from elsewhere and there was a little turd left.
1999-11-01 07:25:20 +00:00
obrien
548c47820e
Describe how I did this.
1999-11-01 07:24:11 +00:00
obrien
5d8884be5b
Update for gcc 2.95.2.
1999-11-01 07:22:02 +00:00
obrien
321582243d
Use the stock file for now.
1999-10-27 09:45:47 +00:00
obrien
b0e43a5cf6
s brings rev 1.2 (document printf0()) into GCC 2.95.1.
1999-10-27 09:41:10 +00:00
obrien
d1a4530efd
This brings rev 1.2 (reality check and document profiling extensions)
...
into GCC 2.95.1.
1999-10-27 09:37:24 +00:00
obrien
1292393efe
This adds rev 1.2 (-fformat-extensions) to GCC 2.95.1.
1999-10-27 09:31:52 +00:00
obrien
05270b6462
Use the stock file.
1999-10-27 09:23:37 +00:00
obrien
574b483e89
Use the stock file now.
1999-10-26 09:17:58 +00:00
obrien
00201b83e6
Merge the FREEBSD_NATIVE and ELF/a.out support into GCC 2.95.1.
1999-10-26 09:13:47 +00:00
obrien
d169fbae43
Fix conflicts.
1999-10-26 08:57:00 +00:00
obrien
be3662861f
Merge rev 1.2 (a.out support) into GCC 2.95.1.
1999-10-26 08:53:03 +00:00
obrien
83aa1e1aef
Merge our changes - this brings rev 1.2 (fix stabs ordering for a.out)
...
into GCC 2.95.1.
1999-10-26 08:47:58 +00:00
obrien
bdaadca7c0
Merge our changes - this brings rev 1.2 (-fformat-extensions)
...
into GCC 2.95.1.
1999-10-26 08:45:23 +00:00
obrien
8db9511c04
Merge our changes - this brings revs 1.{2,3} minus rev 1.4 into GCC 2.95.1.
1999-10-26 08:41:38 +00:00
obrien
6ae771fde6
Fix conflicts. (dist src now contains our rev 1.1->1.2 changes)
1999-10-26 08:38:21 +00:00
peter
6976901e20
If running on the client side of a remote commit, don't reject root when
...
trying to do a commit. The server side will use the correct name, and the
client side restriction is just an annoyance.
Requested by: lots of folks
1999-10-25 06:24:11 +00:00
obrien
bdbbf36ec3
Add Alpha and proper x86 support to GCC 2.95.1.
...
[ Functionally speaking, this covers revs 1.{2,3} ]
1999-10-16 08:44:43 +00:00
obrien
d7ea7964e7
Merge rev 1.2 (FreeBSD native support -- do not search the multitude of
...
extended include file paths that do not exist) into GCC 2.95.1.
1999-10-16 08:39:06 +00:00
obrien
9be0b14aaf
Go back to stock file -- our mods are OBE.
1999-10-16 08:34:33 +00:00
obrien
c88c634d26
Merge our -fformat-extensions and printf0() into GCC 2.95.1.
1999-10-16 08:28:26 +00:00
obrien
b86ce00be8
Stick with the stock version of this.
1999-10-16 08:21:54 +00:00
obrien
d883fc3415
Use this stock version of this.
1999-10-16 08:13:35 +00:00
obrien
cf3ead1aa1
Use the stock file here. I cannot determine if our previous (rev 1.2)
...
changes for ObjC are still appropriate.
1999-10-16 08:12:02 +00:00
obrien
4e49c9209b
Use stock file here.
1999-10-16 08:10:36 +00:00
obrien
d6efeabb7a
Bring our profiling tweaks from rev 1.2 into GCC 2.95.1.
1999-10-16 08:08:21 +00:00
obrien
af6623e278
Merge BDE's printf format error fixes into GCC 2.95.1.
1999-10-16 07:57:37 +00:00
obrien
6fc90f57b3
Use the stock file here.
1999-10-16 07:56:14 +00:00
obrien
ad65a89b33
Use the stock GCC 2.95.1 file here. Our previous (rev 1.2) changes are OBE.
1999-10-16 07:53:19 +00:00
obrien
7f3675d738
Merge rev 1.2 into GCC 2.95.1.
1999-10-16 07:35:28 +00:00
obrien
712aed4e0b
Fix conflicts.
1999-10-16 07:12:34 +00:00
obrien
874263d914
Virgin import of the GCC 2.95.1 compilers
1999-10-16 07:10:09 +00:00
obrien
05aa33623b
This commit was generated by cvs2svn to compensate for changes in r52287,
...
which included commits to RCS files with non-trunk default branches.
1999-10-16 07:10:09 +00:00
obrien
cae8fa8120
Virgin import of the GCC 2.95.1 compilers
1999-10-16 06:09:09 +00:00
obrien
8f3bf11ba2
This commit was generated by cvs2svn to compensate for changes in r52284,
...
which included commits to RCS files with non-trunk default branches.
1999-10-16 06:09:09 +00:00
obrien
84656b55b6
Virgin import of GCC 2.95.1's libio -- the C++ iostream facility.
1999-10-16 03:54:25 +00:00
obrien
c80f4f2424
This commit was generated by cvs2svn to compensate for changes in r52279,
...
which included commits to RCS files with non-trunk default branches.
1999-10-16 03:54:25 +00:00
obrien
b721bc1aed
Virgin import of GCC 2.95.1's libstdc++
1999-10-16 03:52:48 +00:00
obrien
3459bbfa7f
This commit was generated by cvs2svn to compensate for changes in r52277,
...
which included commits to RCS files with non-trunk default branches.
1999-10-16 03:52:48 +00:00
obrien
fcdace9ad8
Grrrrr. Put the $FreeBSD$ in a Bad Place.
1999-10-15 21:49:40 +00:00
obrien
3dcb5df695
Register the fact we want expand_main_function() to invoke __main.
1999-10-15 20:56:19 +00:00
obrien
eab3fcc626
Merge rev 1.2 (a.out support) into EGCS 1.1.2.
1999-10-15 20:48:35 +00:00
obrien
2f32fb0a0e
Return these files back to their stock versions.
...
These files aren't used in either building GCC or with a GCC installation
in the "FreeBSD native" case.
1999-10-13 15:55:31 +00:00
obrien
9f01c491d0
Virgin import of EGCS 1.1.2
1999-10-12 00:47:56 +00:00
obrien
8032f1899c
This commit was generated by cvs2svn to compensate for changes in r52143,
...
which included commits to RCS files with non-trunk default branches.
1999-10-12 00:47:56 +00:00
obrien
1555d44f14
Remove a useless blank line, I accidently added.
1999-10-12 00:35:49 +00:00
obrien
9f1f03f986
Move RCS tag to our normal place.
1999-10-10 22:43:12 +00:00
obrien
2dc205f241
Style cleanups:
...
* be consistant on protecting "#define FOO"s with "#undef FOO".
* be consistant that macro params are upper case, and commas are followed
by a space in the macro definition
* protect macro param expansion by ()'s
* break long lines
* line continuations chars to consistant column
* remove trailing spaces
1999-10-10 22:33:40 +00:00
obrien
76d75beacc
Remove things common to all FreeBSD platforms. They will now live in a
...
FreeBSD wide config file.
This includes "WORD_SWITCH_TAKES_ARG" & "SWITCH_TAKES_ARG". Platforms
such as FreeBSD/MIPS will need to override these two defintions, but it
can #undef them and define them approapiately.
1999-10-10 22:17:24 +00:00
mharo
6f0c55764d
Correct typo, Welcom -> Welcome
...
and add $FreeBSD$
1999-10-10 07:46:38 +00:00
obrien
1d7ec327c1
Fully document -q.
...
Restore original $Header$.
1999-10-05 15:20:45 +00:00
obrien
55f2f61a7b
Virgin import of EGCS 1.1.2's libio -- the C++ iostream facility.
1999-10-04 08:17:54 +00:00
obrien
905fc76f35
This commit was generated by cvs2svn to compensate for changes in r51922,
...
which included commits to RCS files with non-trunk default branches.
1999-10-04 08:17:54 +00:00
obrien
2cef6469c5
Virgin import of EGCS 1.1.2's libstdc++
1999-10-04 08:12:38 +00:00
obrien
b9cf96069d
This commit was generated by cvs2svn to compensate for changes in r51920,
...
which included commits to RCS files with non-trunk default branches.
1999-10-04 08:12:38 +00:00
obrien
aa3f6dfa3a
Virgin import of EGCS 1.1.2
1999-10-03 09:19:40 +00:00
obrien
355e1eeeeb
This commit was generated by cvs2svn to compensate for changes in r51899,
...
which included commits to RCS files with non-trunk default branches.
1999-10-03 09:19:40 +00:00
obrien
cef7d41dd5
Virgin import of EGCS 1.1.2
1999-10-02 21:54:32 +00:00
obrien
0858aa3a81
This commit was generated by cvs2svn to compensate for changes in r51885,
...
which included commits to RCS files with non-trunk default branches.
1999-10-02 21:54:32 +00:00
obrien
a1342c30ed
* We have /var/tmp, not /usr/tmp. So use that where EGCS used the latter.
...
* In the absence of the env vars TMPDIR, TMP, TEMP (which override this
ordering), attempt to create temperary files in /tmp, P_tmpdir (/var/tmp),
/usr/tmp, and . until successful.
1999-10-02 21:50:07 +00:00
obrien
ae0f17d54a
Virgin import of EGCS 1.1.2
1999-10-02 01:46:57 +00:00
obrien
6709241681
This commit was generated by cvs2svn to compensate for changes in r51848,
...
which included commits to RCS files with non-trunk default branches.
1999-10-02 01:46:57 +00:00
sheldonh
412c3617b4
Update the upgrade instructions for awk 3.0.4.
1999-09-27 09:09:08 +00:00
sheldonh
fd12515e9f
Fix conflicts. Add $FreeBSD$ as needed.
1999-09-27 08:57:04 +00:00
sheldonh
b54765f984
This commit was generated by cvs2svn to compensate for changes in r51728,
...
which included commits to RCS files with non-trunk default branches.
1999-09-27 08:51:04 +00:00
sheldonh
b725e888cf
Virgin import of GNU awk 3.0.4, which fixes at least a memory mis-
...
management problem involving custom print formats.
PR: 13615
Reported by: Scott Hazen Mueller <scott@zorch.sf-bay.org>
1999-09-27 08:51:04 +00:00
phantom
ab4110c3bc
Mention -p and -t options.
1999-09-24 11:37:06 +00:00
phantom
472736db15
Learn nroff about -p and -t options. It allows to preprocess
...
file with pic(1) and tbl(1).
Not objected to: mpp
1999-09-23 13:40:28 +00:00
obrien
fd1d2c9a38
Fix conflicts.
...
Version 6.0.2s2 gives us a better fix a buffer overflow problem in
real_plog(). It also gives us a few code cleanups to quiet `gcc -Wall'.
1999-09-23 05:36:01 +00:00
obrien
525520fd05
Virgin import of AMD (am-utils) v6.0.2s2
1999-09-23 05:15:28 +00:00
obrien
5b5a6e51e1
This commit was generated by cvs2svn to compensate for changes in r51591,
...
which included commits to RCS files with non-trunk default branches.
1999-09-23 05:15:28 +00:00
ache
9e89242d36
moved to tmac/locale
1999-09-23 02:56:00 +00:00
phantom
8559cd0134
Allow .Rv macro to be used in 7th section also. This patch
...
will fix "Usage: .Rv ..." error at mdoc.samples.7
Ok'ed by: mpp
1999-09-22 22:36:16 +00:00
phantom
5b41a05a1a
Allow "Alpha" as 2nd argument for .Dt macro. So, we can go
...
with "Alpha architecture" manpages.
1999-09-22 21:38:40 +00:00
sheldonh
54fb6a7e44
Add the ``blacklist'' feature, which allows a path to a filename to
...
be used as a valid pattern in the access control language.
Patch obtained from ftp://ftp.porcupine.org/pub/security/ .
Requested by: markm
1999-09-21 09:09:57 +00:00
obrien
caa7271ba9
Bring BDE's printf format error fixes into EGCS.
1999-09-19 11:00:01 +00:00
obrien
4e55baf141
Bring our profiling tweaks into EGCS 1.1.2.
1999-09-19 10:43:38 +00:00
obrien
28a04200f0
"COMMENT_BEGIN" is no longer used.
1999-09-19 10:32:18 +00:00
obrien
7d1a76ba11
Support linking against libgcc_r.
...
Submitted by: Luoqi Chen <luoqi@chen.ml.org>
1999-09-19 10:31:14 +00:00
obrien
eed2bb0659
This should get us the same functionality we had with GCC 2.7.2.1.
...
* Support for our dual ELF/a.out building ability
* Our custom ASM_* definitions
* Our custom debugger and profiling related definitions
* Our custom STARTFILE/ENDFILE specs
* The stock EGCS 1.1.2 freebsd-elf.h file depended on
egcs-1.1.2/gcc/config/linux.h, which included "svr4.h". We will
include "svr4.h" via our "tm.h" definition. So add the few bits
from "linux.h" we actually needed.
* Using our current crtbegin.o/crtend.o we cannot support the DWARF2
unwinding mechanisms. In the future we will switch to the
non-sjlj-exceptions type exception machanism. However the `make world'
bootstrap problems with the EGCS crtstuff.c must be overcome first.
* Our a.out gas doesn't "know" to use NOP's for aligns while in the text
section. Thus the a.out alignment generation needed tweaking from
what we did with GCC 2.7.2. [from BDE]
* The definition of SUPPORTS_ONE_ONLY prevents the compiler from trying
to use "linkonce" sections for a.out. The definition of
NO_DBX_FUNCTION_END we had causes it to avoid .stabs symbols that the
assembler cannot handle for a.out. [from JDP]
* The previous "EXCEPTION_SECTION_FUNCTION" is the wrong name for EGCS.
It also needed tweaking for EGCS. [from JDP]
Also bump __FreeBSD_cc_version to 400002 in case we need to know we are
using EGCS at some point.
1999-09-19 10:28:57 +00:00
obrien
9fae78db4f
Use the stock EGCS version of this.
1999-09-19 09:09:21 +00:00