Rename modules for standard libs correctly work

This commit is contained in:
Oleg Korshul
2024-06-04 23:27:09 +03:00
parent d61c1da666
commit b934429e41
4 changed files with 69 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import cef
import icu
import openssl
import curl
from modules import websocket
import websocket_all
import v8
import html2
import hunspell
@ -54,5 +54,5 @@ def make():
if config.check_option("module", "mobile"):
if (config.check_option("platform", "android")):
curl.make()
websocket.make()
websocket_all.make()
return

View File

@ -0,0 +1,16 @@
#!/usr/bin/env python
import sys
sys.path.append('../..')
import config
import base
#import ixwebsocket
#import socketrocket
import socket_io
def make():
#ixwebsocket.make()
#socketrocket.make()
socket_io.make()
return