summaryrefslogtreecommitdiffstats
path: root/extra
Commit message (Collapse)AuthorAgeFilesLines
...
* fix another corner case in unifdefDenis Vlasenko2008-12-282-2/+8
|
* patch up unifdef to recognize and remove "#if defined _LIBC && something"Denis Vlasenko2008-12-282-35/+160
| | | | | blocks too (and similar)
* ctype: remove some trivial macros from ctype.h;Denis Vlasenko2008-12-271-1/+6
| | | | | | | | | | | | remove __tolower and __toupper (they existed only in SOME configs!); remove usages of _tolower (some of them clearly buggy) from uclibc code; add a few more -U<define> options to unifdef pass over installed headers; document it on docs/wchar_and_locale.txt text data bss dec hex filename - 514963 2727 15396 533086 8225e lib/libuClibc-0.9.30-svn.so + 514888 2727 15396 533011 82213 lib/libuClibc-0.9.30-svn.so
* - mark capset() as linux specificBernhard Reutner-Fischer2008-12-221-1/+1
|
* - capget() is linux specific; Sync helptext with current exclude list.Bernhard Reutner-Fischer2008-12-221-2/+7
|
* - fix for !GETOPT_LONGBernhard Reutner-Fischer2008-12-221-11/+36
|
* extra/locale/gen_wctype.c: remove __CTYPE_isalnum and friends;Denis Vlasenko2008-12-221-379/+354
| | | | | | | | | stop using macros with hidden parameter - that's evil; reformat broken indenting (it was not matching the number of {}s); fix format warnings (int vs size_t vs long) No code changes (verified with objdump)
* UCLIBC_CTYPE_HEADER define is removed, as it alwaysDenis Vlasenko2008-12-223-64/+19
| | | | | | | | | | | | | | | | | | | | | | equal to "include/bits/uClibc_ctype.h" __CTYPE_unclassified and other similar __CTYPE_xxxx constants are moved to separate include file, bits/uClibc_charclass.h Duplicate declaration of these constants is removed from libc/misc/wctype/_wctype.c Ugly re-inclusion trick in extra/locale/gen_wctype.c deleted Large ifdefed-out chunk in extra/locale/gen_wctype.c removed Move __CTYPE_isalnum() etc macros from uClibc_ctype.h to their single user, extra/locale/gen_wctype.c (can be simplified further) Overall, no code changes (verified with objdump)
* more of warning fixes, mostly pointer signedness mismatchesDenis Vlasenko2008-12-211-1/+1
|
* extra/locale/locale_mmap.h: fix broken whitespaceDenis Vlasenko2008-12-201-17/+15
|
* libc/misc/locale/locale.c: heed a pile of warningsDenis Vlasenko2008-12-201-2/+2
| | | | | from signed/unsigned char conversions
* libc/misc/locale/locale.c: remove one unneeded static data,Denis Vlasenko2008-12-201-2/+2
| | | | | | | | | | | | rewrite one exceptionally unreadable loop. Heed a few warnings (wrong type for string op params) text data bss dec hex filename - 1164 16 0 1180 49c libc/misc/locale/newlocale.os + 1180 0 0 1180 49c libc/misc/locale/newlocale.os - 494480 2751 15684 512915 7d393 lib/libuClibc-0.9.30-svn.so + 494472 2735 15684 512891 7d37b lib/libuClibc-0.9.30-svn.so
* Do not install libc-XXXX.h files in "make install".Denis Vlasenko2008-12-131-6/+13
| | | | | glibc does not have them, so should be safe.
* - fix args (untested)Bernhard Reutner-Fischer2008-11-231-2/+2
|
* fixing resolver part 2: make _res structure membersDenis Vlasenko2008-11-141-1/+18
| | | | | configurable. we don't use most of it anyway.
* - update recommendation for pregenerated locales.Bernhard Reutner-Fischer2008-11-112-7/+9
| | | | - update name of locale-tarball. We will retroactively fill them in, eventually
* - less verbose make cleanBernhard Reutner-Fischer2008-11-071-4/+3
|
* - helper config symbol has to depend on thread supportBernhard Reutner-Fischer2008-10-301-1/+1
|
* Explain what malloc simple is good for, and what it isn't good for.Rob Landley2008-10-271-7/+10
|
* - add helpful help stringBernhard Reutner-Fischer2008-10-271-1/+1
|
* - Print helptexts of choices. If a choice (but not it's children) has help, ↵Bernhard Reutner-Fischer2008-10-272-2/+5
| | | | | | print that. If a choice's child has no help, print parents help.
* - fix toggling thread implementation.Bernhard Reutner-Fischer2008-10-171-0/+4
| | | | | | | | | Previously the old headers were left in include/ leading to spurious compile failures. This is ugly as it can get (we resort to sneaking -L in for the moment) but good enough for now. The worst thing which can happen is that we ln these headers once per invocation of make, nothing more. If some installation of make(1) complains about the "-L" then wrap it in ifneq ($(findstring check-symlink,$(.FEATURES)),)
* - fix locale dependencies and make default locale generation less verbose.Bernhard Reutner-Fischer2008-10-145-282/+390
| | | | The verbosity can be set to the previous level by passing V=2 to make.
* - .. and don't install the config dir, tooBernhard Reutner-Fischer2008-10-101-1/+2
|
* - remove bashism; don't install config/* to the targetBernhard Reutner-Fischer2008-10-101-2/+1
|
* - pull kconfig from linux-2.6.27Bernhard Reutner-Fischer2008-10-1019-404/+538
|
* - standardize fopen error message a bitBernhard Reutner-Fischer2008-10-097-10/+10
|
* - mention a FIXME for some make guru :)Bernhard Reutner-Fischer2008-10-091-0/+4
|
* - sync comment to rule as pointed out by psm.Bernhard Reutner-Fischer2008-10-081-2/+2
|
* - fix building locale (pre- and generated, even parallel)Bernhard Reutner-Fischer2008-10-083-34/+49
|
* - add/use variables to make build-tools configurableBernhard Reutner-Fischer2008-10-081-3/+3
|
* - mention the architectures that currently support fenv(3).Bernhard Reutner-Fischer2008-10-061-0/+3
| | | | i387 works (could be that it works on x86_64, untested), sse code disabled.
* - wrap overlong linesBernhard Reutner-Fischer2008-10-063-77/+104
|
* - move helptexts to their config symbols so that they are actually displayedBernhard Reutner-Fischer2008-10-061-10/+10
| | | | TODO: trick kconfig into displaying choice help properly
* - disentangle REALTIME from ADVANCED_REALTIME (Peter S. Mazinger)Bernhard Reutner-Fischer2008-10-061-2/+0
|
* - add long double math wrappers (Ned Ludd)Bernhard Reutner-Fischer2008-10-031-0/+10
|
* - do not pass bitwise-or to the assembler. Closes #3164Bernhard Reutner-Fischer2008-09-291-4/+0
|
* - remove all *_hidden_proto(...) on install_headersBernhard Reutner-Fischer2008-09-261-1/+1
|
* - add CONFIG_MIPS_ISA_MIPS32R2 (Julian Brown)Bernhard Reutner-Fischer2008-09-251-0/+3
|
* - RPC support currently requires either IPv4 and/or IPv6 supportBernhard Reutner-Fischer2008-09-251-0/+2
|
* - add missing dependency on lt_defines.hBernhard Reutner-Fischer2008-09-252-4/+5
| | | | - retry with some different locale if en_US happens not to be there
* - expand documentationBernhard Reutner-Fischer2008-09-251-0/+8
|
* - adjust helptextBernhard Reutner-Fischer2008-09-251-3/+2
|
* - remove debug cruftBernhard Reutner-Fischer2008-09-241-1/+1
|
* - deal with ARM specific syscalls. Closes #2894Bernhard Reutner-Fischer2008-09-241-7/+7
|
* - do not segfault if we end up with empty tablesBernhard Reutner-Fischer2008-09-242-4/+15
| | | | - silence some warnings while at it
* - add script to generate lots of failing (random)configsBernhard Reutner-Fischer2008-09-161-0/+26
| | | | | rm -f STOP ; ARCH=i386 nohup extra/scripts/randconfig.sh & if you want to stop it, touch STOP
* Make menuconfig help bigger and fluffier.Rob Landley2008-09-151-20/+79
|
* Add optimized memcpy implementation for sh4 (from Stuart Menefy ↵Carmelo Amoroso2008-09-091-0/+5
| | | | | | | | @STMicroelectronics). This implementation is based on 'backward copying'. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* - adjust range of valid grp buffer size to match pwd buffer sizeBernhard Reutner-Fischer2008-09-091-1/+1
|