- libjpeg-turbo is used for better performance - WEBP and XVID removed due to poor performance and instability - Cython, OpenCL, and OpenCV scalers removed due to poor performance Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10115
14 lines
341 B
Text
14 lines
341 B
Text
# preload the correct libgcc_s.so for libgfortran.so,
|
|
# which is required for numpy
|
|
#
|
|
--- scripts/xpra_launcher.orig 2017-03-17 07:24:27 UTC
|
|
+++ scripts/xpra_launcher
|
|
@@ -1,5 +1,8 @@
|
|
#!/usr/bin/env python
|
|
|
|
+from ctypes import cdll
|
|
+cdll.LoadLibrary("%%GCC_RUNTIME%%/libgcc_s.so")
|
|
+
|
|
import sys
|
|
from xpra.platform import program_context
|
|
|