BusyBox Bug and Patch Tracking
BusyBox
  

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0000098 [uClibc++] Other minor always 02-11-05 13:39 08-02-05 20:14
Reporter thritter View Status public  
Assigned To gkajmowi
Priority normal Resolution fixed  
Status closed   Product Version 0.1.9
Summary 0000098: cstdlib does not compile with WCHAR disabled
Description Problem results in messages like this:

In file included from include/stdinc.h:73,
                 from ./src/xxxx.cpp:34:
.../include/cstdlib:38: error: `::mblen' has not been declared
.../include/cstdlib:39: error: `::mbstowcs' has not been declared
.../include/cstdlib:40: error: `::mbtowc' has not been declared
.../include/cstdlib:48: error: `::wctomb' has not been declared
.../include/cstdlib:49: error: `::wcstombs' has not been declared
Additional Information Fix by change cstdlib:

....

namespace std{
    using ::abort;
    using ::abs;
    using ::atexit;
    using ::atol;
    using ::atof;
    using ::atoi;
    using ::bsearch;
    using ::div;
    using ::exit;
    using ::getenv;
    using ::labs;
    using ::ldiv;
    using ::srand;
    using ::strtod;
    using ::strtol;
    using ::strtoul;
    using ::system;
    using ::qsort;
    using ::rand;
#ifdef __UCLIBCXX_HAS_WCHAR__
    using ::mblen;
    using ::mbstowcs;
    using ::mbtowc;
    using ::wctomb;
    using ::wcstombs;
#endif

 .....
Attached Files

- Relationships

- Notes
(0000046)
gkajmowi
02-11-05 15:44

I have fixed my code copy. Will be fixed in CVS soon. Running into CVS problems, though.
 
(0000047)
gkajmowi
02-11-05 19:31

Fixed in SVN repository. Let me know if there are any further problems.
 

- Issue History
Date Modified Username Field Change
02-11-05 13:39 thritter New Issue
02-11-05 15:44 gkajmowi Note Added: 0000046
02-11-05 15:44 gkajmowi Status assigned => acknowledged
02-11-05 19:30 gkajmowi Status acknowledged => resolved
02-11-05 19:30 gkajmowi Resolution open => fixed
02-11-05 19:31 gkajmowi Note Added: 0000047
08-02-05 20:14 andersen Status resolved => closed


Copyright © 2000 - 2006 Mantis Group
Powered by Mantis Bugtracker