Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-27 | Update to accomodate the header file changes | Eric Andersen | |
2001-09-15 | Oops | Eric Andersen | |
2001-09-15 | Recurse into 'file' | Eric Andersen | |
2001-09-15 | Add lockf | Eric Andersen | |
2001-09-06 | Patch from Andrew Ip <aip@cwlinux.com> to add ftime, | Eric Andersen | |
allowing openssl to be built. | |||
2001-08-17 | Fix a silly bug with the header file | Eric Andersen | |
2001-08-14 | use some #defines internal to the ctype functions to eliminate them | Eric Andersen | |
calling other tiny ctype functions. Now all ctype funcs will end up with no extern references, which ends up shrinking both the uClibc shared lib and shrinking client code. -Erik | |||
2001-08-09 | Make sure the weak aliases are defined before the functions/vars | David McCullough | |
they use as stubs, otherwise, some compilers (ie., m68k-elf) tie them to the local symbols and the weak aliases do not work. | |||
2001-07-01 | These zero-length files apparently weren't deleted from cvs. | Manuel Novoa III | |
2001-06-26 | ANSI/ISO specifies that no library function sets errno to 0. | Manuel Novoa III | |
2001-06-26 | Looks like we lost clearing errno | Eric Andersen | |
2001-06-25 | Remove simulated d_type support for getdents and the dirent struct, and use | Manuel Novoa III | |
the straight getdents syscall instead of the wrapper (which leaked memory). | |||
2001-06-12 | Cleanup the toploevel makefile handing of shared libs. Add weak_alias | Eric Andersen | |
define, and set things up so nasty old coff toolchains can now compile things and should actually work again. -Erik | |||
2001-06-07 | The m68k-elf compiler chokes on this code when compiling for PIC as | David McCullough | |
compile_regex is one big function (relative function calls further than cpu32 can do). The solution was to re-order the code a little to reduce the size of these relative calls. So the total sum of the changes is: * Move compile_regex to the end of the file * make store_op1 an inline Unfortunately CVS diff doesn't show this and makes it look like the whole file has been severely hacked. It hasn't. | |||
2001-06-02 | Add locale-enabled strcoll function from vodz, plus supporting tool. | Manuel Novoa III | |
2001-06-01 | Put the locale stuff back how it was till we can get a proper implementation | Eric Andersen | |
that doesn't suck so badly. -Erik | |||
2001-05-28 | Make selection of uClibc floating point support in printf, etc. seperate | Manuel Novoa III | |
from libm float function support. Also, move all Config files out of the main directory. | |||
2001-05-26 | Fix regex support to be compatible with 4.2 BSD regex library. This is | Eric Andersen | |
the last bit that was needed to get util-linux to compile. | |||
2001-05-26 | Add in message queue support, based on work from <tapu@371.net>. | Eric Andersen | |
This is required to compile util-linux | |||
2001-05-25 | Add in some more GNU compatible locale stuff. I only implement the | Eric Andersen | |
C locale of course. util-linux needs this stuff to compile... | |||
2001-05-23 | Remove dead code. | Manuel Novoa III | |
2001-05-12 | Ok, this should finish off my massive ro-organization. The source | Eric Andersen | |
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 | |||
2001-05-09 | Add in an older libc5 glob implementation, which is a bit thinner. | Eric Andersen | |
-Erik | |||
2001-05-08 | Turns out alphasort was totally broken. This fixed one works. | Eric Andersen | |
-Erik | |||
2001-05-08 | A patch from Jon Nelson <jnelson@securepipe.com> to make scandir | Eric Andersen | |
sort things as it is supposed to do. | |||
2001-04-19 | Remove the old crypt implementation | Eric Andersen | |
2001-04-18 | Add missing time() | Eric Andersen | |
2001-04-18 | Update temp file handling and use a single function to do all | Eric Andersen | |
the heavy lifting (most of the heavy lifting stolen from glibc, but reduced a bit). | |||
2001-04-06 | Fix up more leftovers resultant from fixing _LIBC | Eric Andersen | |
2001-04-06 | Fix include/errno.h to not use kernel header, and instead use bits/errno.h. | Eric Andersen | |
This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik | |||
2001-03-21 | Stub out localeconv. Please look over this to check it is correct.... | Eric Andersen | |
I started trying to read the glibc code -- but that code is far too messy to be read. So I just wrote a silly C app against glibc, set the locale to POSIX, then called localeconv(). I wrote this version of localeconv.c so it returns the same stuff. -Erik | |||
2001-03-20 | Fix from Jon Nelson for error in timezone | Eric Andersen | |
-Erik | |||
2001-03-20 | Put regex back in | Eric Andersen | |
2001-03-20 | Add an empty DIRS target incase it gets inherited from the env. | David McCullough | |
2001-03-19 | Add in the timezone global from time.h, from a patch by | Eric Andersen | |
Jon Nelson <jnelson@boa.org> | |||
2001-03-19 | Add in alphasort (working fine) and scandir (just a stub for now). | Eric Andersen | |
-Erik | |||
2001-03-19 | Move the dirent stuff. I suppose it is system dependant, but then | Eric Andersen | |
it really should be grouped together too. And it needed to be grouped more then it needed to be in sysdeps/linux/common | |||
2001-03-19 | Add in the sysvipc patch from Michael Shmulevich | Eric Andersen | |
2001-03-19 | Since Erik apparently wants def/undef vs def 1/0... | Manuel Novoa III | |
2001-03-18 | Part of the ctype locale support. | Manuel Novoa III | |
2001-03-13 | Delete wordexp. There isn't much point in having this since | Eric Andersen | |
so few apps use it, and it is just a stub anyways. Better to just skip it. | |||
2001-03-08 | Hmm. Seems I left wordexp off. oops. | Eric Andersen | |
2001-03-08 | Add in wordexp support (mostly stubbed out for now) since the busybox | Eric Andersen | |
shell, lash, is about to start using wordexp. -Erik | |||
2001-02-27 | stdio mostly rewritten... passes lots of tests now. | Manuel Novoa III | |
printf now supports long double, plus some bug fixes. | |||
2001-02-27 | For some reason the fancy attribute tags were not working on m68k so | David McCullough | |
I followed environ example which uses asm and it seemed to fix the problem nicely. It should be ok on i386. Could some check it please :-) | |||
2001-02-19 | Make sure errno is 0 before we call main (may have been set while initializing). | Manuel Novoa III | |
2001-02-19 | Create __uClibc_main to handle what can be done in C instead of each arch's | Manuel Novoa III | |
respective crt0.S. crt0.S should now only be responsible for setting things up to call __uClibc_main(argc, argv, envp), which will do any other necessary setup (setting global __environ, stdio init, etc), call main, and exit. This should ease both maintainance and porting. | |||
2001-02-15 | Fix LIBC rule. (cut-and-paste user bug...) | Manuel Novoa III | |
2001-02-15 | Add tsearch functions from libc-5.3.12. | Manuel Novoa III | |
2001-02-09 | Remove times and all the foolishness surrounding it. There is | Eric Andersen | |
a syscall that does this, so use that. -Erik |