Re: Chromium installation problem.

Michael Barnes <[email protected]>
Newsgroups gmane.comp.graphics.chromium.user
Message-ID <[email protected]>
On Mon, Mar 27, 2006 at 10:55:58AM -0600, Michelle Chu wrote:
> Thank you so much!!! The problem was solved by applying your
> patch. However, I have another question concerning the installation
> of Chrmoium on my four client nodes to drive four tiled 24inch LCD
> display. I am using Oscar to manage my cluster. Chromium on my server
> node is running fine.

Cool.  It would be nice if the patch and a 1.8.1 release came out.

> drivers/x11/glxapi.c: In function `glXDestroyWindow':
> drivers/x11/glxapi.c:456: error: `dpy' undeclared (first use in this function)
> drivers/x11/glxapi.c:459: error: dereferencing pointer to incomplete type
> drivers/x11/glxapi.c:459: error: `window' undeclared (first use in this function)

There must be other errors before this?  Or your compiler is completely
broken.

The function glXDestroyWindow looks like:

void PUBLIC
glXDestroyWindow(Display *dpy, GLXWindow window)
{
   struct _glxapi_table *t;
   GET_DISPATCH(dpy, t);
   if (!t)
      return;
   (t->DestroyWindow)(dpy, window);
}

There is no way that dpy and window cannot be declared, they are right
there as arguments to the function!

The function before it looks like:

void PUBLIC
glXDestroyPixmap(Display *dpy, GLXPixmap pixmap)
{
   struct _glxapi_table *t;
   GET_DISPATCH(dpy, t);
   if (!t)
      return;
   (t->DestroyPixmap)(dpy, pixmap);
}

There is no way that glXDestroyPixmap() and glXCreateWindow() will
compile and glXDestroyWindow() will not in the same file.


Mike

-- 
/-----------------------------------------\
| Michael Barnes <[email protected]> |
| UNIX/Linux HPC Systems Administrator    |
| College of William and Mary             |
| Phone: (757) 879-3930 (cell)            |
\-----------------------------------------/


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.