summaryrefslogtreecommitdiffstats
path: root/libc/unistd/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-50/+8
|
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-33/+16
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* oops, missed a spotEric Andersen2005-10-051-1/+1
|
* Do not stub out functions for mmu-less systems. Hide allEric Andersen2005-10-041-3/+1
| | | | prototypes for functions disabled on mmu-less systems.
* merge parallel build supportMike Frysinger2005-01-251-4/+4
|
* Add ualarm.cEric Andersen2004-10-071-1/+1
|
* s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/gEric Andersen2004-01-161-1/+1
|
* Oops... Seems I forgot an else...Manuel Novoa III2004-01-121-0/+1
|
* Redo the exec functions to comply with SUSv3.Manuel Novoa III2004-01-021-4/+13
|
* Rip the guts out of the dynamically generated sysconf.c, and live with a simpleEric Andersen2003-11-051-57/+4
| | | | | static version. This will need further work later on, but should do the job for the time being,
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
| | | | | | | 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).
* Add back in table-less ctype funcs for those interested in minimizingManuel Novoa III2003-09-081-1/+6
| | | | | | static build sizes and not needing wchar support. Add in a SUSv3 getopt as an option for those not needing gnu getopt. Again, mainly for the static linking crowd.
* Change some variable names so we are more consistant with whatEric Andersen2002-12-041-7/+7
| | | | | the linux kernel uses. -Erik
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-311-1/+1
| | | | | | | | | | | | | | | been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
* Add SUSv3 function getsubopt.Manuel Novoa III2002-09-191-1/+1
|
* rework getopt. no read need to split this one up sinceEric Andersen2002-08-071-10/+3
| | | | the parts are so tightly coupled.
* Cleanup the getcwd implementation (again) since I broke itEric Andersen2002-06-181-1/+1
| | | | | | | last night. Restore malloc-ing when buf=NULL for the syscall version... Move getcwd to libc/sysdeps/linux/common and out of syscalls.c so there is just one getcwd.o object present. -Erik
* Oops. Forgot to check this in. Thanks Martin Volf for noticingEric Andersen2002-06-091-1/+1
| | | | -Erik
* Fixed broken shell syntax.David McCullough2002-04-111-1/+1
|
* Add the xopen swab() function, contributed by Kensuke Otake ↵Eric Andersen2002-04-031-1/+1
| | | | <kensuke@phreaker.net>
* Be more carefull about erroring out of shell fragments. Try toEric Andersen2002-01-091-4/+6
| | | | enable -falign-functions if avilable.
* Make getopt act the same regardless whether the app was staticly linkedEric Andersen2002-01-031-5/+3
| | | | | or dynamicly linked. Obeys the principle of least surprise. -Erik
* Fix usleep to work correctly. Fix sleep behavior in theEric Andersen2002-01-021-2/+2
| | | | | presence of SIGCHLD. -Erik
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-191-0/+1
|
* Fix up pathconf and friend so that test suits can workEric Andersen2001-11-201-1/+1
|
* Ok, this should finish off my massive ro-organization. The sourceEric Andersen2001-05-121-2/+1
| | | | | | | | | 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
* Oops. Forgot the makefile updatesEric Andersen2001-05-101-1/+2
|
* Only compile in daemon() if the target has an MMU.Eric Andersen2001-04-231-1/+4
| | | | -Erik
* Add missing header file for daemon.c, add missing functions into unistd.h.Eric Andersen2001-04-201-2/+2
| | | | | | | I still need to implement getlogin.c fpathconf.c, but they are required for IEEE Std. 1003.13-1998 POSIX_FILE_SYSTEM conformance and we don't have them yet. But we will very very soon. :-) -Erik
* Add in daemon.c, now used by busybox.Eric Andersen2001-04-031-1/+1
| | | | -Erik
* Add missed dependency. TODO: Should build gen_sysconf when cross-compiling.Manuel Novoa III2001-03-201-1/+1
|
* I think this fixes the dependancy problems. Manuel, can youEric Andersen2001-03-201-4/+12
| | | | | double check that this is what you intended? -Erik
* Patch from Jean-Yves Avenard to move the getopt globals to theirEric Andersen2001-03-051-1/+1
| | | | | | own file, since at least on SH, weak variables with initial values (.data stuff) were not working. Moving these to their own file seems to be a good way to handle it.
* The rules to build sysconf_$(TARGET_ARCH).c were broken when crossDavid McCullough2001-01-291-1/+1
| | | | compiling.
* DIRS was not set in this makefile and could be inherited from theDavid McCullough2001-01-291-0/+4
| | | | environment.
* Enable auto-generation of a size-optimized sysconf function (saves .5k on i386).Manuel Novoa III2001-01-271-4/+42
|
* A large update from Manuel Novoa III <mnovoa3@bellsouth.net>.Eric Andersen2001-01-111-3/+12
|
* Move stuff out if pwd_gep that doesn't belong there (getpass, utmp stuff)Eric Andersen2000-12-231-1/+1
|
* Fix doc blunder.Eric Andersen2000-11-041-4/+4
|
* Make spelling of uClibc be consistant.Eric Andersen2000-11-041-1/+1
|
* More cleanups. Fix things so tinylogin compiles.Eric Andersen2000-11-041-1/+2
| | | | Fix a bug in getdelim -- patch from David Whedon <dwhedon@gordian.com>.
* Strip all object files of all non global symbols and .note andEric Andersen2000-10-201-0/+4
| | | | | .comment, saving a lot of space in the resultant binaries... -Erik
* Makefile updateEric Andersen2000-10-121-1/+1
|
* Finish reorganizing things. At least I think I've finished.Eric Andersen2000-10-111-0/+53