Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 265558 | Differences between
and this patch

Collapse All | Expand All

(-)VirtualBox-2.2.0_OSE.orig/configure (-13 / +1 lines)
Lines 1244-1262 Link Here
1244
#include <GL/glu.h>
1244
#include <GL/glu.h>
1245
extern "C" int main(void)
1245
extern "C" int main(void)
1246
{
1246
{
1247
  Display *dpy;
1247
  printf("found, OK.\n");
1248
  int major, minor;
1249
1250
  dpy = XOpenDisplay(NULL);
1251
  if (dpy)
1252
  {
1253
    if (glXQueryVersion(dpy, &major, &minor))
1254
    {
1255
      printf("found version %u.%u, OK.\n", major, minor);
1256
      return 0;
1257
    }
1258
  }
1259
  printf("found (inactive), OK.\n");
1260
  return 0;
1248
  return 0;
1261
}
1249
}
1262
EOF
1250
EOF

Return to bug 265558