summaryrefslogtreecommitdiffstats
path: root/libc/misc/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-62/+8
|
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-8/+7
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* merge parallel build supportMike Frysinger2005-01-251-4/+1
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Let people enable ftw, make glob an option, add a new "Big and Tall"Eric Andersen2003-09-061-1/+7
| | | | top level config menu.
* Some more buildroot-motivated fixes. Avoid installing some headers, asManuel Novoa III2003-09-031-1/+4
| | | | well as stub libintl, depending on configuration.
* conditionally add wordexp, in this case ripped from glibc.Eric Andersen2003-08-241-1/+4
| | | | I hate to add this stuff, but it is specified by SuSv3...
* Add a new *scanf implementation, includeing the *wscanf functions.Manuel Novoa III2003-08-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Should be standards compliant and with several optional features, including support for hexadecimal float notation, locale awareness, glibc-like locale-specific digit grouping with the `'' flag, and positional arg support. I tested it pretty well (finding several bugs in glibc's scanf in the process), but it is brand new so be aware. The *wprintf functions now support floating point output. Also, a couple of bugs were squashed. Finally, %a/%A conversions are now implemented. Implement the glibc xlocale interface for thread-specific locale support. Also add the various *_l(args, locale_t loc_arg) funcs. NOTE!!! setlocale() is NOT threadsafe! NOTE!!! The strto{floating point} conversion functions are now locale aware. The also now support hexadecimal floating point notation. Add the wcsto{floating point} conversion functions. Fix a bug in mktime() related to dst. Note that unlike glibc's mktime, uClibc's version always normalizes the struct tm before attempting to determine the correct dst setting if tm_isdst == -1 on entry. Add a stub version of the libintl functions. (untested) Fixed a known memory leak in setlocale() related to the collation data. Add lots of new config options (which Erik agreed to sort out :-), including finally exposing some of the stripped down stdio configs. Be careful with those though, as they haven't been tested in a long time. (temporary) GOTCHAs... The ctype functions are currently incorrect for 8-bit locales. They will be fixed shortly. The ctype functions are now table-based, resulting in larger staticly linked binaries. I'll be adding an option to use the old approach in the stub locale configuration.
* Add hsearch and hsearch_r. Consolidate all functions prototyped inManuel Novoa III2002-12-021-3/+3
| | | | search.h in one directory.
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-311-3/+3
| | | | | | | | | | | | | | | been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
* Add gnu obstack support. I still need to implement the obstack_printfManuel Novoa III2002-09-191-1/+1
| | | | and obstack_vprintf, but at least now the reiserfsprogs build.
* Obligatory forgotten file during commit...Manuel Novoa III2002-05-231-1/+1
|
* New locale support (in development). Supports LC_CTYPE, LC_NUMERIC,Manuel Novoa III2002-05-061-0/+3
| | | | | | | | | | | | | | | | | | | | | | LC_TIME, LC_MONETARY, and LC_MESSAGES for the SUSv3 items. Also, nl_langinfo() when real locale support is enabled. New implementation of ctype.h. New implementation of wctype.h. New implementation of most of the string functions (smaller). New implementation of the wcs/wmem functions. These are untested, but they're also just preprocessor-modified versions ot the corresponding str/mem functions. Tweaked qsort and new bsearch. Stuff still pending: stdlib.h and wchar.h mb<->wc functions. I actually have working versions of the stdlib ones, but the reentrant versions from wchar.h require some reworking. Basic replacement and translit support for wc->mb conversions. (groundwork laid). Simple-minded collate support such as was provided by the previous locale implementation. (mostly done -- 8-bit codesets only) Shared mmaping of the locale data and strerror message text.
* Support getttyent and friends so ncurses will compileEric Andersen2002-03-211-1/+1
|
* Support gnu error(), patch contributed by Andrew Ip <aip@cwlinux.com>Eric Andersen2002-03-151-1/+2
|
* Merge in the pthread library. This is the linuxthreads library taken fromEric Andersen2002-02-201-0/+3
| | | | | | | | glibc 2.1.3 and ported to work with uClibc by Stefan Soucek and Erik Andersen (me). Stefan has hacked things up such that linuxthreads runs on MMU-less systems (tested only on arm-nommu). Erik cleaned things up and made it work properly as a shared library. -Erik
* Added insque/remque supportDavid McCullough2002-01-171-1/+1
|
* Allow people to exclude regex code, since it is huge (27k)Eric Andersen2002-01-091-1/+4
|
* Support statvfs and statfs. Added getmntent_r (and made it useEric Andersen2002-01-061-1/+1
| | | | | strtok_r instead of strtok), taught getmntent to use getmntent_r. -Erik
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-191-0/+1
|
* Recurse into 'file'Eric Andersen2001-09-151-2/+2
|
* Ok, this should finish off my massive ro-organization. The sourceEric Andersen2001-05-121-2/+1
| | | | | | | | | tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik
* Remove the old crypt implementationEric Andersen2001-04-191-1/+1
|
* Put regex back inEric Andersen2001-03-201-1/+1
|
* Move the dirent stuff. I suppose it is system dependant, but thenEric Andersen2001-03-191-1/+1
| | | | | it really should be grouped together too. And it needed to be grouped more then it needed to be in sysdeps/linux/common
* Add in the sysvipc patch from Michael ShmulevichEric Andersen2001-03-191-8/+2
|
* Part of the ctype locale support.Manuel Novoa III2001-03-181-1/+1
|
* Delete wordexp. There isn't much point in having this sinceEric Andersen2001-03-131-1/+1
| | | | | so few apps use it, and it is just a stub anyways. Better to just skip it.
* Hmm. Seems I left wordexp off. oops.Eric Andersen2001-03-081-1/+1
|
* Add in wordexp support (mostly stubbed out for now) since the busyboxEric Andersen2001-03-081-1/+2
| | | | | shell, lash, is about to start using wordexp. -Erik
* Add tsearch functions from libc-5.3.12.Manuel Novoa III2001-02-151-1/+1
|
* A large update from Manuel Novoa III <mnovoa3@bellsouth.net>.Eric Andersen2001-01-111-1/+1
|
* Patch from James Graves <jgraves@deltamobile.com> to getEric Andersen2001-01-021-1/+7
| | | | | m68k started. Should be just sysdeps/linux/m68k left to hack at this point...
* Move stuff out if pwd_gep that doesn't belong there (getpass, utmp stuff)Eric Andersen2000-12-231-1/+1
|
* Fix doc blunder.Eric Andersen2000-11-041-4/+4
|
* Make spelling of uClibc be consistant.Eric Andersen2000-11-041-1/+1
|
* More cleanups. Fix things so tinylogin compiles.Eric Andersen2000-11-041-4/+4
| | | | Fix a bug in getdelim -- patch from David Whedon <dwhedon@gordian.com>.
* More random fixes and additions.Eric Andersen2000-10-271-1/+1
|
* Add some more stuff -- {get|set}mntent, getline, getdelim, etc.Eric Andersen2000-10-261-1/+1
|
* A few more syscalls.Eric Andersen2000-10-251-1/+1
|
* Fix up ctype.hEric Andersen2000-10-171-1/+5
|
* Finish reorganizing things. At least I think I've finished.Eric Andersen2000-10-111-1/+1
|
* New misc tree that actually has misc stuff in it.Eric Andersen2000-10-111-0/+46