aboutsummaryrefslogtreecommitdiff
path: root/libexec/flua/libfreebsd/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* flua: add freebsd.kenv, kenv(2) bindingsBaptiste Daroussin2024-09-141-0/+1
| | | | | | | | | | | Add bindings for kenv(2) right now only get() has been created it allows do dump into a key/value table the kernel environement if no argument is passed, or it returns the value associated to the provided key. Reviewed by: imp, kevans, markj Accepted by: imp, kevans Differential Revision: https://reviews.freebsd.org/D46654
* flua: move modules source into the main source directoryBaptiste Daroussin2024-09-121-0/+3
Follow the path of what is done with bsnmp, build the modules along with the main binary, this allows to build the modules at a moment where all needed libraries are already built and available in the linker path instead of having to declare all the libraries which a flua module will be linked to in _prebuild_libs. Discused with: markj Reviewed by: markj, jrtc27, kevans, imp Accepted by: kevans, imp Differential Revision: https://reviews.freebsd.org/D46610