Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | locale.c: export newlocale only if XLOCALE is defined | Peter S. Mazinger | 2011-03-07 | 1 | -0/+2 |
| | | | | | | | newlocale is used by setlocale, so we need the hidden version even if XLOCALE is not defined Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> | ||||
* | locale.c, locale.h: no need for hidden duplocale | Peter S. Mazinger | 2011-03-07 | 1 | -1/+0 |
| | | | | Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> | ||||
* | update some headers | Peter S. Mazinger | 2011-03-03 | 1 | -0/+1 |
| | | | | Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> | ||||
* | prettify make clean | Bernhard Reutner-Fischer | 2010-03-25 | 1 | -2/+2 |
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | convert // comments to /**/; remove empty #if/#endif pairs. no code changes | Denys Vlasenko | 2009-09-18 | 1 | -6/+0 |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | trim Experimentally off and uncommented hidden | Bernhard Reutner-Fischer | 2009-09-18 | 1 | -26/+0 |
| | | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | support building out-of-tree | Bernhard Reutner-Fischer | 2009-08-17 | 1 | -0/+2 |
| | | | | | | Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | *: remove __UCLIBC_CURLOCALE_DATA, __UCLIBC_CURLOCALE_DATA.x | Denis Vlasenko | 2009-01-21 | 1 | -15/+15 |
| | | | | | | | | | | | | | | | | | | | is always equivalent to __UCLIBC_CURLOCALE->x. remove typedef __uclibc_locale_t, it used only in a few places, it is lees confusing to use struct __uclibc_locale_struct everywhere. xlocale.h: hide __global_locale back under _LIBC, bug 53 is wrong in claiming it should be exported. Also hide under _LIBC: extern __locale_t __curlocale_var; extern __locale_t __curlocale(void); extern __locale_t __curlocale_set(__locale_t newloc); # define __UCLIBC_CURLOCALE # define __XL_NPP(N) # define __LOCALE_PARAM # define __LOCALE_ARG # define __LOCALE_PTR | ||||
* | more of warning fixes, mostly pointer signedness mismatches | Denis Vlasenko | 2008-12-21 | 1 | -1/+1 |
| | |||||
* | libc/misc/locale/locale.c: heed a pile of warnings | Denis Vlasenko | 2008-12-20 | 1 | -17/+17 |
| | | | | | from signed/unsigned char conversions | ||||
* | libc/misc/locale/locale.c: remove one unneeded static data, | Denis Vlasenko | 2008-12-20 | 1 | -11/+19 |
| | | | | | | | | | | | | 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 | ||||
* | Last portion of libc_hidden_proto removal. | Denis Vlasenko | 2008-11-20 | 1 | -8/+8 |
| | | | | | Appears to build fine (several .configs tried) | ||||
* | next portion of libc_hidden_proto removal | Denis Vlasenko | 2008-11-20 | 1 | -1/+1 |
| | |||||
* | libc_hidden_proto removal, a few more functions | Denis Vlasenko | 2008-11-18 | 1 | -5/+5 |
| | |||||
* | libc_hidden_proto removal, just a few functions | Denis Vlasenko | 2008-11-18 | 1 | -1/+1 |
| | |||||
* | - less verbose make clean | Bernhard Reutner-Fischer | 2008-11-07 | 1 | -4/+4 |
| | |||||
* | - whitespace fixes | Bernhard Reutner-Fischer | 2008-10-31 | 1 | -19/+19 |
| | |||||
* | - trim any trailing whitespace | Bernhard Reutner-Fischer | 2008-07-23 | 1 | -57/+57 |
| | |||||
* | Fix typo that prevented "make clean" from removing objects in libc/misc/locale. | Bernd Schmidt | 2008-06-04 | 1 | -1/+1 |
| | |||||
* | Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block | Denis Vlasenko | 2008-05-19 | 1 | -10/+10 |
| | | | | | | | | | in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's. | ||||
* | Added a bounch of locale fixes. | Carmelo Amoroso | 2008-05-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | * extra/locale/gen_wc8bit.c: use strrchr to parse locale name to handle the case in which it contains a '.' character like ANSI_X3.4-1968 * include/locale.h: use __UCLIBC_HAS_XLOCALE__ to control inclusion of xlocale.h only * libc/misc/ctype/ctype.c: add missing weak_alias for __tolower_l and __toupper_l * libc/misc/locale/locale.c: use strcasecmp (case insensitive) for utf-8 locale name. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | ||||
* | fixup my copyright notice, trim stale remnants of older notices which | Eric Andersen | 2006-07-05 | 1 | -1/+0 |
| | | | | I had clearly run search/replace on that were cluttering things up. | ||||
* | Correct build if UCLIBC_HAS_CTYPE_TABLES is not defined | Peter S. Mazinger | 2006-03-22 | 1 | -0/+2 |
| | |||||
* | Mark some functions as GNU, provide missing hidden memmem, remove ↵ | Peter S. Mazinger | 2006-03-22 | 1 | -1/+2 |
| | | | | _ISOC99/XOPEN_SOURCE | ||||
* | Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵ | Peter S. Mazinger | 2006-03-10 | 1 | -11/+0 |
| | | | | most of global data relocations are back | ||||
* | libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵ | Peter S. Mazinger | 2006-02-13 | 1 | -39/+11 |
| | | | | libc.a/libc.so, the diffs go into libc-static-y/libc-shared-y exclusively, add IMA to libc, don't use any MSRC anymore | ||||
* | Add files for IMA. Yes, I know it's a hack and no, I won't split the ↵ | Peter S. Mazinger | 2006-02-13 | 11 | -0/+93 |
| | | | | affected files | ||||
* | global data uses libc_hidden_data_def, convert all -I hope- and add some new | Peter S. Mazinger | 2006-02-01 | 1 | -2/+2 |
| | |||||
* | some more prototypes | Peter S. Mazinger | 2006-01-30 | 1 | -1/+2 |
| | |||||
* | Patch by Joseph S. Myers to add support for ARM EABI | Mike Frysinger | 2006-01-29 | 1 | -0/+4 |
| | |||||
* | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | 2006-01-22 | 1 | -2/+0 |
| | | | | is a useless attempt | ||||
* | Last relocs jump and global data, (even locales) that I could remove are ↵ | Peter S. Mazinger | 2006-01-16 | 1 | -1/+20 |
| | | | | gone from libc. The remaining are left as exercise for others ;-) | ||||
* | make DODEBUG=y happy, update sysdeps/common/* copyright | Peter S. Mazinger | 2006-01-14 | 1 | -6/+11 |
| | |||||
* | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | 2006-01-14 | 1 | -56/+63 |
| | | | | missing headers, other jump relocs removed | ||||
* | Hide locales | Peter S. Mazinger | 2005-12-16 | 1 | -9/+12 |
| | |||||
* | Convert all users of earlier hiddens | Peter S. Mazinger | 2005-12-13 | 1 | -0/+1 |
| | |||||
* | Do __nl_langinfo, partly sync header w/ glibc, add missing nl_langinfo_l, ↵ | Peter S. Mazinger | 2005-12-09 | 1 | -3/+8 |
| | | | | change users to hidden version | ||||
* | More hiding, including __mempcpy | Peter S. Mazinger | 2005-12-03 | 1 | -1/+2 |
| | |||||
* | Hide mostly used functions | Peter S. Mazinger | 2005-12-01 | 1 | -26/+26 |
| | |||||
* | Hiding again | Peter S. Mazinger | 2005-11-29 | 1 | -2/+2 |
| | |||||
* | Hide some of mem* and str* | Peter S. Mazinger | 2005-11-27 | 1 | -0/+2 |
| | |||||
* | Integrate locales into new build system, move everything locale related to ↵ | Peter S. Mazinger | 2005-11-25 | 1 | -16/+1 |
| | | | | extra/locale, as download, unpack, locale_data.o | ||||
* | Remove TOPDIR | Peter S. Mazinger | 2005-11-21 | 1 | -3/+1 |
| | |||||
* | Correct XLOCALE enabled builds pointed out by nitinkg | Peter S. Mazinger | 2005-11-04 | 1 | -5/+5 |
| | |||||
* | Last bits for IMA, now everything can be built w/ DOMULTI=y on gcc-3.4.4 ↵ | Peter S. Mazinger | 2005-11-03 | 1 | -1/+4 |
| | | | | with my config (no locale, the rest enabled). Not tested if libc is complete and usable. All the files listed in *_NO_MULTI need love, best would be to replace all multisources w/ single sources. | ||||
* | Enable IMA | Peter S. Mazinger | 2005-11-03 | 1 | -3/+2 |
| | |||||
* | Only because of multi sources I had to touch up these and add code duplication | Peter S. Mazinger | 2005-11-01 | 1 | -3/+12 |
| | |||||
* | Replace all Makefiles for new build infrastucture | Peter S. Mazinger | 2005-10-29 | 1 | -59/+8 |
| | |||||
* | typo s/notdir/dir/ | Peter S. Mazinger | 2005-10-28 | 1 | -1/+1 |
| | |||||
* | Correct building locales and backport the changes | Peter S. Mazinger | 2005-10-28 | 2 | -7/+6 |
| |