summaryrefslogtreecommitdiff
path: root/libexec
AgeCommit message (Collapse)Author
2014-03-04Make the abs() use check non-fatal for a bogus use in the LFS cleanerd.joerg
2014-02-27Global variable is never a null pointer.joerg
2014-02-09- bump man page datemrg
- strip :80 off virtual host names as they're the default
2014-02-09some fixes for virtual hosting support from Rajeev V. Pillai:mrg
- memory leaks in virtual host plugged - ensure hr_host is only the host/port part when the request contains the hostname in the URI not Host: header. also update the references to the old http/1.1 draft rev 06 to RFC 2616 (fortunately, most sections hadn't moved.)
2014-02-02display the tempdir for exported files as well.mrg
2014-02-02call gzip directly for distfile export target; it's usually run outsidemrg
of the normal build.
2014-02-02add lua-bozo.c.mrg
2014-02-02update for 2014-02-01.mrg
2014-01-31Catch up with _lwp_park change.joerg
2014-01-30move a variable into the scope of its use, where the assignmentmrg
has already validated the pointers used. fixes a bug reported in private email from dogcow@.
2014-01-27Pass the -n flag to gzip invocations.apb
This prevents it from embedding a timestamp in the output. We pass "-n" unconditionally, not conditional on MKREPRO, because many other invocations of gzip already passed the -n flag unconditionally.
2014-01-27Use ${TOOL_GZIP} instead of just gzip in all Makefilesapb
outside */dist/* subdirectories. When USE_PIGZGZIP=yes, bsd.own.mk sets TOOL_GZIP=${TOOL_PIGZ}, so there's no need to test USE_PIGZGZIP in these Makefiles.
2014-01-12Don't align random sections. Simplify by using .pushsection/.popsection.joerg
2014-01-02sort the contributor list, and update the defines list to include lua.mrg
2014-01-02update for 20140102.mrg
2014-01-02update version, date and copyright.mrg
2014-01-02- update CHANGES with recent changesmrg
- update version to 20140102 - update copyrights - use getcwd() over getwd() - fix lean build (don't include lua)
2013-12-03Don't use GOT relocations. Use PC relative for the GOT and GOTOFF formatt
_DYNAMIC. Make thumb friendly.
2013-11-27CID 1132773: Fix file descriptor leakchristos
2013-11-20If dlopen of the dynamic linker is requested, e.g. by rump inskrll
rumpuser_dl_bootstrap, then return &_rtld_objself as the handle and do not create a duplicate mapping. The handle is mostly useless as _rtld_objself doesn't appear on _rtld_objlist. This fixes a problem on earm platforms where ld.elf_so (currently) has an init_array section. Calling this caused binaries to segv.
2013-11-19fix bad freembalmer
2013-11-16Remove hack now it's fixed in 4.8.2skrll
2013-11-13CID 1107545, 1107546: fix memory leakchristos
2013-11-13CID 1107546: Fix memory leakchristos
2013-11-13Apply hack for gcc 4.8 bug on rtld.c.skrll
2013-10-21Only initialise TLS space from the PT_TLS segment, if the size isjoerg
positive and the offset has been computed. Fixes PR lib/48324.
2013-10-19fix unused variable warningschristos
2013-10-19Add debug code.skrll
2013-10-17fold long line in a readable way; pass nil as query table if reading form ↵mbalmer
data fails
2013-10-17better approach to NUL terminate stringsmbalmer
2013-10-17plug a memory leakmbalmer
2013-10-17zero allocated memory buffersmbalmer
2013-10-16Also depend on LIBLUA, and add -lm to allow static linking.he
2013-10-12Sort. More markup.wiz
2013-10-12no need to check free() arguments against NULLmbalmer
2013-10-12it's Lua, not luambalmer
2013-10-12add Lua scripting support to bozohttpd, see httpd(8) for detailsmbalmer
2013-10-12remove trailing whitespacembalmer
2013-10-09Use MACHINE_CPU for m68k. Use similar logic for both tests.matt
2013-10-04- complete renaming of -w to -c from 1.38jnemeth
- update usage string to match - this fixes PR/48234 by Jeff Woodall
2013-10-03The R_SPARC_L44 relocation type is documented to be truncating andmartin
calculated as "(S + A) & 0xfff" - so while it (usually) sets a "imm13" field in the opcode, only 12 bits of the calculated value can be used.
2013-09-23Missing , in table initializermartin
2013-09-10For earm, emit a MARCH note.matt
2013-09-04allow compile-time overriding of BOZO_WRSZ/MMAPSZ parameterspooka
2013-08-12Some architectures can't create unwind tables without the frame pointer,joerg
so don't use -fomit-frame-pointer on those.
2013-08-12Use __dead.joerg
2013-08-11Don't try to estrdup() NULL; thanks martin@dholland
2013-08-11Fix another automatic variable that is life both pre- and post the siglongjmpmartin
(which gcc calls "might be clobbered") by marking it volatile: on some machines, this value might end up in a register loaded before the sigsetjmp, but not preserved by the siglongjmp later. Fixes the VAX build.
2013-08-11Use siglongjmp to jump out of signal handlers.dholland
2013-08-11Pass WARNS=5.dholland