a1b1ba0e5e
Also import patches in the branch so far.
36 lines
1 KiB
Diff
36 lines
1 KiB
Diff
From ad912c805123b84c939da6a76158fef563809101 Mon Sep 17 00:00:00 2001
|
|
From: "Carsten Haitzler (Rasterman)" <raster@rasterman.com>
|
|
Date: Tue, 24 Dec 2019 00:22:37 +0000
|
|
Subject: [PATCH 4/4] ecore-x - fix fallbacks to use capital X in lib name
|
|
|
|
thanks peter. fixes T8543
|
|
@fix
|
|
---
|
|
src/lib/ecore_x/meson.build | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git src/lib/ecore_x/meson.build src/lib/ecore_x/meson.build
|
|
index 0e16bd7385..262538bd95 100644
|
|
--- src/lib/ecore_x/meson.build
|
|
+++ src/lib/ecore_x/meson.build
|
|
@@ -75,7 +75,7 @@ endif
|
|
|
|
x11 = dependency('x11', required: false)
|
|
if x11.found() == false
|
|
- x11 = cc.find_library('x11', required: true)
|
|
+ x11 = cc.find_library('X11', required: true)
|
|
endif
|
|
|
|
xcb = dependency('xcb', required: false)
|
|
@@ -85,7 +85,7 @@ endif
|
|
|
|
x11_xcb = dependency('x11-xcb', required: false)
|
|
if x11_xcb.found() == false
|
|
- x11_xcb = cc.find_library('x11-xcb', required: true)
|
|
+ x11_xcb = cc.find_library('X11-xcb', required: true)
|
|
endif
|
|
|
|
foreach ecore_x_check : ecore_x_checks
|
|
--
|
|
2.25.1
|
|
|