Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 832963
Collapse All | Expand All

(-)a/src/client/configure.json (+32 lines)
Lines 7-12 Link Here
7
    "testDir": "../../config.tests",
7
    "testDir": "../../config.tests",
8
8
9
    "libraries": {
9
    "libraries": {
10
        "egl": {
11
            "label": "EGL",
12
            "test": {
13
                "main": [
14
                    "EGLint x = 0; EGLDisplay dpy = 0; EGLContext ctx = 0;",
15
                    "eglDestroyContext(dpy, ctx);"
16
                ]
17
            },
18
            "headers": "EGL/egl.h",
19
            "sources": [
20
                { "type": "pkgConfig", "args": "egl" }
21
            ]
22
        },
23
        "drm": {
24
            "label": "KMS",
25
            "test": {
26
                "head": [
27
                    "#include <stdlib.h>",
28
                    "#include <stdint.h>",
29
                    "extern \"C\" {"
30
                ],
31
                "tail": [
32
                    "}"
33
                ],
34
                "main": "(void) drmModeGetCrtc(0, 0);"
35
            },
36
            "headers": [ "xf86drmMode.h", "xf86drm.h" ],
37
            "sources": [
38
                { "type": "pkgConfig", "args": "libdrm" },
39
                { "libs": "-ldrm" }
40
            ]
41
        },
10
        "wayland-client": {
42
        "wayland-client": {
11
            "label": "Wayland client library",
43
            "label": "Wayland client library",
12
            "headers": "wayland-version.h",
44
            "headers": "wayland-version.h",
(-)a/src/compositor/configure.json (-1 / +32 lines)
Lines 7-12 Link Here
7
    "testDir": "../../config.tests",
7
    "testDir": "../../config.tests",
8
8
9
    "libraries": {
9
    "libraries": {
10
        "egl": {
11
            "label": "EGL",
12
            "test": {
13
                "main": [
14
                    "EGLint x = 0; EGLDisplay dpy = 0; EGLContext ctx = 0;",
15
                    "eglDestroyContext(dpy, ctx);"
16
                ]
17
            },
18
            "headers": "EGL/egl.h",
19
            "sources": [
20
                { "type": "pkgConfig", "args": "egl" }
21
            ]
22
        },
23
        "drm": {
24
            "label": "KMS",
25
            "test": {
26
                "head": [
27
                    "#include <stdlib.h>",
28
                    "#include <stdint.h>",
29
                    "extern \"C\" {"
30
                ],
31
                "tail": [
32
                    "}"
33
                ],
34
                "main": "(void) drmModeGetCrtc(0, 0);"
35
            },
36
            "headers": [ "xf86drmMode.h", "xf86drm.h" ],
37
            "sources": [
38
                { "type": "pkgConfig", "args": "libdrm" },
39
                { "libs": "-ldrm" }
40
            ]
41
        },
10
        "wayland-client": {
42
        "wayland-client": {
11
            "label": "Wayland client library",
43
            "label": "Wayland client library",
12
            "headers": "wayland-version.h",
44
            "headers": "wayland-version.h",
13
- 

Return to bug 832963