summaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* add .St -p1003.1b and -p1003.1b-93peter1997-05-121-0/+20
|
* The -pthread option was added to freebsd.h but missed from freebsd-elf.hpeter1997-05-121-1/+1
|
* change `an' to `a'...jmg1997-05-051-1/+1
| | | | | Submitted by: Josh Gilliam Closes PR#3471
* Let gcc know about libc_r. Use -pthread to link against libc_r insteadjb1997-05-032-2/+2
| | | | of libc.
* Emulate ':o' and '/o' letters using 'o'ache1997-05-021-0/+2
|
* correct vfork()/exit() to vfork()/_exit(). This is far more importantpeter1997-04-251-1/+1
| | | | | | now that vfork() actually works in FreeBSD for the first time. Spotted by: se
* Use UT_NAMESIZE instead of hardcoded user names lengthache1997-04-211-2/+3
|
* Enable GLOBAL tags support for nvi.jkh1997-04-1811-94/+292
| | | | Submitted-By: Shigio Yamaguchi <shigio@wafu.netgate.net>
* Make "gcc -shared" work properly for building shared libraries. Anjdp1997-04-092-8/+14
| | | | | | up-to-date version of c++rt0.o is necessary for this to work right. Closes PR gnu/3035: gcc -shared flag is broken.
* Disallow "-p" when linking, with a diagnostic that recommends usingjdp1997-04-052-10/+12
| | | | | | | | | "-pg" and gprof(1) instead. FreeBSD does not support plain "-p" or prof(1). Plain "-p" is still allowed when just compiling. In the compile phase, "-p" is identical "-pg". It is used by <bsd.lib.mk> for building profiled object files.
* Fix bug that can cuase a loop to become endless.obrien1997-04-031-1/+0
| | | | | The bug is triggered by attempts to copy in (-i) a file which happens to have zero length.
* FreeBSD specific readme for contributed source.obrien1997-04-032-0/+0
| | | | (FREEBSD-upgrade is now the "accpeted" filename for this).
* This commit was generated by cvs2svn to compensate for changes in r24583,darrenr1997-04-0382-836/+2686
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import IP Filter version 3.2alpha4 to bring in working LKM for 2.2darrenr1997-04-0382-836/+2686
| |
* | Base work to make gdbserver work with FreeBSDpst1997-04-032-10/+4
| |
* | This commit was generated by cvs2svn to compensate for changes in r24434,obrien1997-03-311-0/+558
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Virgin import of GNU cpio v2.4.2.obrien1997-03-311-0/+558
| | |
* | | JKH says:obrien1997-03-301-2/+2
| | | | | | | | | | | | | | | | | | 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.. :-)
* | | don't lookup rsh(1) at bogus pathnamesobrien1997-03-301-17/+1
| | | | | | | | | | | | Submitted by: joerg via old gnu/usr.bin/cpio v2.3
* | | Don't set the umask until after we have processed the argumentsobrien1997-03-301-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | and opened the archive file. This allows "cpio -o -O output_file" to create the output file with the callers proper umask. Closed PR# 1391 Add setlocale LC_ALL (from ache).
* | | Support dummy lchown() so that cpio understands 4.4 symbolic links.obrien1997-03-301-0/+5
| | |
* | | - Correct the recommended option for "find" from "-depth" to "-d".obrien1997-03-301-3/+5
| | | | | | | | | | | | | | | | | | | | | - Fix gross spelling and typographical errors pointed out by Keith Bostic. - Mention -l, --link is only usable with "-p". Obtained from: old gnu/usr.bin/cpio v2.3.
* | | Output a zero rdev except for bdevs, cdevs, fifos and sockets. Thisobrien1997-03-301-2/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | stops regular files with unrepresentable rdevs from being rejected and makes the output independent of unpreservable metadata. Don't output a file if the major, minor or totality of its rdev would be truncated. Print a message about the skipped files to stderr but don't report the error in the exit status. cpio's abysmal error handling doesn't allow continuing after an error, and the rdev checks had to be misplaced to avoid the problem of returning an error code from routines that return void. Minor numbers are limited to 21 bits in pax's ustar format and to 18 bits in archives created by gnu tar (gnu tar wastes 3 bits for padding). pax's and cpio's ustar format is incompatible with gnu tar's ustar format for other reasons (see cpio/README). Submitted by: bde via old gnu/usr.bin/cpio v2.3.
* | | Fix typo.obrien1997-03-301-1/+1
| | |
* | | I goofed, Makefile lchown.c don't belong here.obrien1997-03-302-47/+0
| | |
* | | Replace ctime by strftime %c to use national representation.obrien1997-03-302-2/+18
| | | | | | | | | | | | | | | | | | Use isprint() for Localization. Submitted by: ache via gnu/usr.bin/cpio v2.3
* | | FreeBSD BSD-style Makefile for contributed CPIO source.obrien1997-03-291-0/+19
| | |
* | | Rodney Grimes's dummy lchown() so that cpio understands 4.4 symbolic links.obrien1997-03-291-0/+27
| | | | | | | | | | | | | | | | | | (taken from old gnu/usr.bin/cpio) Reviewed by: phk
* | | Don't need tcexparg.c on FreeBSD.obrien1997-03-291-1/+3
| | |
* | | Don't need tcexparg.c which impliments Unix-style command line wildcardsobrien1997-03-291-240/+0
| | | | | | | | | | | | for Turbo C
* | | FreeBSD specific readme for contributed CPIO soruces.obrien1997-03-291-0/+13
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r24398,obrien1997-03-2942-0/+12345
|\ \ \ | |/ / | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Virgin import of GNU cpio v2.4.2.obrien1997-03-2942-0/+12345
| /
* | back out rev 1.8 (last minute CDROM releases)wosch1997-03-291-6/+0
| |
* | Don't use these that were generated on a foreign system, generate our own.peter1997-03-293-6889/+0
| |
* | Update the value of "__FreeBSD__" to 3 for the ELF compiler.jdp1997-03-261-1/+1
| |
* | -current is now 3.0. NOT a 2.2 candidate. :)asami1997-03-252-2/+2
| |
* | Add last minute CDROM releases 2.1.6.1, 2.1.7.1, 2.2.1 to macro .Fxwosch1997-03-231-0/+6
| |
* | Apply the FreeBSD-local patches.joerg1997-03-237-17/+107
| | | | | | | | Obtained from: The ports collection.
* | This commit was generated by cvs2svn to compensate for changes in r24139,joerg1997-03-2336-0/+7017
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | This is the long-awaited import of top into the base system (actually,joerg1997-03-2336-0/+7017
| / | | | | | | | | the src/contrib/top part right now). This tools is simply too system- dependant to maintain it in the ports collection.
* | slight fix to gcc's man page...jmg1997-03-231-3/+9
| |
* | Fix the location of the files in the FILES section.mpp1997-03-221-2/+2
| | | | | | | | | | | | Closes PR# 3063. Submitted by: Kent Vander Velden <graphix@iastate.edu>
* | Don't indirect through a NULL pointer in rl_strpbrk. This makes filenamedfr1997-03-221-0/+3
| | | | | | | | completion work in GDB.
* | Quick fix for section limits not being relocated. This has always beenbde1997-03-221-0/+6
| | | | | | | | | | | | | | | | | | | | broken for gdb -k, but the section limits weren't used much in previous versions of gdb in FreeBSD. Now they are used for backtracing when full symbols aren't available, and in some other new cases. This should be fixed properly by someone who knows bfd. This should be fixed in 2.2.
* | Add all of the pre-FreeBSD 2.0 release to the .Fx macro.mpp1997-03-211-0/+8
| |
* | Update the usage message for the ".Bf" macro to match the actualmpp1997-03-191-1/+1
| | | | | | | | arguments that it takes.
* | Fixed synopsis (missing #include and wrong paths in #includes).bde1997-03-192-4/+6
| |
* | This commit was generated by cvs2svn to compensate for changes in r23943,bde1997-03-1610-0/+6358
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Attempt to (re-?)import enough of gdb's configuration files forbde1997-03-1610-0/+6358
| | | | | | | | | | | | ./configure to work.
OpenPOWER on IntegriCloud