summaryrefslogtreecommitdiff
blob: 67ade148900734c8a017e253cda5abc053b6790c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--- VirtualBox-5.0.16/configure
+++ VirtualBox-5.0.16/configure
@@ -1270,10 +1270,7 @@
   XCloseDisplay(dpy);
 }
 EOF
-  [ -n "$INCX11" ] && I_INCX11=`prefix_I "$INCX11"`
-  if test_compile "$LIBX11 $I_INCX11" Xlibs Xlibs; then
-    log_success "found"
-  fi
+  test_compile "$LIBX11 $I_INCX11" Xlibs Xlibs
 }
 
 
@@ -1427,21 +1424,6 @@
 #include <GL/glu.h>
 extern "C" int main(void)
 {
-  Display *dpy;
-  int major, minor;
-
-  dpy = XOpenDisplay(NULL);
-  if (dpy)
-  {
-    Bool glx_version = glXQueryVersion(dpy, &major, &minor);
-    XCloseDisplay(dpy);
-    if (glx_version)
-    {
-      printf("found version %u.%u, OK.\n", major, minor);
-      return 0;
-    }
-  }
-  printf("found (inactive), OK.\n");
   return 0;
 }
 EOF