summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-09-27re-enable ntohl and friendsEric Andersen
2001-09-27Silence a silly warningEric Andersen
2001-09-27Silence stupid warnings caused by bad kernel network includesEric Andersen
2001-09-27Gut this file, and quit referrng to _IO_* junkEric Andersen
2001-09-27Optimize for size, and disable expensive inliningEric Andersen
2001-09-27Add in missing fileEric Andersen
2001-09-27Scrub up a few test thingsEric Andersen
2001-09-27Finish syncing up armEric Andersen
2001-09-27Update to accomodate the header file changesEric Andersen
2001-09-27Rev all the header files to sync things with glibc 2.2.4Eric Andersen
2001-09-25Fix fseek behavior.Manuel Novoa III
2001-09-21Fix the vfork test so it actually works this time.Eric Andersen
-Erik
2001-09-21Add in a simple vfork testEric Andersen
2001-09-15OopsEric Andersen
2001-09-15Recurse into 'file'Eric Andersen
2001-09-15Add lockfEric Andersen
2001-09-13Patch from John Tyner <jtyner@cs.ucr.edu> to avoid redefinedEric Andersen
symbols by piping results through uniq
2001-09-06Patch from Andrew Ip <aip@cwlinux.com> to add ftime,Eric Andersen
allowing openssl to be built.
2001-08-31Preevaluate some stuff so it only gets run once, speeding the compileEric Andersen
2001-08-30"Kim B. Heino" <Kim.Heino@bluegiga.com> reportsEric Andersen
In the libc/stdlib/bsd_getpt.c file you have line: memcpy (buf, _PATH_PTY, sizeof (_PATH_PTY) - 1); It really should be: memcpy (buf, _PATH_PTY, sizeof (_PATH_PTY) ); The last nul character must be copied too because the next line uses strlen() to get buf's length.
2001-08-29Wrap up some long long stuff in __UCLIBC_HAS_LONG_LONG__Eric Andersen
2001-08-29Minor updateEric Andersen
2001-08-28Fix goofy formattingEric Andersen
2001-08-28This will hopefully make global constructors and destructors workEric Andersen
2001-08-28Add "__write" as a weak alias for "write"Eric Andersen
2001-08-27elide some debug noiseEric Andersen
2001-08-27Make gdb/gcc/binutils happyEric Andersen
2001-08-24Use "stdin", "stdout", and "stderr", not "_stdin", "_stdout", andEric Andersen
"_stderr", since this is what gcc and libgcc expect... -Erik
2001-08-24Add the __fopen prototype, since I pulled it from stdio.hEric Andersen
2001-08-24Get rid of non standard macros for things that are functionsEric Andersen
2001-08-24atoi, atol, atoll, and atof are supposed to be functions, not macros.Eric Andersen
-Erik
2001-08-21Add missing shadow.hEric Andersen
2001-08-21Add byteswap.h, per glibcEric Andersen
2001-08-18Fix problem with possible redundant entries.Eric Andersen
2001-08-17Fix a silly bug with the header fileEric Andersen
2001-08-17Fix a stupid bug causing the ld-uClibc entry to be lost.Eric Andersen
2001-08-14Don't use --uclibc-use-build-dir for the tests unless BUILD_UCLIBC_LDSO=trueEric Andersen
2001-08-14powerpc doesn't have sbrk yet, so use "malloc", not "malloc-930716"Eric Andersen
2001-08-14Put a bandaid on getpgrp behaviorEric Andersen
2001-08-14Proper support for tests spannint multiple .o filesEric Andersen
-Erik
2001-08-14use some #defines internal to the ctype functions to eliminate themEric 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-14Fix the "install_target" target to install to $(PREFIX)$(TARGET_PREFIX)Eric Andersen
2001-08-13A few more (final?) cleanups for the installer behavior. I now thinkEric Andersen
things are working perfectly (perhaps I shouln't think so much)
2001-08-13Add in a make release targetEric Andersen
2001-08-13Fix SYSTEM_DEVEL_PREFIX to allow install of the <arch>-uclibc- spooferEric Andersen
toolchain to any arbitrary directory...
2001-08-13Add in TARGET_PREFIX, which was still used in a few spots (andEric Andersen
appropriately so). Leave this hidden and set to a sane default since nobody should really need to change it...
2001-08-11Use malloc on arm (since I've never bothered to write sbrk)Eric Andersen
2001-08-11I just wrote a stpncpy() since someone wanted itEric Andersen
2001-08-11I rewrote strcat without any function calls.Eric Andersen
2001-08-11Sync up ldd behaviorEric Andersen