1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Last-Update: 2014-06-07
Forwarded: not-needed
Author: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>
Description: Disable HTML5 client
--- a/setup.py
+++ b/setup.py
@@ -133,9 +133,9 @@
gtk_x11_ENABLED = DEFAULT and not WIN32 and not OSX
gtk2_ENABLED = DEFAULT and client_ENABLED and not PYTHON3
gtk3_ENABLED = DEFAULT and client_ENABLED and PYTHON3
opengl_ENABLED = DEFAULT and client_ENABLED
-html5_ENABLED = DEFAULT and not WIN32 and not OSX
+html5_ENABLED = False
vsock_ENABLED = sys.platform.startswith("linux") and os.path.exists("/usr/include/linux/vm_sockets.h")
bencode_ENABLED = DEFAULT
cython_bencode_ENABLED = DEFAULT
|