Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Minor cleanup | Eric Andersen | 2003-11-04 | 1 | -2/+2 |
| | |||||
* | Peter Kjellerstedt writes: | Eric Andersen | 2003-10-18 | 1 | -2/+2 |
| | | | | | | | | | | ln.patch: * Define $(LN) as ln in Rules.mak. * Change all occurrences of ln into $(LN). * Change all constructs like (cd path && ln -sf foo/file file) into $(LN) -sf foo/file path/file. The latter construct is already used in a number of places so it should not be an additional compatibility problem. | ||||
* | Peter Kjellerstedt writes: | Eric Andersen | 2003-10-18 | 1 | -4/+3 |
| | | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM). | ||||
* | Peter Kjellerstedt writes: | Eric Andersen | 2003-10-18 | 1 | -4/+4 |
| | | | | | | | | | install.patch: * Define $(INSTALL) as install in Rules.mak. * Change all occurrences of install into $(INSTALL). * Change all occurrences of mkdir -p into $(INSTALL) -d. install -d is already used in a number of places so this should not be an additional compatibility problem. | ||||
* | Cleanup crypt and remove the crypt_r stuff, since SuSv3 | Eric Andersen | 2002-08-07 | 3 | -182/+182 |
| | | | | | (IEEE Std 1003.1-2001) states that crypt need not be reentrant. -Erik | ||||
* | Begin efforts at reentrance by seperating out the stuff that isn't | Eric Andersen | 2002-06-13 | 1 | -36/+49 |
| | | | | | reentrant and labeling it, and making everything else const. -Erik | ||||
* | Fixup and unifiy version numbering. Automate versioning updates. | Eric Andersen | 2002-05-28 | 1 | -2/+2 |
| | | | | | Propagate fixes across makefiles. -Erik | ||||
* | Fix libcrypt, thanks to Vadim Berkgaut <berk@rc.ru> | Eric Andersen | 2002-05-24 | 1 | -1/+1 |
| | |||||
* | Rework libcrypt based on the openbsd crypt implementation so that it passes the | Eric Andersen | 2002-04-25 | 4 | -306/+685 |
| | | | | | | | 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 | ||||
* | Don't try to return stuff from void funcs | Eric Andersen | 2002-02-26 | 1 | -2/+2 |
| | |||||
* | Adjust function naming and make sure everything is properly | Eric Andersen | 2002-02-26 | 4 | -101/+98 |
| | | | | | static to avoid symbol leakage. -Erik | ||||
* | Make shared libs properly list the correct ld.so in the interp | Eric Andersen | 2002-02-18 | 1 | -1/+2 |
| | | | | field by being sneaky. | ||||
* | Fix the bug where binaries built with older toolchains would | Eric Andersen | 2002-01-28 | 1 | -3/+3 |
| | | | | | | segfault. Turns out that 'ld -nostdlib' was the culprit. Who wouldof thought... -Erik | ||||
* | Tell ld explicitly when stuff is supposed to by dynamically linked | Eric Andersen | 2002-01-16 | 1 | -1/+1 |
| | | | | -Erik | ||||
* | Depend upon libc | Eric Andersen | 2002-01-12 | 1 | -1/+1 |
| | |||||
* | More build system cleanups... | Eric Andersen | 2002-01-11 | 1 | -1/+1 |
| | |||||
* | Scrub the way libraries are linked. Use ld, not gcc, to avoid | Eric Andersen | 2002-01-11 | 1 | -2/+3 |
| | | | | | chicken-and-egg problems when building gcc toolchains. -Erik | ||||
* | Change all 'cd <foo>; bar' constructs to 'cd <foo> && bar' for | Eric Andersen | 2002-01-01 | 1 | -2/+2 |
| | | | | | proper error checking -Erik | ||||
* | Update my email address. I am no longer andersen@lineo.com | Eric Andersen | 2001-12-19 | 4 | -5/+6 |
| | |||||
* | Force our child libs to link vs libc | Eric Andersen | 2001-07-03 | 1 | -1/+1 |
| | |||||
* | Fix a missing include in des.c and add configurability of loop unrolling | Manuel Novoa III | 2001-06-29 | 2 | -56/+220 |
| | | | | to md5.c. Note: by default it is smallest/slowest. | ||||
* | I missed an item when reentrantifying des.c, reuse a smaller | Eric Andersen | 2001-06-28 | 2 | -21/+12 |
| | | | | | field for md5.c -Erik | ||||
* | Replace the crypt implementation with one based on crypt(3) from minix, | Eric Andersen | 2001-06-28 | 1 | -289/+327 |
| | | | | | | | fixing a licensing problem with the previous version. Manuel did the initial port, and I fixed it up to be reentrant. I hope I didn't break anything... -Erik | ||||
* | Optimized for size over speed to (substantially) reduce generated code size. | Manuel Novoa III | 2001-06-28 | 1 | -112/+111 |
| | |||||
* | Be consistant for all the client code, and use TARGET_CC with ↵ | Eric Andersen | 2001-06-15 | 1 | -5/+3 |
| | | | | --uclibc-use-build-dir | ||||
* | I wasn't building the libdl shared lib anymore. Make each lib install a | Eric Andersen | 2001-05-18 | 1 | -0/+1 |
| | | | | | | libfoo.so symlink as well as a libfoo.so.0 link, since gcc is currently only looking for files ending in .so. wierd. -Erik | ||||
* | Ok, this should finish off my massive ro-organization. The source | Eric Andersen | 2001-05-12 | 1 | -3/+4 |
| | | | | | | | | | tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik | ||||
* | Rework where libraries get installed to. Now thew will be compiled and | Eric Andersen | 2001-05-11 | 1 | -20/+14 |
| | | | | | | | | | dropped into a uClibc/lib dir when compiling, which will make life a bit easier when installing and cleaning up. Preface uClibc with 'lib' so ldconfig will recognize it as a library. Make all libraries have the uClibc version number attached, making upgrades possible by using the traditional symlink to the .so name plan. -Erik | ||||
* | Don't hard code path to TARGET_CC | Eric Andersen | 2001-05-10 | 1 | -1/+1 |
| | |||||
* | A few more compilation updates | Eric Andersen | 2001-04-27 | 1 | -5/+14 |
| | |||||
* | Keep major number in sync with the toplevel makefile | Eric Andersen | 2001-04-26 | 2 | -1/+2 |
| | |||||
* | Some minor makefile fixups | Eric Andersen | 2001-04-26 | 1 | -4/+4 |
| | |||||
* | Add in a libcrypt implementation. About 8k. | Eric Andersen | 2001-04-19 | 4 | -0/+916 |
-Erik |