summaryrefslogtreecommitdiffstats
path: root/extra/Configs/Config.in
Commit message (Collapse)AuthorAgeFilesLines
...
* Let people enable ftw, make glob an option, add a new "Big and Tall"Eric Andersen2003-09-061-23/+50
| | | | top level config menu.
* Rob Landley writes:Eric Andersen2003-09-011-2/+2
| | | | | | | SYSTEM_DEVEL_PREFIX says: "This defaults to $(DEVEL_PREFIX)/usr", but it actually defaults to just "($DEVEL_PREFIX)". Just thought I'd mention it... :)
* Reluctantly add wordexp()Eric Andersen2003-08-241-0/+12
|
* Add in a MALLOC_GLIBC_COMPAT option to let people decide if theyEric Andersen2003-08-081-1/+18
| | | | want glibc style malloc(0) behavior
* Shuffle options around a bitEric Andersen2003-08-051-131/+132
|
* Add a new *scanf implementation, includeing the *wscanf functions.Manuel Novoa III2003-08-011-3/+390
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Should be standards compliant and with several optional features, including support for hexadecimal float notation, locale awareness, glibc-like locale-specific digit grouping with the `'' flag, and positional arg support. I tested it pretty well (finding several bugs in glibc's scanf in the process), but it is brand new so be aware. The *wprintf functions now support floating point output. Also, a couple of bugs were squashed. Finally, %a/%A conversions are now implemented. Implement the glibc xlocale interface for thread-specific locale support. Also add the various *_l(args, locale_t loc_arg) funcs. NOTE!!! setlocale() is NOT threadsafe! NOTE!!! The strto{floating point} conversion functions are now locale aware. The also now support hexadecimal floating point notation. Add the wcsto{floating point} conversion functions. Fix a bug in mktime() related to dst. Note that unlike glibc's mktime, uClibc's version always normalizes the struct tm before attempting to determine the correct dst setting if tm_isdst == -1 on entry. Add a stub version of the libintl functions. (untested) Fixed a known memory leak in setlocale() related to the collation data. Add lots of new config options (which Erik agreed to sort out :-), including finally exposing some of the stripped down stdio configs. Be careful with those though, as they haven't been tested in a long time. (temporary) GOTCHAs... The ctype functions are currently incorrect for 8-bit locales. They will be fixed shortly. The ctype functions are now table-based, resulting in larger staticly linked binaries. I'll be adding an option to use the old approach in the stub locale configuration.
* Add config option to enable 'struct tm' timezone extension fieldsEric Andersen2003-06-271-0/+13
|
* Seperate pthread debugging from uClibc debugging. They are usedEric Andersen2003-03-041-0/+17
| | | | for different things.
* Initial effort at adding profiling support.Eric Andersen2003-03-031-0/+37
|
* Patch from Stefan Allius to make adding libgcc functions to the library anEric Andersen2003-02-051-1/+18
| | | | | option, to avoid the possibility of adding non PIC code into the shared PIC uClibc library, thereby making the .text segment unshareable.
* Only build the ncurses stuff when it is needed, based on aEric Andersen2002-12-131-0/+3
| | | | | | patch from Stefan Allius (though the extra/config/Makefile rework is mine), -Erik
* Spelling fixesEric Andersen2002-12-021-9/+9
| | | | -Erik
* Make support for global constructors and global destructors beEric Andersen2002-11-271-0/+17
| | | | | | configurable, so people who do not need or want ctor/dtor support can disable it and make their binaries a little bit smaller. -Erik
* Improve malloc debugging support.Miles Bader2002-11-211-0/+11
|
* Patch from Stefan Allius:Eric Andersen2002-11-201-0/+15
| | | | | | | | | - Invert all FORCE_SHAREABLE_TEXT_SEGMENTS checks. - Define FORCE_SHAREABLE_TEXT_SEGMENTS in the Makefile, so it can be configured by the config system. - linuxelf.h inspects that we don't combine FORCE_SHAREABLE_TEXT_SEGMENTS and SVR4_BUGCOMPAT - Add a new config option for FORCE_SHAREABLE_TEXT_SEGMENTS
* Implement dynamic atexit handling. Adds a few bytes and a dependancyEric Andersen2002-11-191-0/+17
| | | | | on malloc (via realloc). -Erik
* typo fixesEric Andersen2002-11-091-4/+4
|
* Scare people away from enabling locale support for now.Eric Andersen2002-11-081-3/+4
|
* Doh! Leave ldso debugging off by default..Eric Andersen2002-11-081-2/+2
|
* Update doc referenceEric Andersen2002-11-081-1/+1
|
* (DOPIC): Depend on !HAVE_NO_PIC.Miles Bader2002-11-071-5/+12
| | | | | | (UCLIBC_HAS_FULL_RPC): default to `y' if !HAVE_SHARED. (SYSTEM_LDSO): Depend on HAVE_SHARED. (DOASSERTS): New option.
* Massive scrubbing of the shared lib loader error handling.Eric Andersen2002-11-051-0/+60
| | | | | Move all configuration options into the new config system. -Erik
* Fix PIC configuration, so shared libraries once again workEric Andersen2002-11-021-2/+2
| | | | -Erik
* It looks like I lost DEVEL_TOOL_PREFIX. Put it back.Eric Andersen2002-11-021-0/+10
| | | | -Erik
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-311-0/+260
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