mirror of
https://github.com/touchHLE/touchHLE.git
synced 2026-01-31 01:25:24 +01:00
Add zlib dylib
Change-Id: I2db5f219d43d2f4f875b81cab51674895a199cb8
This commit is contained in:
committed by
acieslewicz
parent
cfba0c60e8
commit
bfd18cb435
19
src/fs.rs
19
src/fs.rs
@@ -552,6 +552,25 @@ impl Fs {
|
||||
.with_child(
|
||||
"libstdc++.6.0.9.dylib",
|
||||
FsNode::resource_file(format!("{}/libstdc++.6.0.9.dylib", DYLIBS_DIR)),
|
||||
)
|
||||
.with_child(
|
||||
"libz.1.2.3.dylib",
|
||||
FsNode::resource_file(format!("{}/libz.1.2.3.dylib", DYLIBS_DIR)),
|
||||
)
|
||||
.with_child(
|
||||
// symlink
|
||||
"libz.1.dylib",
|
||||
FsNode::resource_file(format!("{}/libz.1.2.3.dylib", DYLIBS_DIR)),
|
||||
)
|
||||
.with_child(
|
||||
// symlink
|
||||
"libz.dylib",
|
||||
FsNode::resource_file(format!("{}/libz.1.2.3.dylib", DYLIBS_DIR)),
|
||||
)
|
||||
.with_child(
|
||||
// symlink
|
||||
"libz.1.1.3.dylib",
|
||||
FsNode::resource_file(format!("{}/libz.1.2.3.dylib", DYLIBS_DIR)),
|
||||
);
|
||||
|
||||
let mut app_dir_children = HashMap::new();
|
||||
|
||||
20
touchHLE_dylibs/COPYING.libz
Normal file
20
touchHLE_dylibs/COPYING.libz
Normal file
@@ -0,0 +1,20 @@
|
||||
Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
|
||||
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
|
||||
Jean-loup Gailly Mark Adler
|
||||
jloup@gzip.org madler@alumni.caltech.edu
|
||||
@@ -15,6 +15,13 @@ These are impractical to reimplement, but they are Free Software.
|
||||
* Binary origin: `/usr/lib/` of iPhone OS 3.0.1 for the iPhone 3G, build 7A400
|
||||
* Source code: <https://github.com/apple-oss-distributions/gcc/tree/gcc-5572.10.2>
|
||||
|
||||
## `libz.1.2.3.dylib`
|
||||
|
||||
* License: zlib License (see `COPYING.libz`)
|
||||
* Binary origin: compilation of zlib source code
|
||||
* Build code: <https://github.com/touchHLE/zlib-dylib>
|
||||
* Source code: <https://github.com/apple-oss-distributions/zlib/tree/zlib-23.0.1>
|
||||
|
||||
## Original Apple license acknowledgements
|
||||
|
||||
> **Free Software Foundation** ( libgcc, libstdc++ )
|
||||
|
||||
1
touchHLE_dylibs/libz.1.1.3.dylib
Symbolic link
1
touchHLE_dylibs/libz.1.1.3.dylib
Symbolic link
@@ -0,0 +1 @@
|
||||
libz.1.2.3.dylib
|
||||
BIN
touchHLE_dylibs/libz.1.2.3.dylib
Normal file
BIN
touchHLE_dylibs/libz.1.2.3.dylib
Normal file
Binary file not shown.
1
touchHLE_dylibs/libz.1.dylib
Symbolic link
1
touchHLE_dylibs/libz.1.dylib
Symbolic link
@@ -0,0 +1 @@
|
||||
libz.1.2.3.dylib
|
||||
1
touchHLE_dylibs/libz.dylib
Symbolic link
1
touchHLE_dylibs/libz.dylib
Symbolic link
@@ -0,0 +1 @@
|
||||
libz.1.2.3.dylib
|
||||
Reference in New Issue
Block a user