summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Remove the nuke of /usr/lib/libgnumalloc*, this is closer to "How It WasPeter Wemm1996-09-262-6/+4
| | | | | | | | Before", hopefully it won't cause as much hassle. This now entirely confines it's activities to /usr/lib/compat/lib{fake,}gnumalloc.so.2.0 Notes: svn path=/head/; revision=18497
* Back out my recent compilation clean-up changes, sysinstall is now weird.Paul Traina1996-09-265-5/+5
| | | | Notes: svn path=/head/; revision=18496
* Fix a typo.Søren Schmidt1996-09-251-2/+2
| | | | | | | Reviewed by: phk Notes: svn path=/head/; revision=18495
* A number of minor bogons and portability things from jdp.Poul-Henning Kamp1996-09-251-28/+37
| | | | | | | Submitted by: jdp Notes: svn path=/head/; revision=18493
* Eliminated includes of the "temporary" backwards compatibility headerBruce Evans1996-09-241-3/+1
| | | | | | | | | <sys/dir.h> in applications. Maintained existing (inadequate) ifdefs for dir.h vs dirent.h in libdialog, amd and rarpd, but didn't add any new ones. Notes: svn path=/head/; revision=18485
* add missing comma(s) in .Xr macrosWolfram Schneider1996-09-239-15/+24
| | | | Notes: svn path=/head/; revision=18480
* phkmalloc/3Poul-Henning Kamp1996-09-232-196/+342
| | | | | | | | | | | Various neat features added. More documentation in the manpage. If your machine has very little RAM, I guess that would be < 16M these days :-(, you may want to try this: ln -fs 'H<' /etc/malloc.conf check the manpage. Notes: svn path=/head/; revision=18479
* Fix typo from previous commit (tsvsec --> tv_sec).Alexander Langer1996-09-231-1/+1
| | | | Notes: svn path=/head/; revision=18472
* Fix some compilation warningsPaul Traina1996-09-225-5/+5
| | | | Notes: svn path=/head/; revision=18454
* Fix some compilation warnings.Paul Traina1996-09-211-5/+7
| | | | Notes: svn path=/head/; revision=18449
* fix .Xr macroWolfram Schneider1996-09-214-4/+4
| | | | Notes: svn path=/head/; revision=18446
* ".Xr chflags 1," -> ".Xr chflags 1 ,"Peter Wemm1996-09-211-1/+1
| | | | Notes: svn path=/head/; revision=18435
* Fixed CLEANFILES. The *.3 links were missing.Bruce Evans1996-09-201-4/+59
| | | | | | | Removed ugly newlines. Notes: svn path=/head/; revision=18422
* Add the utrace syscall.Poul-Henning Kamp1996-09-201-3/+4
| | | | Notes: svn path=/head/; revision=18421
* Remove now un-necessary FreeBSD specific code since our timespecNate Williams1996-09-209-528/+0
| | | | | | | | | structure now has the correct member names. Pointed out by: Peter Wemm Notes: svn path=/head/; revision=18415
* ts_sec -> tv_secNate Williams1996-09-202-5/+5
| | | | | | | ts_nsec -> tv_nsec Notes: svn path=/head/; revision=18414
* Make libftpio 64-bit clean.Peter Wemm1996-09-193-25/+36
| | | | | | | | | | Major version bumped (by me) since the ftpGet() public interface has changed (an "int *" becomes and "off_t *") Submitted by: Jason Thorpe <thorpej@nas.nasa.gov>, PR#1640 Notes: svn path=/head/; revision=18394
* Minor tweaks for the fake libgnumalloc stuff. No longer build, install andPeter Wemm1996-09-192-12/+14
| | | | | | | then rm the *.a version Notes: svn path=/head/; revision=18386
* Update to tcl7.5u1.Poul-Henning Kamp1996-09-183-19/+48
| | | | | | | Add two scaffold files to (attempt) to make a tclsh compiled -static work. Notes: svn path=/head/; revision=18356
* Fix a very rare error condition: The code to free VM back to the kernelPoul-Henning Kamp1996-09-171-3/+4
| | | | | | | | | | as done after a quasi-recursive call to free() had modified what we thought we knew about the last chunk of pages. This bug manifested itself when I did a "make obj" from src/usr.sbin/lpr, then make would coredump in the lpd directory. Notes: svn path=/head/; revision=18333
* Add comment explaining what function doesAndrey A. Chernov1996-09-171-3/+11
| | | | | | | Cover strcoll return 0 case too Notes: svn path=/head/; revision=18331
* Don't use __dead or __pure in user code. They were obfuscationsBruce Evans1996-09-142-7/+8
| | | | | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong. Notes: svn path=/head/; revision=18286
* fwopen() argument type mis-describedPaul Traina1996-09-131-1/+1
| | | | | | | Obtained from: NetBSD lib/2751 (der Mouse) Notes: svn path=/head/; revision=18279
* Fixed non-removal of old libresolv_p.a.Bruce Evans1996-09-111-5/+4
| | | | | | | Cleaned up formatting. Notes: svn path=/head/; revision=18236
* Change the last -Wall cleanup so that the tputs declaration doesn'tPeter Wemm1996-09-102-6/+7
| | | | | | | | | | | | conflict with the other declarations in other files. tputs() is traditionally declared to return int, not void. curses.h has it as int. ncurses has int and actually sets the return value. This problem has been causing the ircII port to not compile. (I've only minimally tested this, I do not have libtermcap on my systems) Notes: svn path=/head/; revision=18209
* Resync statfs struct with sys/mount.h.Peter Wemm1996-09-071-3/+7
| | | | Notes: svn path=/head/; revision=18126
* clean up some warts Bruce pointed out.Peter Wemm1996-09-071-3/+4
| | | | | | | | | - no longer build or install libresolv.a, since we were immediately deleting it in afterinstall. - untangle $LIBDIR and $SHLIBDIR Notes: svn path=/head/; revision=18109
* use termios when POSIX is defined in the Makefile, not sgttyPeter Wemm1996-09-071-2/+16
| | | | Notes: svn path=/head/; revision=18103
* Don't smash attributes when turning color values off. This was submittedJordan K. Hubbard1996-09-061-2/+2
| | | | | | | | | | as a PR to GNATs but it evidently went astray somehow since I can't find it in the database now, nor does an assigned PR# appear on the mail I got. Sorry about that, Danny! Submitted-By: Danny R. Johnston <danny@simn.com> Notes: svn path=/head/; revision=18071
* Use a more robust check for ss_err.h existing. This header isn'tBruce Evans1996-09-051-2/+2
| | | | | | | | | | | built early enough to always be installed by the `includes' target in /usr/src/Makefile. This is supposed to be handled by not installing it if it doesn't exist. However, a stale, uninstallable copy sometimes exists in the source directory, and the existence test sometimes found the wrong copy. Notes: svn path=/head/; revision=18062
* RegeneratePeter Wemm1996-09-051-16/+194
| | | | Notes: svn path=/head/; revision=18057
* Fixed DPADD.Bruce Evans1996-09-054-10/+14
| | | | Notes: svn path=/head/; revision=18050
* Apply patch to fix +group YP overrides and prevent SEGV on badlyBill Paul1996-09-051-8/+47
| | | | | | | formatted groups (foo:*). Notes: svn path=/head/; revision=18046
* Removed unused `-I.'s from CFLAGS.Bruce Evans1996-09-041-2/+1
| | | | | | | | | | | "." means the object directory, so it is just confusing to use it when nothing is included from the object directory unless the object directory is also the source directory. It is confusing for "." not to mean the source directory anyway, so used `-I.'s should be replaced by `-I${.OBJDIR}'. Notes: svn path=/head/; revision=18035
* add back stub libresolvPeter Wemm1996-09-031-1/+1
| | | | Notes: svn path=/head/; revision=18015
* Install in /usr/lib/compat where ld.so can find it for older binaries,Peter Wemm1996-09-031-0/+2
| | | | | | | but autoconf/ld/etc won't find it for new builds.. Notes: svn path=/head/; revision=18014
* Describe POSIX saved IDs behaviour betterAndrey A. Chernov1996-09-031-5/+19
| | | | Notes: svn path=/head/; revision=18012
* Add cfree,Poul-Henning Kamp1996-09-024-4/+24
| | | | | | | Move to usr/lib/compat Notes: svn path=/head/; revision=17999
* Describe current behaviour (_POSIX_SAVED_IDS are ON),Andrey A. Chernov1996-09-011-2/+12
| | | | | | | | | | traditional BSD4.4 behavior (_POSIX_SAVED_IDS are OFF) was described before. Add some hooks to easily change this text when POSIX_SAVED_IDS model will be changed. Notes: svn path=/head/; revision=17995
* Intelligently cache previous connection to host if we can stillJordan K. Hubbard1996-08-311-10/+32
| | | | | | | | | | use it. Correct a typo bogon that had REST mistyped as RETR. No wonder fetch's restart command didn't work! :-( Notes: svn path=/head/; revision=17978
* Fixed the easy cases of const poisoning in the kernel. Cosmetic.Bruce Evans1996-08-312-2/+3
| | | | Notes: svn path=/head/; revision=17974
* Don't depend in the kernel on the gcc feature of doing arithmetic onBruce Evans1996-08-311-10/+10
| | | | | | | pointers of type `void *'. Warn about this in future. Notes: svn path=/head/; revision=17971
* - libc self contained again.Peter Wemm1996-08-301-6/+7
| | | | | | | - sync up source files with main libc Notes: svn path=/head/; revision=17959
* consistancy fixupPeter Wemm1996-08-301-2/+2
| | | | | | | Submitted by: "Philippe Charnier" <charnier@xp11.frmug.org> Notes: svn path=/head/; revision=17958
* Sigh, back out the last bright idea I had here about compiling the res_*Peter Wemm1996-08-309-2/+3633
| | | | | | | | | | | routines from contrib/bind directly. There were too many problems, including having to add -DUSE_OPTIONS_H to the entire libc source in order for the contrib code to pick up it's options, and so on. Instead, I've merged the changes, libc is now self contained again. Notes: svn path=/head/; revision=17957
* pick up the resolver sources from contribAdam David1996-08-301-0/+1
| | | | Notes: svn path=/head/; revision=17956
* back out last two changes, this caused the mandoc pages to be replaced byPeter Wemm1996-08-303-504/+529
| | | | | | | man pages. I'll fold in the real changes in a seperate commit. Notes: svn path=/head/; revision=17955
* oops, install termcap.h from ${.CURDIR}, not the obj dir.Peter Wemm1996-08-301-2/+2
| | | | | | | Pointed out by: asami Notes: svn path=/head/; revision=17948
* cmp -s || install -c ==> install -CPeter Wemm1996-08-308-52/+31
| | | | Notes: svn path=/head/; revision=17935
* Replace some bizzare AT&T(?) make macros (``${*F}'' ??!?!?!?)Peter Wemm1996-08-301-9/+2
| | | | | | | Use more conventional implicit rule Notes: svn path=/head/; revision=17934