summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-04-13use ds account on cvs.uclibc.orgDavid Schleef
2002-04-13Fixed stpncpy() implementation from ManuelEric Andersen
2002-04-13Patch from Jim Treadway <jim@stardot-tech.com>:Eric Andersen
The internal __getgrent function doesn't allocate enough memory to hold the trailing NULL pointer in the gr_mem member of the returned 'struct group *'.
2002-04-11Update TODO listEric Andersen
2002-04-11Fixed broken shell syntax.David McCullough
2002-04-11Added a dummy romfs target so this stuff slots nicely into theDavid McCullough
uClinux distro.
2002-04-10Minor doc updateEric Andersen
2002-04-10A last minute additionEric Andersen
2002-04-10Add a list of known bugs. Update the docs in preparation for a release.Eric Andersen
-Erik
2002-04-10SEND_NUMBER_STDERR is supposed to be calling _dl_simple_ltoa(),Eric Andersen
not _dl_simple_ltoahex(). Numbers are not supposed to be in hex. -Erik
2002-04-10John Traill <john.traill@motorola.com> noticed that on powerpcEric Andersen
a dev_t is _not_ a quad type, but a simple int. Doh! We fixed that months ago, but subsequently lost the fix, so this restores things.
2002-04-10Update ChangelogEric Andersen
2002-04-10Teach powerpc to whine loudly about using -fPIC when a R_PPC_REL24Eric Andersen
is encountered... -Erik
2002-04-10Mention pthreads for sparcEric Andersen
2002-04-10Fix libpthread compile for sparcEric Andersen
2002-04-10Some minor updates per discussion with Miles BaderEric Andersen
-Erik
2002-04-10Make assembly code PIC-compatible.David Schleef
2002-04-10Remove v850-specific versions of truncate64.c and ftruncate64.c.Miles Bader
2002-04-10Generic implemention works for v850 now, so we don't need a special version.Miles Bader
2002-04-09Removed handling for R_PPC_REL24, since it is deceptively useless.David Schleef
2002-04-09Russ Dill noticed that the symlinks for libpthread didn't matchEric Andersen
the other links. Fixed now. -Erik
2002-04-09Bump up version number...Eric Andersen
2002-04-09Add finite() to C89 math lib, since it is needed...Eric Andersen
-Erik
2002-04-09Fixup __USE_FILE_OFFSET64Eric Andersen
2002-04-09Add creat64Eric Andersen
-Erik
2002-04-09Fix the read/write auto-transition bugs. Note that if we can'tManuel Novoa III
auto-transition, we fail the operation. This is different than glibc's apparent behavior for writing of clearing the read buffer and still failing the write without setting the stream's error flag. Also, change a number of "errno = xxx" assignments to use __set_errno(). Also, change setvbuf(file, NULL, _IO{LF}BF, 0) behavior to more closely match glibc's by keeping the current buffer and only changing the buffering mode. Update setlinebuf() in the process to match the man page behavior.
2002-04-09Only set no buffering if we opened the file. Also, don't bother restoringManuel Novoa III
buffering since we will close the file in that case anyway.
2002-04-09Re-enable clnt_perror. Patch from Miles Bader.Eric Andersen
2002-04-09Add truncate64.cEric Andersen
2002-04-09Remove from syscalls.c, leave just ftruncate64.c and truncate64.cEric Andersen
which have implementations that works... -Erik
2002-04-09Revert Erik's changes... they were broken since there weren't enoughManuel Novoa III
bits for the extra ISblank flag. Instead, hardwire isblank() to not depend on locale for now. At least it will work for space and tab in the immenent release. This will all be blown away for the next release anyway, as I should be committing my new stuff in the next day or two.
2002-04-09Create a much more careful ftruncate64 implementation, that shouldEric Andersen
address all the concern Miles had with the earlier versions... -Erik
2002-04-09Per discussion on the mailing list, fix getpass properly.Eric Andersen
-Erik
2002-04-09Support ISblank properlyEric Andersen
2002-04-09Avoid defining __USE_FILE_OFFSET64, since we do _NOT_ wantEric Andersen
interfaces silently renamed under us or very bad things may happen... -Erik
2002-04-09undefine __USE_FILE_OFFSET64, since we absolutely do _NOT_ want interfacesEric Andersen
silently renamed under us or very bad things will happen. In this case, statfs64() ended up recurively calling statfs64() instead of statfs().... -Erik
2002-04-07New Debian snapshot. The release has ld.so for mips fubared.David Schleef
2002-04-06Add libungif-4.1.0b1Eric Andersen
2002-04-06Account for new upstream version. Fix shlibs, because they wereDavid Schleef
broken. Add INCLUDE_THREADS to Config.
2002-04-06Faster implementation from Miles BaderEric Andersen
2002-04-05Patch from Axel Barnitzke <barney@xkontor.com> to fixupEric Andersen
a problem with getpass() echoing passwords...
2002-04-05Add a fun pointer to make apps happyEric Andersen
2002-04-03Teach initfini to build properly on arches where gcc tries to beEric Andersen
sneaky behind our back... -Erik
2002-04-03Revert this file back to where it was so m68k can compile again.Eric Andersen
Oops. I'd hosed things up for m68k with the header file rework. -Erik
2002-04-03A ton of updates from Dwayne Fontenot <fontenot@jacques.activebuddy.com>.Eric Andersen
Thanks Dwayne!
2002-04-03Richard June <rjune@bravegnuworld.com> noticed that pututlineEric Andersen
was only writing the first sizeof-a-pointer bytes to the utmp file. oops. -Erik
2002-04-03Patch from Jim Treadway <jim@stardot-tech.com> to eliminateEric Andersen
use of alarm() and therefore SIGARLM in the resolver and to instead use select, which is much cleaner.
2002-04-03Richard June <rjune@bravegnuworld.com> noticed that setutentEric Andersen
was only opening utmp readonly. Oops.
2002-04-03Since pthreads work on powerpc, at least mention the option.Eric Andersen
2002-04-03Add the xopen swab() function, contributed by Kensuke Otake ↵Eric Andersen
<kensuke@phreaker.net>