• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

RSS
Rev. Time Author
538aa2d 2002-04-25 16:18:12 Miles Bader

Use __off64_t instead of off64_t.

14efb6d 2002-04-25 15:49:08 Eric Andersen

Stupid libgcc.a from gcc 2.95.x uses __write in pure.o
which is a blatent GNU libc-ism... Cope.
-Erik

81e8f98 2002-04-25 13:40:06 Miles Bader

Don't bother zeroing BSS, since actually we _can_ rely on the loader to do it.

3e87ecb 2002-04-25 10:39:08 Eric Andersen

Rework libcrypt based on the openbsd crypt implementation so that it passes the
DES validation suite. setkey_r, encrypt_r, and __des_crypt_r are not really
reentrant now, and that should be fixed (or we should drop crypt_r and friends
which are not supported by SuSv3).
-Erik

4844aa2 2002-04-25 04:52:39 Eric Andersen

Bah. Fix (non)password issue.

66361fb 2002-04-25 03:51:38 Eric Andersen

Don't use $(PWD), use $(shell pwd) instead

bce1aac 2002-04-25 03:43:48 Eric Andersen

Add support for mmap64
-Erik

15844e5 2002-04-23 01:50:52 Eric Andersen

Minor updates.

e261c8f 2002-04-21 08:26:32 David Schleef

Moved old README to INSTALL, and wrote a new README that is much more
like an introduction to the project.

6f691fb 2002-04-21 07:43:27 David Schleef

Make sure that CROSS="" for native building.

79469b5 2002-04-20 02:25:02 David Schleef

uploading new snapshot

9318e72 2002-04-20 02:24:35 David Schleef

updated kernel source package to 2.4.18

57119fe 2002-04-20 02:24:15 David Schleef

updated to 0.9.11

95e9707 2002-04-17 21:56:57 Eric Andersen

Patch from Axel Barnitzke <barney@xkontor.com> to fix handling
of the isinf() macro, which was a casulty of my grafting the
glibc header onto out math library.

9883239 2002-04-17 21:41:10 Eric Andersen

Patch from Axel Barnitzke <barney@xkontor.com> to add basic
support for struct _res. This is a minimalist implementation,
but should work for most anything out there.

8c8fbab 2002-04-17 21:34:36 Eric Andersen

Patch from Mike McDonald to make gethostbyname_r() not fail for things like
gethostbyname("192.168.0.1"), which should work even when the /etc/hosts and
/etc/config/hosts files do not exist.

83a5601 2002-04-17 20:32:37 Eric Andersen

Patch from Martin Proulx to not do ELFish things when not ELF.

ac582c1 2002-04-17 20:31:08 Eric Andersen

Patch from Martin Proulx to remove weak_aliases for non ELF compilers in
__uClibc_main for the _stdio_init and _stdio_term functions. Since
weak_aliases are defined as hard aliases for non ELF compilers, these 2 symbols
ended up to be multiply defined, as those two are defined in stdio.c.

9b4cbe2 2002-04-17 20:27:15 Eric Andersen

Stub out pread and pwrite when not available

108202d 2002-04-17 16:29:12 David Schleef

Change branch to fallthrough. Unclean, but it removes last R_PPC_REL24.

1410cc5 2002-04-17 15:30:14 Miles Bader

Just tail-call __uClibc_main. There's no real point to calling abort if
exit failed, and abort drags in some unecessary grot.

2ca01ad 2002-04-17 11:59:22 Eric Andersen

Remove strong aliases to symbols that we don't define in uClibc

844eb43 2002-04-15 16:32:29 Miles Bader

(L_dummy_main_reference): Reference the C symbol `main', not the linker
symbol `main'.

a546f7b 2002-04-14 12:42:45 Eric Andersen

Fix dummy main reference so it works...

5ce9147 2002-04-14 12:32:14 Eric Andersen

Manuel and I were looking into a problem with applications failing to link
(undefined reference to `main') when the .o file containing main was contained
in an static library(a '.a' ar archive). It turns out that due to its single
pass nature, GNU ld was failing to pull it into the build. This sticks a dummy
reference to main() into crt0.o, so that when an application is linked with the
main() function in a static library, we can be sure that main() actually gets
linked in.
-Erik

ed44f35 2002-04-14 05:58:16 David Schleef

use uClibc_config_fix.pl for configuration

eb3cd98 2002-04-14 05:57:30 David Schleef

use ds account on cvs.uclibc.org

0a15e8c 2002-04-14 00:44:56 Eric Andersen

Fixed stpncpy() implementation from Manuel

929686b 2002-04-14 00:13:59 Eric Andersen

Patch from Jim Treadway <jim@stardot-tech.com>:
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 *'.

520204f 2002-04-12 03:34:45 Eric Andersen

Update TODO list