Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/virtualbox-ose/files: virtualbox-ose-3.0.0-mesa-check.patch
Date: Thu, 16 Jul 2009 21:43:03
Message-Id: E1MRYjF-0006HM-Ji@stork.gentoo.org
1 patrick 09/07/16 21:43:01
2
3 Added: virtualbox-ose-3.0.0-mesa-check.patch
4 Log:
5 Bump to 3.0.2. Fixes #275963. Thanks to Alessio Cassiba and all the testers
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-emulation/virtualbox-ose/files/virtualbox-ose-3.0.0-mesa-check.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virtualbox-ose/files/virtualbox-ose-3.0.0-mesa-check.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virtualbox-ose/files/virtualbox-ose-3.0.0-mesa-check.patch?rev=1.1&content-type=text/plain
13
14 Index: virtualbox-ose-3.0.0-mesa-check.patch
15 ===================================================================
16 --- configure.orig 2009-07-01 22:54:39.830348980 +0200
17 +++ configure 2009-07-01 23:01:11.346350261 +0200
18 @@ -1206,9 +1206,7 @@
19 }
20 EOF
21 [ -n "$INCX11" ] && I_INCX11=`prefix_I "$INCX11"`
22 - if test_compile "$LIBX11 $I_INCX11" Xlibs Xlibs; then
23 - log_success "found"
24 - fi
25 + test_compile "$LIBX11 $I_INCX11" Xlibs Xlibs
26 }
27
28
29 @@ -1288,19 +1286,6 @@
30 #include <GL/glu.h>
31 extern "C" int main(void)
32 {
33 - Display *dpy;
34 - int major, minor;
35 -
36 - dpy = XOpenDisplay(NULL);
37 - if (dpy)
38 - {
39 - if (glXQueryVersion(dpy, &major, &minor))
40 - {
41 - printf("found version %u.%u, OK.\n", major, minor);
42 - return 0;
43 - }
44 - }
45 - printf("found (inactive), OK.\n");
46 return 0;
47 }
48 EOF