summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* anemo writes in Bug 9: use ElfW(auxv_t) instead of Elf32_auxv_tMike Frysinger2005-08-291-3/+4
|
* some fixes by anemo in Bug 9 to play nicely with 32 or 64 bit hostsMike Frysinger2005-08-294-13/+24
|
* point to uclibc.orgEric Andersen2005-08-281-2/+2
|
* asierllano writes in bug 370:Joakim Tjernlund2005-08-271-8/+3
| | | | | | The gcc compiler has deprecated the type __uint128 for 32-bits platforms. Due to the fact that this type was introduced in gcc-3.1 it is better to drop its use. (glibc has the same problem and uses this same solution).
* Frank Mehnert writes:Mike Frysinger2005-08-261-1/+1
| | | | | | libc/misc/time/time.c does not compile if __UCLIBC_HAS_TZ_FILE__ is disabled but __UCLIBC_HAS_TZ_CACHING__ is enabled. The following patch fixes this issue.
* import sparc-optimized string functions from glibcMike Frysinger2005-08-2644-1/+6783
|
* oops, new math code needs thisMike Frysinger2005-08-261-0/+28
|
* import different optimized versions of div funcs based upon target sparc archMike Frysinger2005-08-2520-1588/+1763
|
* optimize library based upon sparc cpu selectionMike Frysinger2005-08-251-0/+7
|
* allow people to select target sparc architectureMike Frysinger2005-08-251-0/+24
|
* add a note explaining the weird h_errno definitionMike Frysinger2005-08-251-1/+3
|
* a64l/l64a are now in uClibc, mkstemp and mktemp already wereMike Frysinger2005-08-241-2/+2
|
* import a64l and l64a from glibcMike Frysinger2005-08-243-2/+127
|
* add a link_warning() like glibc so ppl will [hopefully] stop using mktemp. ↵Mike Frysinger2005-08-241-7/+9
| | | | also redo whitespacing.
* Frank Mehnert writes:Joakim Tjernlund2005-08-241-2/+3
| | | | | | I use an implementation for malloc()/free() which is sensible about using data after freed. In libdl.c, rpnt1->next->next is accessed after rpnt1->next is freed. Attached patch fixes that problem.
* some updates from psm to better mirror glibc getent behaviorMike Frysinger2005-08-231-2/+17
|
* Hmm, things broke with vapiers update. LetsJoakim Tjernlund2005-08-181-2/+1
| | | | make it compile and let vapier worry about the rest :)
* add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵Mike Frysinger2005-08-181-0/+98
| | | | option to enable REENTRANT RPC
* use generic ELF wrappersMike Frysinger2005-08-181-3/+3
|
* add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵Mike Frysinger2005-08-182-15/+19
| | | | option to enable REENTRANT RPC
* rework some of the code to shrink sizeMike Frysinger2005-08-181-16/+19
|
* style tweaksMike Frysinger2005-08-181-39/+25
|
* remove 0.9.27 compat aliasMike Frysinger2005-08-181-1/+0
|
* add __thumb__ checkMike Frysinger2005-08-181-1/+1
|
* import updates from glibcMike Frysinger2005-08-181-92/+292
|
* remove some debug codeMike Frysinger2005-08-181-2/+1
|
* we have getprotobyname_r() now so use itMike Frysinger2005-08-181-9/+20
|
* install the manpages that are in the docs subdirMike Frysinger2005-08-181-3/+4
|
* moved/updated to docs/man/Mike Frysinger2005-08-182-48/+0
|
* also check for __thumb__Mike Frysinger2005-08-181-1/+1
|
* posix_memalign and posix_fadvise are in uClibc nowMike Frysinger2005-08-181-2/+1
|
* add the posix_memalign functionMike Frysinger2005-08-182-2/+44
|
* update the uClibc webpageEric Andersen2005-08-172-35/+62
|
* Make uClibc vfork() use kernels vfork() instead of fork(). Joakim Tjernlund2005-08-172-2/+25
|
* start of some rpc testsMike Frysinger2005-08-173-0/+81
|
* make sure UCLIBC_LDSO is defined if we are running in a test subdir rather ↵Mike Frysinger2005-08-171-0/+4
| | | | than toplevel
* dont install linux/asm headers if KERNEL_SOURCE == DEVEL_PREFIXMike Frysinger2005-08-171-1/+6
|
* We _must_ copy include/asm/ and include/linux/ when installing headers, sinceEric Andersen2005-08-171-2/+1
| | | | | once we build uClibc against those, they become part of uClibc's ABI and must be included as part of the install.
* when installing the include files, skip .svn, linux, and asm dirs since they ↵Mike Frysinger2005-08-171-1/+3
| | | | are just symlinks (and could possibly be pointing to right where we are installing)
* add a 0.9.27 compat symbol (_glibc_strerror_r) since the function has since ↵Mike Frysinger2005-08-161-0/+1
| | | | been renamed to __glibc_strerror_r in 0.9.28
* add an entry about __fputc_unlocked link errorsMike Frysinger2005-08-161-0/+17
|
* write some good manpagesMike Frysinger2005-08-152-0/+90
|
* For current kernels, we just use the getcwd() syscall. For old 2.0 linuxEric Andersen2005-08-151-1/+10
| | | | | kernels, we need this bit to make the non-syscall version that recurses up the directory path work properly. Thanks go to Harald Kuethe for sorting this out.
* Just quote the whole darn thing so we can print any error msg we wantEric Andersen2005-08-151-1/+1
|
* remove quote char which doesnt belongMike Frysinger2005-08-151-1/+1
|
* We do not supply a BSD style getloadavg() functionEric Andersen2005-08-151-7/+0
|
* Fix bug 387, missing _dl_progname for static apps.Joakim Tjernlund2005-08-151-0/+1
|
* Patch from Faidon Liambotis to update the debian stuffEric Andersen2005-08-157-23/+84
|
* move arch-specific checks out of shared dl-syscall.h and into arch-specific ↵Mike Frysinger2005-08-157-3/+12
| | | | dl-syscalls.h
* import thumb support from jbowler in Bug 385Mike Frysinger2005-08-151-4/+3
|