summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch from Miles Bader to allow Large File support on the v850.Eric Andersen2002-03-014-6/+73
|
* Fix for some comments, from Miles BaderEric Andersen2002-03-011-4/+2
|
* Patch from M. R. Brown <mrbrown@0xd6.org> to fix pthread supportEric Andersen2002-03-015-1/+222
| | | | for SH, and fix vfork
* Major rework of the include files to eliminate redundancyEric Andersen2002-03-01571-57415/+2583
| | | | | and to better support each arch. This is a really big patch... -Erik
* Patch from David Schleef to check for proper 16-byte aligedEric Andersen2002-02-281-0/+10
| | | | stack pointer on powerpc
* Remove some debugging codeEric Andersen2002-02-271-0/+4
|
* Fix C++ supportEric Andersen2002-02-271-0/+2
|
* Lose the -nostdlib, which causes problems with older binutils, andEric Andersen2002-02-272-1/+2
| | | | | add some fflush calls, since it seems streams are not flushed before an exec
* A few more little cleanupsEric Andersen2002-02-262-3/+3
|
* Add an md5crypt testEric Andersen2002-02-263-2/+33
|
* Don't redefine stuffEric Andersen2002-02-264-10/+31
|
* Be consistant and use an unsigned char * throughoutEric Andersen2002-02-262-3/+4
|
* don't pretend to be reentrant yetEric Andersen2002-02-261-0/+6
|
* Doh! Tests were not being compiled with warnings and optimizationEric Andersen2002-02-261-2/+2
|
* Fix redefine problemEric Andersen2002-02-261-2/+5
|
* Fix redefinition problemEric Andersen2002-02-264-12/+40
|
* Give the label a ; so compilers have no excuse to whineEric Andersen2002-02-261-1/+3
|
* Odd. This seems to be in the wrong spot...Eric Andersen2002-02-261-0/+113
|
* Don't try to return stuff from void funcsEric Andersen2002-02-261-2/+2
|
* Remove an erroneous -L-Eric Andersen2002-02-261-1/+1
|
* Patch from Miles Bader to restrict common truncate64/ftruncate64Eric Andersen2002-02-261-17/+34
| | | | | syscalls to 64-bit systems, since we can't be sure that the _syscall macros can cope with 64 bit args on 32 bit arches.
* Proper support for setting h_errnoEric Andersen2002-02-263-2/+17
|
* Fix rpc + threads so it now compiles.Eric Andersen2002-02-262-28/+62
|
* Thomas Fritzsche noticed that __open_etc_hosts was only changing aEric Andersen2002-02-261-6/+6
| | | | | | local copy of the FILE pointer, thereby causing /etc/hosts lookups to fail with Resolver errors. This patch from Thomas fixes the problem.
* Enable pread/pwriteEric Andersen2002-02-262-12/+3
|
* Patch from Miles Bader: All the -M* options shouldEric Andersen2002-02-261-3/+3
| | | | suppress linking (right now, only `-M' does).
* Adjust function naming and make sure everything is properlyEric Andersen2002-02-264-101/+98
| | | | | static to avoid symbol leakage. -Erik
* Remove elimination of __BEGIN_DECLS/__END_DECLSEric Andersen2002-02-261-4/+0
|
* I shouldn't try to program when sleepy, since I totally botchedEric Andersen2002-02-251-4/+4
| | | | | the fcntl interface... -Erik
* When messing with fd NONBLOCK status, put things back the way we foundEric Andersen2002-02-251-1/+4
| | | | | | them afterwards. As was, this hosed things up for fds shared with a parent process. Very bad for shells... Oops. -Erik
* Try this version instead...Eric Andersen2002-02-251-4/+7
|
* Joerg Schmitz-Linneweber recommends using tar -f - instead of -OEric Andersen2002-02-251-1/+1
| | | | to prevent interference with the TAPE env var
* Yet another iteration...Eric Andersen2002-02-251-51/+62
|
* Both Miles and Manuel complained about this one. I was silentlyEric Andersen2002-02-251-2/+2
| | | | losing all -Wl calls...
* Added locale and lastlogDavid McCullough2002-02-251-6/+8
|
* Support isblank()Eric Andersen2002-02-234-3/+23
|
* Fix the compiler wrapper yet more...Eric Andersen2002-02-232-6/+4
|
* IEEE Std 1003.1-2001 says that the "fclose() function shall fail [with]Eric Andersen2002-02-231-7/+1
| | | | | | | | EINTR [when] the fclose() function was interrupted by a signal". But looking in the current uClibc stdio.c for some bizarre reason we had a special case where when errno was EINTR, we would keep on trying instead. Doh! Fix that, -Erik
* Several naming cleanups so threads work properly againEric Andersen2002-02-234-79/+54
|
* Fix a corner case which I had botched.Eric Andersen2002-02-231-7/+6
| | | | -Erik
* Add a better error msgEric Andersen2002-02-231-1/+2
|
* Per discussion with Manuel, when we call __stdio_flush_buffersEric Andersen2002-02-231-1/+9
| | | | | | from abort() and from _exit(), we need to ensure that flushing will not cause us to block. So use fcntl to set the fd's to non-block mode...
* Update todo listEric Andersen2002-02-231-24/+52
|
* Test for libcrypt (which is partly broken ATM)Eric Andersen2002-02-235-1/+351
|
* This should be a little better...Eric Andersen2002-02-231-7/+6
|
* I was confusing the effects of _LARGEFILE_SOURCE with those ofManuel Novoa III2002-02-221-27/+25
| | | | | _FILE_OFFSET_BITS regarding aliasing of the *64 funcs. :-( Hopefully, this version is correct...
* Build fix for armDavid Schleef2002-02-221-1/+10
|
* Special rules for mipsel. Force some variables in Config, inDavid Schleef2002-02-222-3/+14
| | | | case they're wrong (they are.) Remove Config during clean.
* Several mips fixes from Geoffrey Espin. With these, busybox withEric Andersen2002-02-224-6/+32
| | | | ash/vi/etc now works just fine with uClibc on mips.
* Let the large file stuff be cancelableEric Andersen2002-02-211-14/+66
|