mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 10:38:46 +08:00
Add retroarch networking support
This commit is contained in:
parent
72ab989775
commit
17aca2f42e
@ -7,6 +7,7 @@ dependencies = [
|
|||||||
"liborbital",
|
"liborbital",
|
||||||
"llvm",
|
"llvm",
|
||||||
"mesa",
|
"mesa",
|
||||||
|
"openssl",
|
||||||
"sdl2",
|
"sdl2",
|
||||||
"zlib",
|
"zlib",
|
||||||
]
|
]
|
||||||
@ -20,10 +21,13 @@ rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
|||||||
COOKBOOK_CONFIGURE_FLAGS=(
|
COOKBOOK_CONFIGURE_FLAGS=(
|
||||||
--host="${TARGET}"
|
--host="${TARGET}"
|
||||||
--prefix="/"
|
--prefix="/"
|
||||||
--disable-builtinzlib
|
--disable-builtinzlib # conflicts with zlib
|
||||||
--disable-networking # missing ifaddrs.h
|
--disable-discord # does not link
|
||||||
|
--disable-netplaydiscovery # missing ifaddrs.h
|
||||||
--disable-thread_storage # crash in pthread_setspecific called by sthread_tls_set
|
--disable-thread_storage # crash in pthread_setspecific called by sthread_tls_set
|
||||||
--enable-opengl
|
--enable-opengl
|
||||||
|
--enable-sdl2
|
||||||
|
--enable-ssl
|
||||||
--enable-zlib
|
--enable-zlib
|
||||||
)
|
)
|
||||||
cookbook_configure
|
cookbook_configure
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user