



Code: Select all
In file included from kab2kabc.cpp:36:
stdaddressbook.h:129: Fehler: `Addressee' does not name a type
stdaddressbook.h:136: Fehler: expected `,' or `...' vor »&«
stdaddressbook.h:136: Fehler: ISO C++ forbids declaration of `Addressee' with no type
kab2kabc.cpp:48: Fehler: »KABC::AddressBook« wurde nicht deklariert
kab2kabc.cpp:49: Fehler: ISO C++ forbids declaration of `ab' with no type
kab2kabc.cpp: In function `void readKMailEntry(constQString&, int*)':
kab2kabc.cpp:107: Fehler: »KABC::Addressee« wurde nicht deklariert
kab2kabc.cpp:107: Fehler: `List' was not declared in this scope


Code: Select all
$ sudo emerge -uDa world
Password:
These are the packages that I would merge, in order:
Calculating world dependencies |~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.2.5-r9
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.2.5-r9
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.1-r5
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.1-r5
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.2-r10
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.2-r10
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.2-r2
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.2-r2
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.2-r9
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.2-r9
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3.20040420
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3.20040420
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20031210
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20031210
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20040117
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20040117
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20040207
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20040207
~x86
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20040420
QA Notice: USE Flag 'debug' not in IUSE for sys-libs/glibc-2.3.3_pre20040420
~x86

what are the compile errors with this one? assuming its a problem with the code rather than a bug in GCC, i'll look into it..robmoss2k wrote:Current list of broken packages: [...] easytag,[...]
There are no compile errors with the current snapshot. It seems to run, too. Haven't done exhaustive testing, but there doesn't seem to be a lot to do to it right now.dsd wrote:what are the compile errors with this one? assuming its a problem with the code rather than a bug in GCC, i'll look into it..robmoss2k wrote:Current list of broken packages: [...] easytag,[...]
Code: Select all
The program 'easytag' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadWindow (invalid Window parameter)'.
(Details: serial 81942 error_code 3 request_code 38 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)Code: Select all
static int WINAPI expGetWindowThreadProcessId(HWND win, int *pid_data)
{
int tid = pthread_self();
dbgprintf("GetWindowThreadProcessId(0x%x, 0x%x) => %d\n",
win, pid_data, tid);
if (pid_data)
(int)*pid_data = tid;
return tid;
}
Code: Select all
--- MPlayer-1.0pre4/loader/win32.c.orig 2004-04-23 07:50:23.000000000 -0400
+++ MPlayer-1.0pre4/loader/win32.c 2004-06-17 23:08:14.730667198 -0400
@@ -2666,7 +2666,7 @@
dbgprintf("GetWindowThreadProcessId(0x%x, 0x%x) => %d\n",
win, pid_data, tid);
if (pid_data)
- (int)*pid_data = tid;
+ *pid_data = tid;
return tid;
}Code: Select all
i386/dsputil_mmx.c: In function `h263_h_loop_filter_mmx':
i386/dsputil_mmx.c:633: error: can't find a register in class `GENERAL_REGS' while reloading `asm'
make[1]: *** [i386/dsputil_mmx.o] Error 1
Code: Select all
(int)(*pid_data = (int)(int)tid)Maybe look at UserMode Linux?Oh, one more thing. If I were to chroot onto some other disk and start with a stage1 or 2 install, wouldn't that be a way to have my safe system intact (not to mention running while I play with gcc 3.5) with the sketchy gcc 3.5 system isolated from my real system? Let me know, maybe I'll do that if that would work as expected...
No need. Running it inside a chroot is more than adequate for testing new systems, unless you're testing the kernel or init scripts. Kernels generally compile without problems, and the init scripts are mostly Bash, so there's no need.windzor wrote:Maybe look at UserMode Linux?Oh, one more thing. If I were to chroot onto some other disk and start with a stage1 or 2 install, wouldn't that be a way to have my safe system intact (not to mention running while I play with gcc 3.5) with the sketchy gcc 3.5 system isolated from my real system? Let me know, maybe I'll do that if that would work as expected...