Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-21 | s/UCLIBC_INTERNAL/_LIBC/g | Denys Vlasenko | |
Undo my old mistake. I added UCLIBC_INTERNAL define, but later I realized _LIBC is doing exactly the same thing. This change converts all usages of UCLIBC_INTERNAL to _LIBC, removing all instances of UCLIBC_INTERNAL. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | |||
2009-07-20 | first pass at implementing *at funcs | Mike Frysinger | |
Tested basic functionality with coreutils and things seem to work. At least gives us a basis to jump from. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2009-01-21 | - remove unavailable functionality upon request (Peter Mazinger) | Bernhard Reutner-Fischer | |
2008-12-13 | features.h: add TODO (changing __OPTIMIZE_SIZE__ is a wrong thing to do) | Denis Vlasenko | |
2008-12-13 | *: document __USE_EXTERN_INLINES better; | Denis Vlasenko | |
fix uclibc build if it is forcibly enabled | |||
2008-09-06 | - for extern inline, also take __extern_inline and __GNUC_GNU_INLINE__ into ↵ | Bernhard Reutner-Fischer | |
account | |||
2007-09-15 | drop __user hack for crappy kernel headers and document the __linux__ grease | Mike Frysinger | |
2006-11-29 | - honor __UCLIBC_HAS_LFS__ | Bernhard Reutner-Fischer | |
2006-05-12 | cut out _FORTIFY_SOURCE | Mike Frysinger | |
2006-02-23 | Correct typo | Peter S. Mazinger | |
2006-02-23 | Sync w/ glibc, disabling *at interfaces | Peter S. Mazinger | |
2006-01-19 | move a bunch of arch-specific checks out of common files and into an arch ↵ | Mike Frysinger | |
specific header file to make porting/updates a lot easier | |||
2005-10-11 | Change __OPTIMIZE__ > 0 to defined(__OPTIMIZE__) as in glibc-2.3.5. | Peter S. Mazinger | |
2005-09-21 | merge some misc stuff from glibc | Mike Frysinger | |
2005-09-21 | move misc internal definitions to a sep file to minimize differences with ↵ | Mike Frysinger | |
features.h from glibc | |||
2005-08-10 | In Bug 364 by hassold: | Mike Frysinger | |
Configuration symbol __UCLIBC_HAS_WCHAR__ is tested as defined line 249 of features.h, whereas header bits/uClibc_Config.h, where it is (eventually) defined, is not yet included (line 267). As a consequence, symbol __STDC_ISO_10646__ is never defined, and several programs believe C libary hsa no wchar support. | |||
2005-01-11 | newer linux headers define __cast__ in compiler.h so lets fake it too | Mike Frysinger | |
2004-10-27 | Arrange to hide uClibc internals | Eric Andersen | |
2004-07-30 | Cleanup some dead wood in the header files | Eric Andersen | |
2004-04-20 | Cope with gcc 3.4's more aggressive persuit of attribute unused | Eric Andersen | |
2004-01-02 | Cope with 2.6.x headers | Eric Andersen | |
2003-11-21 | prevent some needless warnings when building w/2.6.x kernel headers | Eric Andersen | |
2003-09-09 | sigh. The cris compiler doesn't do link_warning's.... | Eric Andersen | |
2003-09-03 | Only define __STDC_ISO_10646__ if wide char support is enabled. | Manuel Novoa III | |
2003-08-22 | Avoid gratuitous conflicts when used with kernel headers | Eric Andersen | |
2003-08-11 | also carefully booleanize the false value | Eric Andersen | |
2003-08-10 | silly me, thats not going to work. | Eric Andersen | |
2003-08-10 | An even simpler likely | Eric Andersen | |
2003-08-10 | Update likely() to cope with truth values other than 1 | Eric Andersen | |
2003-02-17 | Patch from Stefan Allius: | Eric Andersen | |
I patched the link_warning macro in features.h to fix warnings like: locale.c:358: warning: `__evoke_link_warning_localeconv' defined but not used | |||
2002-11-09 | Make sure we have __linux__ defined | Eric Andersen | |
2002-10-31 | Ok, this commit is _huge_ and its gonna change the world. I've | Eric Andersen | |
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 | |||
2002-08-09 | Fix a number of compile time warnings so that uClibc will build with -Werror ↵ | David McCullough | |
using a 3.0.4 version of the sh-linux-gcc compiler. | |||
2002-05-28 | Patch from Yoshinori Sato <qzb04471@nifty.ne.jp> to use | Eric Andersen | |
C_SYMBOL_PREFIX for confused compilers, such as for v850 and h8300, per suggestion from Miles Bader. | |||
2002-05-28 | Fixup and unifiy version numbering. Automate versioning updates. | Eric Andersen | |
Propagate fixes across makefiles. -Erik | |||
2002-05-23 | Several h8300 updates from Yoshinori Sato <qzb04471@nifty.ne.jp> | Eric Andersen | |
2002-04-01 | Remove function declartions from include/features.h, create | Eric Andersen | |
a separate header file for those, and fixup references. -Erik | |||
2002-03-31 | Rework __gen_tempname() to better match glibc, and add mkstemp64(), | Eric Andersen | |
which is needed for busybox ash when using largefile support. -Erik | |||
2002-03-15 | Hide libc specific junk inside a #ifdef _LIBC to avoid | Eric Andersen | |
namespace pollution, noted by Miles. -Erik | |||
2002-03-12 | Fix a segfault in scandir for empty directories. After looking over | Eric Andersen | |
our version, I'm adopting the scandir from glibc (with minor changes) instead as it seems simpler and already correct. | |||
2002-02-26 | Remove elimination of __BEGIN_DECLS/__END_DECLS | Eric Andersen | |
2002-02-22 | I was confusing the effects of _LARGEFILE_SOURCE with those of | Manuel Novoa III | |
_FILE_OFFSET_BITS regarding aliasing of the *64 funcs. :-( Hopefully, this version is correct... | |||
2002-02-20 | Merge in the pthread library. This is the linuxthreads library taken from | Eric Andersen | |
glibc 2.1.3 and ported to work with uClibc by Stefan Soucek and Erik Andersen (me). Stefan has hacked things up such that linuxthreads runs on MMU-less systems (tested only on arm-nommu). Erik cleaned things up and made it work properly as a shared library. -Erik | |||
2002-02-19 | Output an error if uClibc's and app's largefile configuration are incompatible. | Manuel Novoa III | |
2002-02-18 | Support strong_alias and begin merging usage of weak_function | Eric Andersen | |
2002-02-13 | A number of naming updates in preparation for adding in | Eric Andersen | |
proper threading. Most of this is from Stefan Soucek, with additions and changes as needed from me. | |||
2002-02-02 | Add in support for the Hitach H8/300H architecture, | Eric Andersen | |
contributed by Yoshinori Sato <qzb04471@nifty.ne.jp> | |||
2002-02-02 | Do not expose the weak_alias() junk to the world. Wrap it | Eric Andersen | |
inside an #if defined _LIBC -Erik | |||
2002-01-10 | Eliminate C++ style comments | Eric Andersen | |
2001-11-21 | Adjust naming for __FORCE_GLIBC__ to __FORCE_GLIBC and add | Eric Andersen | |
support for __FORCE_NOGLIBC per Brian Stafford <brian.stafford@office-logic.com> |