summaryrefslogtreecommitdiff
path: root/lib/libopenbsd
Commit message (Collapse)AuthorAgeFilesLines
* Only set WARNS if not definedKyle Evans2020-09-111-1/+1
| | | | | | | | | | | | | This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld. Not currently touching the numerous instances in ^/tools. MFC after: 1 week Notes: svn path=/head/; revision=365631
* Allow bootstrapping libopenbsd on LinuxAlex Richardson2018-12-051-2/+7
| | | | | | | | | | | The getdtablecount.c file won't compile on Linux but it seems like none of the bootstrap tools actually need it. Reviewed By: emaste, brooks Differential Revision: https://reviews.freebsd.org/D14244 Notes: svn path=/head/; revision=341515
* Fix a few more speelling errorsEitan Adler2017-12-281-1/+1
| | | | | | | | | Reviewed by: bjk Reviewed by: jilles (incl formal "accept") Differential Revision: https://reviews.freebsd.org/D13650 Notes: svn path=/head/; revision=327259
* First pass through library packaging.Glen Barber2016-02-041-0/+1
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295278
* Remove NO_WERROR, after fix from r292023.Craig Rodrigues2015-12-091-1/+0
| | | | Notes: svn path=/head/; revision=292024
* Merge from OpenBSD:Craig Rodrigues2015-12-091-2/+2
| | | | | | | | | | | revision 1.13 date: 2015/12/09 11:54:12; author: tb; state: Exp; lines: +2 -2 Add a cast to silence a compiler warning by clang on FreeBSD. From Craig Rodrigues. ok tedu@ Notes: svn path=/head/; revision=292023
* Merge from OpenBSD:Craig Rodrigues2015-12-091-6/+4
| | | | | | | | | | | revision 1.12 date: 2015/12/05 13:06:52; author: claudio; state: Exp; lines: +4 -6 Do not loop on EAGAIN in imsg_read(). Better to return the error to the caller and let him do another poll loop. This fixes spinning relayd processes seen on busy TLS relays. OK benno@ henning@ Notes: svn path=/head/; revision=292022
* Merge from OpenBSD:Craig Rodrigues2015-12-091-3/+2
| | | | | | | | | revision 1.11 date: 2015/11/27 01:57:59; author: mmcc; state: Exp; lines: +2 -3 Remove three NULL-checks before free(). ok millert@ Notes: svn path=/head/; revision=292021
* Fix bootstrapping of libopenbsd on build hosts where KERN_PROC_NFDSCraig Rodrigues2015-11-141-0/+38
| | | | | | | it not defined. Notes: svn path=/head/; revision=290838
* Add imsg to libopenbsd.Craig Rodrigues2015-11-141-0/+3
| | | | | | | | This will help with importing OpenBSD programs such as ypldap into the base system. Notes: svn path=/head/; revision=290836
* Implemtn getdtablecount() to count open file descriptors for current process.Craig Rodrigues2015-11-143-1/+98
| | | | | | | | | | | Use underlying sysctl implemented by mjg in r290473. PR: 194985 Reviewed by: bapt, mjg Differential Revision: https://reviews.freebsd.org/D4084 Notes: svn path=/head/; revision=290835
* Fix spelling error.Craig Rodrigues2015-11-051-1/+1
| | | | | | | Reported by: junovitch Notes: svn path=/head/; revision=290378
* Add README, similar to the one from libnetbsd.Craig Rodrigues2015-11-051-0/+7
| | | | Notes: svn path=/head/; revision=290377
* Import imsg from OpenBSD's libutil.Craig Rodrigues2015-11-044-0/+1279
| | | | | | | | imsg provides functions for communication between processes using sockets. imsg is used by programs in OpenBSD such as ypldap. Notes: svn path=/head/; revision=290375
* Rename libohash to libopenbsd.Craig Rodrigues2015-11-046-0/+797
libopenbsd is an internal library which to bring in compatibility stuff from OpenBSD. This will allow us to bring in more OpenBSD utilities into the FreeBSD base system. We similarly use libnetbsd for bringing in stuff from NetBSD. Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D4078 Notes: svn path=/head/; revision=290351