Package: bobcat
Version: 1.10.1-1
Severity: serious
Tags: patch
When building 'bobcat' on amd64/unstable,
I get the following error:
g++ -c -o xpointer/o/58get.o -Itmp -Wall -O3 xpointer/get.cc
xpointer/get.cc: In member function 'bool FBB::Xpointer::get(int*, int*) const':
xpointer/get.cc:14: error: cannot convert 'size_t*' to 'unsigned int*' for
argument '9' to 'int XQueryPointer(Display*, Window, Window*, Window*, int*,
int*, int*, int*, unsigned int*)'
system - failure of system call (status 256)
system - failure of system call (status 256)
make: *** [build-stamp] Error 1
With the attached patch 'bobcat' can be compiled on amd64.
Regards
Andreas Jochens
diff -urN ../tmp-orig/bobcat-1.10.1/xpointer/get.cc ./xpointer/get.cc
--- ../tmp-orig/bobcat-1.10.1/xpointer/get.cc 2006-08-25 14:25:20.000000000
+0000
+++ ./xpointer/get.cc 2006-08-30 11:43:02.000000000 +0000
@@ -5,7 +5,7 @@
Window rootret;
Window child;
Window root = DefaultRootWindow(s_theDisplay);
- size_t keys;
+ unsigned int keys;
int dum_x;
int dum_y;
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]