File: Use-the-system-libraries.patch

package info (click to toggle)
python-imageio 2.37.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,144 kB
  • sloc: python: 26,306; makefile: 138
file content (21 lines) | stat: -rw-r--r-- 606 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Ghislain Antony Vaillant <ghisvail@gmail.com>
Date: Wed, 28 Dec 2016 14:45:12 +0000
Subject: Use the system libraries

---
 imageio/core/findlib.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/imageio/core/findlib.py b/imageio/core/findlib.py
index f45fd5a..d0d4540 100644
--- a/imageio/core/findlib.py
+++ b/imageio/core/findlib.py
@@ -12,7 +12,7 @@ import ctypes
 LOCALDIR = os.path.abspath(os.path.dirname(__file__))
 
 # Flag that can be patched / set to True to disable loading non-system libs
-SYSTEM_LIBS_ONLY = False
+SYSTEM_LIBS_ONLY = True
 
 
 def looks_lib(fname):