Add retroarch networking support

This commit is contained in:
Jeremy Soller 2022-07-23 21:28:16 -06:00
parent 72ab989775
commit 17aca2f42e
No known key found for this signature in database
GPG Key ID: 87F211AF2BE4C2FE

View File

@ -7,6 +7,7 @@ dependencies = [
"liborbital",
"llvm",
"mesa",
"openssl",
"sdl2",
"zlib",
]
@ -20,10 +21,13 @@ rsync -av --delete "${COOKBOOK_SOURCE}/" ./
COOKBOOK_CONFIGURE_FLAGS=(
--host="${TARGET}"
--prefix="/"
--disable-builtinzlib
--disable-networking # missing ifaddrs.h
--disable-builtinzlib # conflicts with zlib
--disable-discord # does not link
--disable-netplaydiscovery # missing ifaddrs.h
--disable-thread_storage # crash in pthread_setspecific called by sthread_tls_set
--enable-opengl
--enable-sdl2
--enable-ssl
--enable-zlib
)
cookbook_configure