summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2002-01-02Remove extraneous tabs from blank lines.blymn
2002-01-02We reference a monstartup(3), so let's actually make a link for it.briggs
2002-01-02Fix .Bd argument. Pointed out by mrg.wiz
2002-01-01%progbits, not @progbits (@ is a comment character in ARM assembly).thorpej
2002-01-01Multi-line string literals are not supported by ANSI C.thorpej
2002-01-01Set ELFSIZE=64.thorpej
2001-12-31fix __startwin() so it outputs the init strings to the correct device.blymn
2001-12-31* Fixed uninitialiased variable problem in newtermblymn
* Implemented better fix for screen not clearing for refresh() when newterm used to start curses.
2001-12-31Fix -Wshadow warnings (gcc 3.1).thorpej
2001-12-31Add support for invoking GNU C++ local destructors in shared objectsthorpej
via the __cxa_finalize() mechanism. XXX Only enabled for new-toolchain platforms, as it requires the assembler to support the .hidden pseudo-op.
2001-12-31Build separate crt{begin,end}.o and crt{begin,end}S.o files, ratherthorpej
than linking them at install time. Forthcoming changes require different behavior for static vs. shared object versions of these files.
2001-12-30Add support for registering Java classes emitted by the Java compilerthorpej
(e.g. the Java compiler in GCC 3.x) into the ".jcr" section.
2001-12-30Make sure the Dwarf2 EH frame info is 4-byte aligned.thorpej
2001-12-30Don't use multi-line string literals; they're not supported by ANSI C.thorpej
2001-12-30Fix -Wshadow warnings (gcc 3.1).thorpej
2001-12-30Fix -Wshadow warnings.thorpej
2001-12-30Rename the local variable "index" to "idx" to avoid shadowing a globalthorpej
declaration.
2001-12-30__bt_search(): Rename the local variable "index" to "idx" to avoidthorpej
shadowing a global declaration.
2001-12-30Make newterm set the default screen if the old default screen wasblymn
ended, stops new vi crashing. Thanks to Aymeric Vincent for the fix.
2001-12-29Fix a size calculation bug.augustss
2001-12-29fix a bug that uninitialised buffer is used when LANG is like "en_US".yamt
2001-12-28Update for rename from usb to usbhid.wiz
2001-12-28s/usb/usbhid/augustss
2001-12-28Update for uhidev(4) changes.augustss
Also rename libusb to libusbhid (which is a much better name).
2001-12-28Add Pause/Play key.augustss
2001-12-28* Add user-controlled mk.conf variableslukem
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR} is "yes". Defaults to "/usr/lib". - USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR} instead of ${LIBDIR}. Defaults to "no". Sets ${_LIBSODIR} to the appropriate value. This may be set by individual Makefiles as well. - SHLINKDIR Location of shared linker. Defaults to "/usr/libexec". If != "/usr/libexec", change the dynamic-linker encoded in shared programs * Set USE_SHLIBDIR for libraries used by /bin and /sbin: libc libcrypt libcrypto libedit libipsec libkvm libm libmi387 libtermcap libutil libz * If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so* to ${_LIBSODIR}/${LIB}.so* for compatibility. * Always install /sbin/init statically (for now) The net effect of these changes depends on how the variables are set: 1.) If nothing is set or changed, there is no change from the current behaviour: - Static /bin, /sbin, and bits of /usr/* - Dynamic rest - Shared linker is /usr/libexec/ld*so 2.) If the following make variables are set: LDSTATIC= SHLINKDIR=/lib SHLIBDIR=/lib Then the behaviour becomes: - Dynamic tools - .so libraries used by /bin and /sbin are installed to /lib, with symlinks from /usr/lib/lib*so to -> /lib/lib*so where appropriate - Shared linker is /lib/ld*so 3.) As per 2.), but add the following variable: USE_SHLIBDIR=yes This forces all .so's to be instaleld in /lib (with compat symlinks), not just those tagged by their Makefiles to be. Again, compat symlinks are installed
2001-12-27set SHLIBDIR again; it may be needed in the futurelukem
2001-12-27remove definition of SHLIBDIR as it is not needed herelukem
2001-12-27use ${LIBDIR} instead of /usr/liblukem
2001-12-27Fix newterm so it syncs curscr to stdscr when term is created. Thanksblymn
to Onno van der Linden for finding this bug.
2001-12-24update vm entries.chs
2001-12-24Make SNDCTL_DSP_POST a nop. It's explicitly *not* supposed to sleep, and asmycroft
it's merely advisory (and in fact is implemented as a nop in the OSS->ALSA shim), it should be safe to ignore it.
2001-12-22only _DIAGASSERT(dst != NULL) if n != 0lukem
2001-12-19Remove -Wa,-Av9a hack from <sys.mk> and relegate it to the places that needtv
it (kernel and libc). The current version of the gas assembler in the tree (2.11.2) already defaults to generating object files for "-Av9 -64", supporting V9 instructions in ELF64 object format. "-Av9a" is only needed for specific parts of the NetBSD base sources, and not for all third-party code.
2001-12-17PR/14975: Takayoshi Kochi: memory leak in regexec(3).christos
Always free m->pmatch and m->lastpos on error.
2001-12-17turn a macro into a simple statement.christos
2001-12-15Use __sh__ instead of __sh3__.thorpej
2001-12-13Document %z.kleink
2001-12-12Fix shifted space. (Freaky....)tv
2001-12-12Readability cleanups; MKfoo=no -> NOfoo.tv
2001-12-11 * Remove termcap globals from public interfaceblymn
* Clean up commented out code
2001-12-10remove referenced to raw (block) and cooked (character) devices, sincelukem
opendisk(3) doesn't care. the iscooked parameter just changes which paths in /dev are tried if the supplied one doesn't work.
2001-12-10revert previous.lukem
it appears that i misread the intent of the iscooked parameter when originally designing this feature with jason, and changing it broke some programs.
2001-12-10Fix off by one bug in t_agetstr - the pointer is moved to one past theblymn
end of the termcap capability string.
2001-12-10sync with other archs.msaitoh
Important fixes: > ldexp(denormal, exp>1023) would generate the wrong result in all non-overflow > cases. Totally rework this code to fix this bug *and* make it faster. > Don't ever return -0.0.
2001-12-10Sort conversion specifiers.kleink
2001-12-09- Changed clocktl interface to use syscallargs structuresmanu
- Implemented keep-state so that we don't have to open /dev/clockctl each time.
2001-12-09allow relative pathnames as a dirname argument of bindtextdomain(3)yamt
since some autoconf configure scripts depends on this behavior.
2001-12-09- be consistent about using "u_char" instead of "unsigned char"lukem
- delint
2001-12-08Implement AF_INET6 back-ends for inet_net_ntop() and inet_net_pton(), fromlukem
the BIND 8.3.0-T2A sources. Thanks to Paul Vixie for the pointer to it.