summaryrefslogtreecommitdiff
path: root/lib/libss
Commit message (Collapse)AuthorAgeFilesLines
* Say goodbye to libss, which somehow managed to crouch hidden in the treeKris Kennaway2001-08-1918-1539/+0
| | | | | | | for long after it was used. Notes: svn path=/head/; revision=81920
* Removed duplicate VCS ID tags, as per style(9).Ruslan Ermilov2001-08-131-3/+4
| | | | Notes: svn path=/head/; revision=81586
* Add `_PATH_DEVZERO'.David E. O'Brien2000-12-091-1/+4
| | | | | | | Use _PATH_* where where possible. Notes: svn path=/head/; revision=69793
* Get errno from <errno.h>, not from extern int.Warner Losh2000-09-042-3/+6
| | | | | | | Add $FreeBSD$ to hopefully the right place. Notes: svn path=/head/; revision=65422
* sigset_t change (part 5 of 5)Marcel Moolenaar1999-09-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ----------------------------- Most of the userland changes are in libc. For both the alpha and the i386 setjmp has been changed to accomodate for the new sigset_t. Internally, libc is mostly rewritten to use the new syscalls. The exception is in compat-43/sigcompat.c The POSIX thread library has also been rewritten to use the new sigset_t. Except, that it currently only handles NSIG signals instead of the maximum _SIG_MAXSIG. This should not be a problem because current applications don't use any signals higher than NSIG. There are version bumps for the following libraries: libdialog libreadline libc libc_r libedit libftpio libss These libraries either a) have one of the modified structures visible in the interface, or b) use sigset_t internally and may cause breakage if new binaries are used against libraries that don't have the sigset_t change. This not an immediate issue, but will be as soon as applications start using the new range to its fullest. NOTE: libncurses already had an version bump and has not been given one now. NOTE: doscmd is a real casualty and has been disconnected for the moment. Reconnection will eventually happen after doscmd has been fixed. I'm aware that being the last one to touch it, I'm automaticly promoted to being maintainer. According to good taste this means that I will receive a badge which either will be glued or mechanically stapled, drilled or otherwise violently forced onto me :-) NOTE: pcvt/vttest cannot be compiled with -traditional. The change cause sys/types to be included along the way which contains the const and volatile modifiers. I don't consider this a solution, but more a workaround. Notes: svn path=/head/; revision=51794
* Zap $Locker$Peter Wemm1999-09-062-2/+0
| | | | Notes: svn path=/head/; revision=51001
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Replace memory leaking instances of realloc with non-leaking reallocf.Warner Losh1998-09-164-4/+4
| | | | | | | | | | | | | | In some cases replace if (a == null) a = malloc(x); else a = realloc(a, x); with simple reallocf(a, x). Per ANSI-C, this is guaranteed to be the same thing. I've been running these on my system here w/o ill effects for some time. However, the CTM-express is at part 6 of 34 for the CAM changes, so I've not been able to do a build world with the CAM in the tree with these changes. Shouldn't impact anything, but... Notes: svn path=/head/; revision=39327
* Remove a 'const' because it was getting thrown away anyway.John Birrell1998-05-101-1/+1
| | | | Notes: svn path=/head/; revision=35926
* Separated header creation from header installation in libss. CreateBruce Evans1998-03-121-6/+4
| | | | | | | the libss headers before installing them in `make world'. Notes: svn path=/head/; revision=34508
* Use the standard method for avoiding concurrent builds of multiple targetsBruce Evans1998-03-061-4/+3
| | | | | | | built by a single rule (.ORDER: foo.c foo.h ...). Notes: svn path=/head/; revision=34117
* Fixed building with `make -jN'. Put ss_err.h in SRCS so that recentBruce Evans1998-03-061-6/+7
| | | | | | | | | | | | | changes to bsd.lib.mk can handle building it early enough. Don't use the same rule for ss_err.h and ss_err.c, else `make -jN' would run the rule twice concurrently. Don't put ss_err.c out of order in SRCS; doing so was a kludge to get ss_err.h built early enough for plain `make'. Don't put a non-generated file in CLEANFILES. Notes: svn path=/head/; revision=34095
* Allow this to compile with NetBSD tools.John Birrell1998-01-091-1/+1
| | | | Notes: svn path=/head/; revision=32378
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22993
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* 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
* use termios when POSIX is defined in the Makefile, not sgttyPeter Wemm1996-09-071-2/+16
| | | | Notes: svn path=/head/; revision=18103
* 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
* Fixed DPADD.Bruce Evans1996-09-051-4/+5
| | | | Notes: svn path=/head/; revision=18050
* cmp -s || install -c ==> install -CPeter Wemm1996-08-301-16/+9
| | | | Notes: svn path=/head/; revision=17935
* General -Wall warning cleanup, part I.Jordan K. Hubbard1996-07-1213-4/+25
| | | | | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu> Notes: svn path=/head/; revision=17141
* Bring in my changes for removing the pestilent obj links (unless youJordan K. Hubbard1996-06-241-3/+3
| | | | | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current. Notes: svn path=/head/; revision=16663
* ``mv'' -> ``mv -f''Wolfram Schneider1996-05-071-3/+3
| | | | | | | | ``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root Notes: svn path=/head/; revision=15679
* Install non-source files with the optional flag ${COPY}, not with the flag -c.Bruce Evans1995-08-061-2/+2
| | | | Notes: svn path=/head/; revision=9972
* Change `install' to `${INSTALL}' so that default install flags can beBruce Evans1995-08-061-4/+4
| | | | | | | | | | specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary. Notes: svn path=/head/; revision=9970
* Remove trailing whitespace.Rodney W. Grimes1995-05-305-11/+11
| | | | Notes: svn path=/head/; revision=8870
* Remove private mkdir for /usr/include/ss, no handled by mtree.Rodney W. Grimes1995-03-181-5/+1
| | | | Notes: svn path=/head/; revision=7137
* Repeat after me kids: "I will not try to install files into a directoryBill Paul1995-03-151-1/+5
| | | | | | | | | | | | | | | | | | | | | when I'm not sure whether or not that directory exists." Today I discovered that rebuilding /usr/include completely from scratch doesn't work, because the libss Makefile tries to install headers into /usr/include/ss, which 'make includes' does not create. The result is that the libss Makefile plants the header files in /usr/include as individual files called 'ss,' with the second one overwriting the first, and the third one overwriting the second. So instead of a directory called /usr/include/ss, you end up with just one file called /usr/include/ss with only the last header file in it. Check out /usr/include/ss on freefall and you'll see what I mean. I've modified the beforeinstall target in the libss Makefile to check for the presence of the ${DESTDIR}/usr/include/lbss directory and to create it if it isn't already there. Hopefully I did it right. Notes: svn path=/head/; revision=7062
* Fix broken makefile.Poul-Henning Kamp1995-02-121-5/+6
| | | | Notes: svn path=/head/; revision=6317
* CLEANFILES was missing a few files.Bruce Evans1995-02-081-2/+2
| | | | Notes: svn path=/head/; revision=6250
* Make Jordan happy:Garrett Wollman1995-01-231-4/+15
| | | | | | | | | 1) Link against object directory version of libcom_err.so. 2) Don't try to install ss_err.h if we haven't made it yet. It's not on the critical path for `make world' at this point. Notes: svn path=/head/; revision=5806
* Fix from Rod so that std_rqs.c can get rebuilt properly whenGarrett Wollman1995-01-211-2/+2
| | | | | | | doing a make world. Notes: svn path=/head/; revision=5774
* Port to FreeBSD.Garrett Wollman1995-01-195-4/+53
| | | | Notes: svn path=/head/; revision=5725
* MIT SIPB `subsystem' library, needed for `kadmin' and some other MIT programs.Garrett Wollman1995-01-1917-0/+1445
Notes: svn path=/cvs2svn/branches/sipb/; revision=5717