Package: kredentials Version: 0.9.2 Usertags: ftbfs-gcc-4.3 Tags: patch Your package fails to build with GCC 4.3. Version 4.3 has not been released yet but I'm building with a snapshot in order to find errors and give people an advance warning. In GCC 4.3, the C++ header dependencies have been cleaned up. The advantage of this is that programs will compile faster. The downside is that you actually need to directly #include everything you use (but you really should do this anyway, otherwise your program won't work with any compiler other than GCC). Some background of this can be found at http://gcc.gnu.org/PR28080
You can reproduce this problem with gcc-snapshot from unstable. > Automatic build of kredentials_0.9.2 on coconut0 by sbuild/ia64 0.49 ... > In file included from kredentials.h:39, > from kredentials.cpp:22: > krb5_wrap.h: At global scope: > krb5_wrap.h:118: warning: type qualifiers ignored on function return type > kredentials.cpp: In member function 'void kredentials::tryPassGetTickets()': > kredentials.cpp:127: error: 'auto_ptr' is not a member of 'std' > kredentials.cpp:127: error: expected primary-expression before '>' token > kredentials.cpp:127: error: 'osMe' was not declared in this scope --- src/kredentials.cpp~ 2007-04-02 09:43:16.000000000 +0000 +++ src/kredentials.cpp 2007-04-02 09:43:34.000000000 +0000 @@ -39,6 +39,7 @@ #include <time.h> #include <string.h> #include <iostream> +#include <memory> #ifndef NDEBUG #define DEFAULT_RENEWAL_INTERVAL 20 --- src/krb5_wrap.cpp~ 2007-04-02 09:44:28.000000000 +0000 +++ src/krb5_wrap.cpp 2007-04-02 09:44:35.000000000 +0000 @@ -23,6 +23,7 @@ #include <kdebug.h> #include <krb5_wrap.h> #include <iostream> +#include <memory> #include <termios.h> #include <pwd.h> -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]