[ Pharos @ 07.05.2006. 14:31 ] @
Imam problem sa kompajilranjem programa u Kubuntu.

Code:

#include <iostream>
using namespace std;

int main()
{
        cout << "Hello World!" << endl;
        return 0;
}


Kad to kompajilram pomocu g++ -o imefajla imefajla.C dobijem sledeci err0r list:

Code:

/usr/include/c++/4.0.2/cwchar: At global scope:
/usr/include/c++/4.0.2/cwchar:223: error: ‘::wcsstr’ has not been declared
/usr/include/c++/4.0.2/cwchar: In function ‘wchar_t* std::wcsstr(wchar_t*, const wchar_t*)’:
/usr/include/c++/4.0.2/cwchar:227: error: invalid conversion from ‘const wchar_t*’ to ‘wchar_t*’
/usr/include/c++/4.0.2/cwchar:227: error:   initializing argument 1 of ‘wchar_t* std::wcsstr(wchar_t*, const wchar_t*)’
/usr/include/c++/4.0.2/cwchar: At global scope:
/usr/include/c++/4.0.2/cwchar:229: error: ‘::wmemchr’ has not been declared
/usr/include/c++/4.0.2/cwchar: In function ‘wchar_t* std::wmemchr(wchar_t*, wchar_t, size_t)’:
/usr/include/c++/4.0.2/cwchar:233: error: invalid conversion from ‘const wchar_t*’ to ‘wchar_t*’
/usr/include/c++/4.0.2/cwchar:233: error:   initializing argument 1 of ‘wchar_t* std::wmemchr(wchar_t*, wchar_t, size_t)’
/usr/include/c++/4.0.2/cwchar: At global scope:
/usr/include/c++/4.0.2/cwchar:249: error: ‘::wcstold’ has not been declared
/usr/include/c++/4.0.2/cwchar:258: error: ‘::wcstoll’ has not been declared
/usr/include/c++/4.0.2/cwchar:259: error: ‘::wcstoull’ has not been declared
/usr/include/c++/4.0.2/cwchar:265: error: ‘__gnu_cxx::wcstold’ has not been declared
/usr/include/c++/4.0.2/cwchar:266: error: ‘__gnu_cxx::wcstoll’ has not been declared
/usr/include/c++/4.0.2/cwchar:267: error: ‘__gnu_cxx::wcstoull’ has not been declared
/usr/include/c++/4.0.2/bits/postypes.h:72: error: ‘int64_t’ does not name a type
/usr/include/c++/4.0.2/bits/postypes.h:98: error: ‘streamoff’ does not name a type
/usr/include/c++/4.0.2/bits/postypes.h:116: error: expected `)' before ‘__off’
/usr/include/c++/4.0.2/bits/postypes.h:120: error: expected type-specifier before ‘streamoff’
/usr/include/c++/4.0.2/bits/postypes.h:151: error: declaration of ‘operator+=’ as non-function
/usr/include/c++/4.0.2/bits/postypes.h:151: error: expected ‘;’ before ‘(’ token
/usr/include/c++/4.0.2/bits/postypes.h:161: error: expected `;' before ‘fpos’
/usr/include/c++/4.0.2/bits/postypes.h:162: error: declaration of ‘operator-=’ as non-function
/usr/include/c++/4.0.2/bits/postypes.h:162: error: expected ‘;’ before ‘(’ token
/usr/include/c++/4.0.2/bits/postypes.h:174: error: expected `;' before ‘fpos’
/usr/include/c++/4.0.2/bits/postypes.h:175: error: ‘streamoff’ has not been declared
/usr/include/c++/4.0.2/bits/postypes.h:189: error: ‘streamoff’ has not been declared
/usr/include/c++/4.0.2/bits/postypes.h:202: error: expected ‘;’ before ‘operator’
/usr/include/c++/4.0.2/bits/postypes.h:204: error: expected `;' before ‘}’ token
/usr/include/c++/4.0.2/bits/postypes.h: In constructor ‘std::fpos<_StateT>::fpos()’:
/usr/include/c++/4.0.2/bits/postypes.h:107: error: class ‘std::fpos<_StateT>’ does not have any field named ‘_M_off’
/usr/include/c++/4.0.2/bits/postypes.h: In member function ‘bool std::fpos<_StateT>::operator==(const std::fpos<_StateT>&) const’:
/usr/include/c++/4.0.2/bits/postypes.h:139: error: ‘_M_off’ was not declared in this scope
/usr/include/c++/4.0.2/bits/postypes.h: In member function ‘bool std::fpos<_StateT>::operator!=(const std::fpos<_StateT>&) const’:
/usr/include/c++/4.0.2/bits/postypes.h:144: error: ‘_M_off’ was not declared in this scope
/usr/include/c++/4.0.2/bits/postypes.h: At global scope:
/usr/include/c++/4.0.2/bits/postypes.h:210: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/postypes.h:210: error: template argument 1 is invalid
/usr/include/c++/4.0.2/bits/postypes.h:210: error: invalid type in declaration before ‘;’ token
/usr/include/c++/4.0.2/bits/postypes.h:212: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/postypes.h:212: error: template argument 1 is invalid
/usr/include/c++/4.0.2/bits/postypes.h:212: error: invalid type in declaration before ‘;’ token
/usr/include/c++/4.0.2/cstdlib:93: error: ‘::div_t’ has not been declared
/usr/include/c++/4.0.2/cstdlib:94: error: ‘::ldiv_t’ has not been declared
/usr/include/c++/4.0.2/cstdlib:96: error: ‘::abort’ has not been declared
/usr/include/c++/4.0.2/cstdlib:97: error: ‘::abs’ has not been declared
/usr/include/c++/4.0.2/cstdlib:98: error: ‘::atexit’ has not been declared
/usr/include/c++/4.0.2/cstdlib:99: error: ‘::atof’ has not been declared
/usr/include/c++/4.0.2/cstdlib:100: error: ‘::atoi’ has not been declared
/usr/include/c++/4.0.2/cstdlib:101: error: ‘::atol’ has not been declared
/usr/include/c++/4.0.2/cstdlib:102: error: ‘::bsearch’ has not been declared
/usr/include/c++/4.0.2/cstdlib:103: error: ‘::calloc’ has not been declared
/usr/include/c++/4.0.2/cstdlib:104: error: ‘::div’ has not been declared
/usr/include/c++/4.0.2/cstdlib:105: error: ‘::exit’ has not been declared
/usr/include/c++/4.0.2/cstdlib:106: error: ‘::free’ has not been declared
/usr/include/c++/4.0.2/cstdlib:107: error: ‘::getenv’ has not been declared
/usr/include/c++/4.0.2/cstdlib:108: error: ‘::labs’ has not been declared
/usr/include/c++/4.0.2/cstdlib:109: error: ‘::ldiv’ has not been declared
/usr/include/c++/4.0.2/cstdlib:110: error: ‘::malloc’ has not been declared
/usr/include/c++/4.0.2/cstdlib:112: error: ‘::mblen’ has not been declared
/usr/include/c++/4.0.2/cstdlib:113: error: ‘::mbstowcs’ has not been declared
/usr/include/c++/4.0.2/cstdlib:114: error: ‘::mbtowc’ has not been declared
/usr/include/c++/4.0.2/cstdlib:116: error: ‘::qsort’ has not been declared
/usr/include/c++/4.0.2/cstdlib:117: error: ‘::rand’ has not been declared
/usr/include/c++/4.0.2/cstdlib:118: error: ‘::realloc’ has not been declared
/usr/include/c++/4.0.2/cstdlib:119: error: ‘::srand’ has not been declared
/usr/include/c++/4.0.2/cstdlib:120: error: ‘::strtod’ has not been declared
/usr/include/c++/4.0.2/cstdlib:121: error: ‘::strtol’ has not been declared
/usr/include/c++/4.0.2/cstdlib:122: error: ‘::strtoul’ has not been declared
/usr/include/c++/4.0.2/cstdlib:123: error: ‘::system’ has not been declared
/usr/include/c++/4.0.2/cstdlib:125: error: ‘::wcstombs’ has not been declared
/usr/include/c++/4.0.2/cstdlib:126: error: ‘::wctomb’ has not been declared
/usr/include/c++/4.0.2/cstdlib: In function ‘long int std::abs(long int)’:
/usr/include/c++/4.0.2/cstdlib:130: error: ‘labs’ was not declared in this scope
/usr/include/c++/4.0.2/cstdlib: At global scope:
/usr/include/c++/4.0.2/cstdlib:132: error: ‘ldiv_t’ does not name a type
/usr/include/c++/4.0.2/cstdlib:159: error: ‘::lldiv_t’ has not been declared
/usr/include/c++/4.0.2/cstdlib:165: error: ‘::_Exit’ has not been declared
/usr/include/c++/4.0.2/cstdlib:175: error: ‘lldiv_t’ does not name a type
/usr/include/c++/4.0.2/cstdlib:179: error: ‘lldiv_t’ does not name a type
/usr/include/c++/4.0.2/cstdlib:192: error: ‘::atoll’ has not been declared
/usr/include/c++/4.0.2/cstdlib:193: error: ‘::strtoll’ has not been declared
/usr/include/c++/4.0.2/cstdlib:194: error: ‘::strtoull’ has not been declared
/usr/include/c++/4.0.2/cstdlib:196: error: ‘::strtof’ has not been declared
/usr/include/c++/4.0.2/cstdlib:197: error: ‘::strtold’ has not been declared
/usr/include/c++/4.0.2/cstdlib:203: error: ‘__gnu_cxx::lldiv_t’ has not been declared
/usr/include/c++/4.0.2/cstdlib:205: error: ‘__gnu_cxx::_Exit’ has not been declared
/usr/include/c++/4.0.2/cstdlib:209: error: ‘__gnu_cxx::div’ has not been declared
/usr/include/c++/4.0.2/cstdlib:210: error: ‘__gnu_cxx::lldiv’ has not been declared
/usr/include/c++/4.0.2/cstdlib:212: error: ‘__gnu_cxx::atoll’ has not been declared
/usr/include/c++/4.0.2/cstdlib:213: error: ‘__gnu_cxx::strtof’ has not been declared
/usr/include/c++/4.0.2/cstdlib:214: error: ‘__gnu_cxx::strtoll’ has not been declared
/usr/include/c++/4.0.2/cstdlib:215: error: ‘__gnu_cxx::strtoull’ has not been declared
/usr/include/c++/4.0.2/cstdlib:216: error: ‘__gnu_cxx::strtold’ has not been declared
/usr/include/c++/4.0.2/bits/stl_algobase.h: In static member function ‘static _Tp* std::__copy<true, std::random_access_iterator_tag>::copy(const _Tp*, const _Tp*, _Tp*)’:
/usr/include/c++/4.0.2/bits/stl_algobase.h:300: error: ‘memmove’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/stl_algobase.h: In static member function ‘static _Tp* std::__copy_backward<true, std::random_access_iterator_tag>::copy_b(const _Tp*, const _Tp*, _Tp*)’:
/usr/include/c++/4.0.2/bits/stl_algobase.h:425: error: ‘memmove’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/stl_algobase.h: In function ‘void std::fill(unsigned char*, unsigned char*, const unsigned char&)’:
/usr/include/c++/4.0.2/bits/stl_algobase.h:577: error: ‘memset’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/stl_algobase.h: In function ‘void std::fill(signed char*, signed char*, const signed char&)’:
/usr/include/c++/4.0.2/bits/stl_algobase.h:585: error: ‘memset’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/stl_algobase.h: In function ‘void std::fill(char*, char*, const char&)’:
/usr/include/c++/4.0.2/bits/stl_algobase.h:593: error: ‘memset’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/stl_algobase.h: In function ‘bool std::lexicographical_compare(const unsigned char*, const unsigned char*, const unsigned char*, const unsigned char*)’:
/usr/include/c++/4.0.2/bits/stl_algobase.h:885: error: ‘memcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/char_traits.h: At global scope:
/usr/include/c++/4.0.2/bits/char_traits.h:66: error: ‘streamoff’ in namespace ‘std’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h:67: error: ‘mbstate_t’ in namespace ‘std’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static typename __gnu_cxx::_Char_types<_CharT>::int_type __gnu_cxx::char_traits<_CharT>::eof()’:
/usr/include/c++/4.0.2/bits/char_traits.h:139: error: ‘EOF’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static typename __gnu_cxx::char_traits<_CharT>::char_type* __gnu_cxx::char_traits<_CharT>::move(_CharT*, const _CharT*, size_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:186: error: ‘memmove’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/char_traits.h: At global scope:
/usr/include/c++/4.0.2/bits/char_traits.h:236: error: ‘streamoff’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h:237: error: ‘mbstate_t’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static int std::char_traits<char>::compare(const char*, const char*, size_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:253: error: ‘memcmp’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static size_t std::char_traits<char>::length(const char*)’:
/usr/include/c++/4.0.2/bits/char_traits.h:257: error: ‘strlen’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static const char* std::char_traits<char>::find(const char*, size_t, const char&)’:
/usr/include/c++/4.0.2/bits/char_traits.h:261: error: invalid conversion from ‘const void*’ to ‘void*’
/usr/include/c++/4.0.2/bits/char_traits.h:261: error:   initializing argument 1 of ‘void* std::memchr(void*, int, size_t)’
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static char* std::char_traits<char>::move(char*, const char*, size_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:265: error: ‘memmove’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static char* std::char_traits<char>::copy(char*, const char*, size_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:269: error: ‘memcpy’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static char* std::char_traits<char>::assign(char*, size_t, char)’:
/usr/include/c++/4.0.2/bits/char_traits.h:273: error: ‘memset’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static int std::char_traits<char>::eof()’:
/usr/include/c++/4.0.2/bits/char_traits.h:290: error: ‘EOF’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: At global scope:
/usr/include/c++/4.0.2/bits/char_traits.h:304: error: ‘wint_t’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h:305: error: ‘streamoff’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h:307: error: ‘mbstate_t’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h:346: error: expected ‘,’ or ‘...’ before ‘&’ token
/usr/include/c++/4.0.2/bits/char_traits.h:348: error: ‘int_type’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h:352: error: expected ‘,’ or ‘...’ before ‘&’ token
/usr/include/c++/4.0.2/bits/char_traits.h:355: error: ‘int_type’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h:358: error: ‘int_type’ does not name a type
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static int std::char_traits<wchar_t>::compare(const wchar_t*, const wchar_t*, size_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:323: error: ‘wmemcmp’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static size_t std::char_traits<wchar_t>::length(const wchar_t*)’:
/usr/include/c++/4.0.2/bits/char_traits.h:327: error: ‘wcslen’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static const wchar_t* std::char_traits<wchar_t>::find(const wchar_t*, size_t, const wchar_t&)’:
/usr/include/c++/4.0.2/bits/char_traits.h:331: error: invalid conversion from ‘const wchar_t*’ to ‘wchar_t*’
/usr/include/c++/4.0.2/bits/char_traits.h:331: error:   initializing argument 1 of ‘wchar_t* std::wmemchr(wchar_t*, wchar_t, size_t)’
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static wchar_t* std::char_traits<wchar_t>::move(wchar_t*, const wchar_t*, size_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:335: error: ‘wmemmove’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static wchar_t* std::char_traits<wchar_t>::copy(wchar_t*, const wchar_t*, size_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:339: error: ‘wmemcpy’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static wchar_t* std::char_traits<wchar_t>::assign(wchar_t*, size_t, wchar_t)’:
/usr/include/c++/4.0.2/bits/char_traits.h:343: error: ‘wmemset’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static wchar_t std::char_traits<wchar_t>::to_char_type(int)’:
/usr/include/c++/4.0.2/bits/char_traits.h:346: error: ‘__c’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h: In static member function ‘static bool std::char_traits<wchar_t>::eq_int_type(int)’:
/usr/include/c++/4.0.2/bits/char_traits.h:353: error: ‘__c1’ was not declared in this scope
/usr/include/c++/4.0.2/bits/char_traits.h:353: error: ‘__c2’ was not declared in this scope
/usr/include/c++/4.0.2/bits/localefwd.h: At global scope:
/usr/include/c++/4.0.2/bits/localefwd.h:124: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/localefwd.h:124: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/localefwd.h:126: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/localefwd.h:126: error: template argument 3 is invalid
/usr/include/c++/4.0.2/ext/mt_allocator.h: In constructor ‘__gnu_cxx::__pool_base::_Tune::_Tune()’:
/usr/include/c++/4.0.2/ext/mt_allocator.h:112: error: ‘getenv’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h: At global scope:
/usr/include/c++/4.0.2/ext/mt_allocator.h:313: error: expected ‘;’ before ‘*’ token
/usr/include/c++/4.0.2/ext/mt_allocator.h:393: error: ‘__gthread_once_t’ does not name a type
/usr/include/c++/4.0.2/ext/mt_allocator.h: In member function ‘void __gnu_cxx::__pool<true>::_M_initialize_once(void (*)())’:
/usr/include/c++/4.0.2/ext/mt_allocator.h:330: error: ‘_M_once’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h:330: error: ‘__gthread_once’ cannot be used as a function
/usr/include/c++/4.0.2/ext/mt_allocator.h: In constructor ‘__gnu_cxx::__pool<true>::__pool()’:
/usr/include/c++/4.0.2/ext/mt_allocator.h:371: error: ‘__gthread_once_t’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h:371: error: expected `;' before ‘__tmp’
/usr/include/c++/4.0.2/ext/mt_allocator.h:372: error: ‘_M_once’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h:372: error: ‘__tmp’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h: In constructor ‘__gnu_cxx::__pool<true>::__pool(const __gnu_cxx::__pool_base::_Tune&)’:
/usr/include/c++/4.0.2/ext/mt_allocator.h:380: error: ‘__gthread_once_t’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h:380: error: expected `;' before ‘__tmp’
/usr/include/c++/4.0.2/ext/mt_allocator.h:381: error: ‘_M_once’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h:381: error: ‘__tmp’ was not declared in this scope
/usr/include/c++/4.0.2/ext/mt_allocator.h: In static member function ‘static _PoolTp<false>& __gnu_cxx::__per_type_pool_policy<_Tp, _PoolTp, false>::_S_get_pool()’:
/usr/include/c++/4.0.2/ext/mt_allocator.h:509: error: there are no arguments to ‘getenv’ that depend on a template parameter, so a declaration of ‘getenv’ must be available
/usr/include/c++/4.0.2/ext/mt_allocator.h:509: error: (if you use ‘-fpermissive’, G++ will accept your code, but allowing the use of an undeclared name is deprecated)
/usr/include/c++/4.0.2/ext/mt_allocator.h: In static member function ‘static _PoolTp<true>& __gnu_cxx::__per_type_pool_policy<_Tp, _PoolTp, true>::_S_get_pool()’:
/usr/include/c++/4.0.2/ext/mt_allocator.h:555: error: there are no arguments to ‘getenv’ that depend on a template parameter, so a declaration of ‘getenv’ must be available
/usr/include/c++/4.0.2/bits/stl_uninitialized.h: In function ‘char* std::uninitialized_copy(const char*, const char*, char*)’:
/usr/include/c++/4.0.2/bits/stl_uninitialized.h:119: error: ‘memmove’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/stl_uninitialized.h: In function ‘wchar_t* std::uninitialized_copy(const wchar_t*, const wchar_t*, wchar_t*)’:
/usr/include/c++/4.0.2/bits/stl_uninitialized.h:127: error: ‘memmove’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/stl_algo.h: In function ‘void std::random_shuffle(_RandomAccessIterator, _RandomAccessIterator)’:
/usr/include/c++/4.0.2/bits/stl_algo.h:1762: error: ‘rand’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_classes.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_classes.h:313: error: ‘__gthread_once_t’ does not name a type
/usr/include/c++/4.0.2/bits/locale_classes.h:352: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_classes.h:358: error: ‘__gthread_once_t’ does not name a type
/usr/include/c++/4.0.2/bits/locale_classes.h:383: error: ‘__c_locale’ has not been declared
/usr/include/c++/4.0.2/bits/locale_classes.h:384: error: ‘__c_locale’ has not been declared
/usr/include/c++/4.0.2/bits/locale_classes.h:386: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_classes.h:390: error: ‘__c_locale’ has not been declared
/usr/include/c++/4.0.2/bits/locale_classes.h:394: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_classes.h: In member function ‘bool std::locale::_Impl::_M_check_same_name()’:
/usr/include/c++/4.0.2/bits/locale_classes.h:540: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/ios_base.h: At global scope:
/usr/include/c++/4.0.2/bits/ios_base.h:187: error: ‘SEEK_CUR’ was not declared in this scope
/usr/include/c++/4.0.2/bits/ios_base.h:188: error: ‘SEEK_END’ was not declared in this scope
/usr/include/c++/4.0.2/bits/ios_base.h:398: error: ‘SEEK_CUR’ was not declared in this scope
/usr/include/c++/4.0.2/bits/ios_base.h:401: error: ‘SEEK_END’ was not declared in this scope
/usr/include/c++/4.0.2/bits/ios_base.h:409: error: ‘streamoff’ in namespace ‘std’ does not name a type
/usr/include/c++/4.0.2/streambuf: In instantiation of ‘std::basic_streambuf<char, std::char_traits<char> >’:
/usr/include/c++/4.0.2/bits/streambuf.tcc:140:   instantiated from here
/usr/include/c++/4.0.2/streambuf:135: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/streambuf:237: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/streambuf:577: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/streambuf: In instantiation of ‘std::basic_streambuf<wchar_t, std::char_traits<wchar_t> >’:
/usr/include/c++/4.0.2/bits/streambuf.tcc:146:   instantiated from here
/usr/include/c++/4.0.2/streambuf:133: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:135: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:237: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:273: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:291: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:313: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:346: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:371: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:398: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:577: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:661: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:674: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:698: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/streambuf:741: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/cwctype:81: error: ‘::wint_t’ has not been declared
/usr/include/c++/4.0.2/cwctype:83: error: ‘::wctype_t’ has not been declared
/usr/include/c++/4.0.2/cwctype:84: error: ‘::wctrans_t’ has not been declared
/usr/include/c++/4.0.2/cwctype:86: error: ‘::iswalnum’ has not been declared
/usr/include/c++/4.0.2/cwctype:87: error: ‘::iswalpha’ has not been declared
/usr/include/c++/4.0.2/cwctype:89: error: ‘::iswblank’ has not been declared
/usr/include/c++/4.0.2/cwctype:91: error: ‘::iswcntrl’ has not been declared
/usr/include/c++/4.0.2/cwctype:92: error: ‘::iswdigit’ has not been declared
/usr/include/c++/4.0.2/cwctype:93: error: ‘::iswgraph’ has not been declared
/usr/include/c++/4.0.2/cwctype:94: error: ‘::iswlower’ has not been declared
/usr/include/c++/4.0.2/cwctype:95: error: ‘::iswprint’ has not been declared
/usr/include/c++/4.0.2/cwctype:96: error: ‘::iswprint’ has not been declared
/usr/include/c++/4.0.2/cwctype:97: error: ‘::iswpunct’ has not been declared
/usr/include/c++/4.0.2/cwctype:98: error: ‘::iswspace’ has not been declared
/usr/include/c++/4.0.2/cwctype:99: error: ‘::iswupper’ has not been declared
/usr/include/c++/4.0.2/cwctype:100: error: ‘::iswxdigit’ has not been declared
/usr/include/c++/4.0.2/cwctype:101: error: ‘::iswctype’ has not been declared
/usr/include/c++/4.0.2/cwctype:102: error: ‘::towlower’ has not been declared
/usr/include/c++/4.0.2/cwctype:103: error: ‘::towupper’ has not been declared
/usr/include/c++/4.0.2/cwctype:104: error: ‘::towctrans’ has not been declared
/usr/include/c++/4.0.2/cwctype:105: error: ‘::wctrans’ has not been declared
/usr/include/c++/4.0.2/cwctype:106: error: ‘::wctype’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:66: error: expected ‘,’ or ‘...’ before ‘&’ token
/usr/include/c++/4.0.2/bits/locale_facets.h:72: error: expected ‘,’ or ‘...’ before ‘&’ token
/usr/include/c++/4.0.2/bits/locale_facets.h:77: error: expected ‘,’ or ‘...’ before ‘&’ token
/usr/include/c++/4.0.2/bits/locale_facets.h:82: error: expected ‘,’ or ‘...’ before ‘&’ token
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:51: error: ‘_ISupper’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:52: error: ‘_ISlower’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:53: error: ‘_ISalpha’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:54: error: ‘_ISdigit’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:55: error: ‘_ISxdigit’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:56: error: ‘_ISspace’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:57: error: ‘_ISprint’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:58: error: ‘_ISalpha’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:58: error: ‘_ISdigit’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:58: error: ‘_ISpunct’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:59: error: ‘_IScntrl’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:60: error: ‘_ISpunct’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:61: error: ‘_ISalpha’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/ctype_base.h:61: error: ‘_ISdigit’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:684: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:725: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/bits/locale_facets.h: In member function ‘const char* std::ctype<char>::widen(const char*, const char*, char*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.h:897: error: ‘memcpy’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: In member function ‘const char* std::ctype<char>::narrow(const char*, const char*, char, char*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.h:962: error: ‘memcpy’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: In member function ‘virtual const char* std::ctype<char>::do_widen(const char*, const char*, char*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.h:1099: error: ‘memcpy’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: In member function ‘virtual const char* std::ctype<char>::do_narrow(const char*, const char*, char, char*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.h:1152: error: ‘memcpy’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: In member function ‘void std::ctype<char>::_M_widen_init() const’:
/usr/include/c++/4.0.2/bits/locale_facets.h:1167: error: ‘memcmp’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: In member function ‘void std::ctype<char>::_M_narrow_init() const’:
/usr/include/c++/4.0.2/bits/locale_facets.h:1182: error: ‘memcmp’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h:1219: error: ‘wctype_t’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:1222: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:1227: error: ‘wint_t’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:1231: error: ‘__wmask_type’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:1257: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/bits/locale_facets.h:1260: error: ‘__wmask_type’ does not name a type
/usr/include/c++/4.0.2/bits/codecvt.h:282: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/codecvt.h:292: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/bits/codecvt.h:333: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/codecvt.h:333: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/codecvt.h:333: error: explicit specialization of non-template ‘<type error>’
/usr/include/c++/4.0.2/bits/codecvt.h:334: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/codecvt.h:334: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/codecvt.h:391: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/codecvt.h:391: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/codecvt.h:391: error: explicit specialization of non-template ‘<type error>’
/usr/include/c++/4.0.2/bits/codecvt.h:392: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/codecvt.h:392: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/codecvt.h: In constructor ‘std::codecvt_byname<_InternT, _ExternT, _StateT>::codecvt_byname(const char*, size_t)’:
/usr/include/c++/4.0.2/bits/codecvt.h:458: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/codecvt.h:458: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h:1708: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/bits/locale_facets.h:1865: error: ‘__c_locale’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:1876: error: variable or field ‘_M_initialize_numpunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:1876: error: ‘int std::numpunct<char>::_M_initialize_numpunct’ is not a static member of ‘class std::numpunct<char>’
/usr/include/c++/4.0.2/bits/locale_facets.h:1876: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:1884: error: variable or field ‘_M_initialize_numpunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:1884: error: ‘int std::numpunct<wchar_t>::_M_initialize_numpunct’ is not a static member of ‘class std::numpunct<wchar_t>’
/usr/include/c++/4.0.2/bits/locale_facets.h:1884: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: In constructor ‘std::numpunct_byname<_CharT>::numpunct_byname(const char*, size_t)’:
/usr/include/c++/4.0.2/bits/locale_facets.h:1899: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_facets.h:1899: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_facets.h:1901: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:1901: error: expected `;' before ‘__tmp’
/usr/include/c++/4.0.2/bits/locale_facets.h:1902: error: ‘__tmp’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h:2479: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:2507: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/bits/locale_facets.h: In constructor ‘std::collate<_CharT>::collate(size_t)’:
/usr/include/c++/4.0.2/bits/locale_facets.h:2494: error: class ‘std::collate<_CharT>’ does not have any field named ‘_M_c_locale_collate’
/usr/include/c++/4.0.2/bits/locale_facets.h:2494: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.h: In destructor ‘virtual std::collate<_CharT>::~collate()’:
/usr/include/c++/4.0.2/bits/locale_facets.h:2571: error: ‘_M_c_locale_collate’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: In constructor ‘std::collate_byname<_CharT>::collate_byname(const char*, size_t)’:
/usr/include/c++/4.0.2/bits/locale_facets.h:2655: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_facets.h:2655: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h:2809: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:2833: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/bits/locale_facets.h:2839: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/bits/locale_facets.h:2940: error: ‘__c_locale’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:2949: error: variable or field ‘_M_initialize_timepunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:2949: error: ‘int std::__timepunct<char>::_M_initialize_timepunct’ is not a static member of ‘class std::__timepunct<char>’
/usr/include/c++/4.0.2/bits/locale_facets.h:2949: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:2953: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/bits/locale_facets.h:2958: error: variable or field ‘_M_initialize_timepunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:2958: error: ‘int std::__timepunct<wchar_t>::_M_initialize_timepunct’ is not a static member of ‘class std::__timepunct<wchar_t>’
/usr/include/c++/4.0.2/bits/locale_facets.h:2958: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:2963: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h: In constructor ‘std::__timepunct<_CharT>::__timepunct(size_t)’:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h:39: error: class ‘std::__timepunct<_CharT>’ does not have any field named ‘_M_c_locale_timepunct’
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h: In constructor ‘std::__timepunct<_CharT>::__timepunct(std::__timepunct_cache<_CharT>*, size_t)’:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h:45: error: class ‘std::__timepunct<_CharT>’ does not have any field named ‘_M_c_locale_timepunct’
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h: At global scope:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h:50: error: expected constructor, destructor, or type conversion before ‘(’ token
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h: In destructor ‘virtual std::__timepunct<_CharT>::~__timepunct()’:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/time_members.h:67: error: ‘_M_c_locale_timepunct’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h:3046: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3071: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3099: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3128: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3154: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3192: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3211: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3230: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3249: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3268: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3286: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3363: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/bits/locale_facets.h:3384: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/bits/locale_facets.h:3410: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/bits/locale_facets.h: In member function ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const’:
/usr/include/c++/4.0.2/bits/locale_facets.h:3385: error: ‘__tm’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:3385: error: ‘__format’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:3385: error: ‘__mod’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h:3596: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/bits/locale_facets.h:3883: error: ‘__c_locale’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.h:3901: error: variable or field ‘_M_initialize_moneypunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:3901: error: ‘int std::moneypunct<char, true>::_M_initialize_moneypunct’ is not a static member of ‘class std::moneypunct<char, true>’
/usr/include/c++/4.0.2/bits/locale_facets.h:3901: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:3901: error: expected primary-expression before ‘const’
/usr/include/c++/4.0.2/bits/locale_facets.h:3901: error: initializer expression list treated as compound expression
/usr/include/c++/4.0.2/bits/locale_facets.h:3905: error: variable or field ‘_M_initialize_moneypunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:3905: error: ‘int std::moneypunct<char, false>::_M_initialize_moneypunct’ is not a static member of ‘class std::moneypunct<char, false>’
/usr/include/c++/4.0.2/bits/locale_facets.h:3905: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:3905: error: expected primary-expression before ‘const’
/usr/include/c++/4.0.2/bits/locale_facets.h:3905: error: initializer expression list treated as compound expression
/usr/include/c++/4.0.2/bits/locale_facets.h:3916: error: variable or field ‘_M_initialize_moneypunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:3916: error: ‘int std::moneypunct<wchar_t, true>::_M_initialize_moneypunct’ is not a static member of ‘class std::moneypunct<wchar_t, true>’
/usr/include/c++/4.0.2/bits/locale_facets.h:3916: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:3917: error: expected primary-expression before ‘const’
/usr/include/c++/4.0.2/bits/locale_facets.h:3917: error: initializer expression list treated as compound expression
/usr/include/c++/4.0.2/bits/locale_facets.h:3921: error: variable or field ‘_M_initialize_moneypunct’ declared void
/usr/include/c++/4.0.2/bits/locale_facets.h:3921: error: ‘int std::moneypunct<wchar_t, false>::_M_initialize_moneypunct’ is not a static member of ‘class std::moneypunct<wchar_t, false>’
/usr/include/c++/4.0.2/bits/locale_facets.h:3921: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:3922: error: expected primary-expression before ‘const’
/usr/include/c++/4.0.2/bits/locale_facets.h:3922: error: initializer expression list treated as compound expression
/usr/include/c++/4.0.2/bits/locale_facets.h: In constructor ‘std::moneypunct_byname<_CharT, _Intl>::moneypunct_byname(const char*, size_t)’:
/usr/include/c++/4.0.2/bits/locale_facets.h:3939: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_facets.h:3939: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/locale_facets.h:3941: error: ‘__c_locale’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h:3941: error: expected `;' before ‘__tmp’
/usr/include/c++/4.0.2/bits/locale_facets.h:3942: error: ‘__tmp’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h:4271: error: ‘__c_locale’ does not name a type
/usr/include/c++/4.0.2/bits/locale_facets.h:4300: error: expected `)' before ‘__cloc’
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h: In constructor ‘std::messages<_CharT>::messages(size_t)’:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:39: error: class ‘std::messages<_CharT>’ does not have any field named ‘_M_c_locale_messages’
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:39: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h: At global scope:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:44: error: expected constructor, destructor, or type conversion before ‘(’ token
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h: In destructor ‘virtual std::messages<_CharT>::~messages()’:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:69: error: ‘_M_c_locale_messages’ was not declared in this scope
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h: In constructor ‘std::messages_byname<_CharT>::messages_byname(const char*, size_t)’:
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:95: error: ‘strlen’ is not a member of ‘std’
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:96: error: ‘strcpy’ is not a member of ‘std’
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:99: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/i486-linux-gnu/bits/messages_members.h:99: error: ‘strcmp’ is not a member of ‘std’
/usr/include/c++/4.0.2/bits/basic_ios.h: At global scope:
/usr/include/c++/4.0.2/bits/basic_ios.h: In instantiation of ‘std::basic_ios<char, std::char_traits<char> >’:
/usr/include/c++/4.0.2/bits/basic_ios.tcc:192:   instantiated from here
/usr/include/c++/4.0.2/bits/basic_ios.h:68: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/bits/basic_ios.h: In instantiation of ‘std::basic_ios<wchar_t, std::char_traits<wchar_t> >’:
/usr/include/c++/4.0.2/bits/basic_ios.tcc:195:   instantiated from here
/usr/include/c++/4.0.2/bits/basic_ios.h:66: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/bits/basic_ios.h:68: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _InIter std::num_get<_CharT, _InIter>::do_get(_InIter, _InIter, std::ios_base&, std::_Ios_Iostate&, float&) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:750: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _InIter std::num_get<_CharT, _InIter>::do_get(_InIter, _InIter, std::ios_base&, std::_Ios_Iostate&, double&) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:763: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _InIter std::num_get<_CharT, _InIter>::do_get(_InIter, _InIter, std::ios_base&, std::_Ios_Iostate&, long double&) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:776: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘_OutIter std::num_put<_CharT, _OutIter>::_M_insert_float(_OutIter, std::ios_base&, _CharT, char, _ValueT) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1066: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1074: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _InIter std::money_get<_CharT, _InIter>::do_get(_InIter, _InIter, bool, std::ios_base&, std::_Ios_Iostate&, long double&) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1479: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _OutIter std::money_put<_CharT, _OutIter>::do_put(_OutIter, bool, std::ios_base&, _CharT, long double) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1688: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1695: error: there are no arguments to ‘_S_get_c_locale’ that depend on a template parameter, so a declaration of ‘_S_get_c_locale’ must be available
/usr/include/c++/4.0.2/bits/locale_facets.tcc: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1735: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘_InIter std::time_get<_CharT, _InIter>::_M_extract_via_format(_InIter, _InIter, std::ios_base&, std::_Ios_Iostate&, int*, const _CharT*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1760: error: request for member ‘tm_wday’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1767: error: request for member ‘tm_wday’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1775: error: request for member ‘tm_mon’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1782: error: request for member ‘tm_mon’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1794: error: request for member ‘tm_mday’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1801: error: request for member ‘tm_mday’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1804: error: request for member ‘tm_mday’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1816: error: request for member ‘tm_hour’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1821: error: request for member ‘tm_hour’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1829: error: request for member ‘tm_mon’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1833: error: request for member ‘tm_min’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1853: error: request for member ‘tm_sec’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1889: error: request for member ‘tm_year’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:1897: error: request for member ‘tm_year’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2055: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2072: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2089: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _InIter std::time_get<_CharT, _InIter>::do_get_weekday(_InIter, _InIter, std::ios_base&, std::_Ios_Iostate&, int*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2123: error: request for member ‘tm_wday’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2134: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _InIter std::time_get<_CharT, _InIter>::do_get_monthname(_InIter, _InIter, std::ios_base&, std::_Ios_Iostate&, int*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2169: error: request for member ‘tm_mon’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2180: error: ‘tm’ has not been declared
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _InIter std::time_get<_CharT, _InIter>::do_get_year(_InIter, _InIter, std::ios_base&, std::_Ios_Iostate&, int*) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2196: error: request for member ‘tm_year’ in ‘__tm->’, which is of non-class type ‘int’
/usr/include/c++/4.0.2/bits/locale_facets.tcc: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2207: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2208: error: redefinition of ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const’
/usr/include/c++/4.0.2/bits/locale_facets.h:3384: error: ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const’ previously declared here
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2212: error: ‘__beg’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2212: error: ‘__end’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2232: error: ‘__tm’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2242: error: expected ‘,’ or ‘...’ before ‘*’ token
/usr/include/c++/4.0.2/bits/locale_facets.tcc: In member function ‘virtual _OutIter std::time_put<_CharT, _OutIter>::do_put(_OutIter, std::ios_base&, _CharT, int) const’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2262: error: ‘__mod’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2264: error: ‘__format’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2270: error: ‘__format’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2274: error: ‘__tm’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.h: At global scope:
/usr/include/c++/4.0.2/bits/locale_facets.h: In instantiation of ‘std::time_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2509:   instantiated from here
/usr/include/c++/4.0.2/bits/locale_facets.h:3384: error: ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const [with _CharT = char, _OutIter = std::ostreambuf_iterator<char, std::char_traits<char> >]’ cannot be overloaded
/usr/include/c++/4.0.2/bits/locale_facets.h:3364: error: with ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const [with _CharT = char, _OutIter = std::ostreambuf_iterator<char, std::char_traits<char> >]’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2516: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2516: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2521: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2521: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2522: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2522: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2522: error: template-id ‘use_facet<<expression error> >’ for ‘const int& std::use_facet(const std::locale&)’ does not match any template declaration
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2578: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2578: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2578: error: template-id ‘has_facet<<expression error> >’ for ‘bool std::has_facet(const std::locale&)’ does not match any template declaration
/usr/include/c++/4.0.2/bits/locale_facets.h: In instantiation of ‘std::time_put<wchar_t, std::ostreambuf_iterator<wchar_t, std::char_traits<wchar_t> > >’:
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2636:   instantiated from here
/usr/include/c++/4.0.2/bits/locale_facets.h:3384: error: ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator<wchar_t, std::char_traits<wchar_t> >]’ cannot be overloaded
/usr/include/c++/4.0.2/bits/locale_facets.h:3364: error: with ‘_OutIter std::time_put<_CharT, _OutIter>::put(_OutIter, std::ios_base&, _CharT, int) const [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator<wchar_t, std::char_traits<wchar_t> >]’
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2643: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2643: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2648: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2648: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2649: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2649: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2649: error: template-id ‘use_facet<<expression error> >’ for ‘const int& std::use_facet(const std::locale&)’ does not match any template declaration
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2705: error: ‘mbstate_t’ was not declared in this scope
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2705: error: template argument 3 is invalid
/usr/include/c++/4.0.2/bits/locale_facets.tcc:2705: error: template-id ‘has_facet<<expression error> >’ for ‘bool std::has_facet(const std::locale&)’ does not match any template declaration
/usr/include/c++/4.0.2/ostream: In instantiation of ‘std::basic_ostream<char, std::char_traits<char> >’:
/usr/include/c++/4.0.2/bits/ostream.tcc:680:   instantiated from here
/usr/include/c++/4.0.2/ostream:64: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/bits/ostream.tcc:451: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/ostream: In instantiation of ‘std::basic_ostream<wchar_t, std::char_traits<wchar_t> >’:
/usr/include/c++/4.0.2/bits/ostream.tcc:692:   instantiated from here
/usr/include/c++/4.0.2/ostream:62: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/ostream:64: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/bits/ostream.tcc:451: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream: In instantiation of ‘std::basic_istream<char, std::char_traits<char> >’:
/usr/include/c++/4.0.2/istream:580:   instantiated from here
/usr/include/c++/4.0.2/istream:65: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/istream:569: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/istream: In instantiation of ‘std::basic_istream<wchar_t, std::char_traits<wchar_t> >’:
/usr/include/c++/4.0.2/istream:596:   instantiated from here
/usr/include/c++/4.0.2/istream:63: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream:65: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream:272: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream:427: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream:438: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream:569: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream: In instantiation of ‘std::basic_iostream<char, std::char_traits<char> >’:
/usr/include/c++/4.0.2/bits/istream.tcc:1273:   instantiated from here
/usr/include/c++/4.0.2/istream:757: error: no type named ‘off_type’ in ‘struct std::char_traits<char>’
/usr/include/c++/4.0.2/istream: In instantiation of ‘std::basic_istream<wchar_t, std::char_traits<wchar_t> >::sentry’:
/usr/include/c++/4.0.2/bits/istream.tcc:1276:   instantiated from here
/usr/include/c++/4.0.2/istream:630: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream: In instantiation of ‘std::basic_iostream<wchar_t, std::char_traits<wchar_t> >’:
/usr/include/c++/4.0.2/bits/istream.tcc:1281:   instantiated from here
/usr/include/c++/4.0.2/istream:755: error: no type named ‘int_type’ in ‘struct std::char_traits<wchar_t>’
/usr/include/c++/4.0.2/istream:757: error: no type named ‘off_type’ in ‘struct std::char_traits<wchar_t>’

Da sad ne pisem dalje.
Pomoc.
[ Pharos @ 07.05.2006. 15:01 ] @
Prokleti kubuntu, nisam dobio čak ni gcc sa njim, što se podrazumeva u svakoj lin distribuciji.
Brišem to đubre s kompa.