mirror of
https://github.com/morgan9e/UxPlay
synced 2026-04-15 00:34:05 +09:00
README fix typo
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
<p><strong>OpenSUSE:</strong> (sudo zypper install) libopenssl-devel libplist-devel avahi-compat-mDNSResponder-devel (+ libX11-devel for ZOOMFIX). The required GStreamer packages (you may need to use versions from <a href="https://ftp.gwdg.de/pub/linux/misc/packman/suse/">Packman</a>) are: gstreamer-devel gstreamer-plugins-base-devel gstreamer-plugins-libav gstreamer-plugins-bad (+ gstreamer-plugins-vaapi for Intel graphics).</p>
|
||||
<p><strong>FreeBSD:</strong> (sudo pkg install) libplist gstreamer1, gstreamer1-libav, gstreamer1-plugins, gstreamer1-plugins-* (* = core, good, bad, x, gtk, gl, vulkan, pulse …), (+ gstreamer1-vaapi for Intel graphics). Either avahi-libdns or mDNSResponder must also be installed to provide the dns_sd library. OpenSSL is already installed as a System Library. “ZOOMFIX” is untested; don’t try to use it on FreeBSD unless you need it.</p>
|
||||
<h3 id="building-openssl-1.1.1-from-source.">Building OpenSSL >= 1.1.1 from source.</h3>
|
||||
<p>If you need to do this, note that you may be able to use a newer version (OpenSSL-3.0.1 is known to work). You will need the standard development toolset (autoconf, automake, libtool, etc.). Download and compile the source code from <a href="https://www.openssl.org/source/">https://www.openssl.org/source/</a>, Install the downloaded openssl by opening a terminal in your Downloads directory, and unpacking the source distribution: (“tar -xvzf openssl-3.0.1.tar.gz ; cd openssl-3.0.1”). Then build/install with “./config ; make ; sudo make install_dev”. This will typically install the needed library <code>libcrypto.*</code>, either in /usr/local/lib or /usr/local/lib64. <em>(Ignore the following for builds on MacOS:)</em> Assuming the library was placed in /usr/local/lib64, you must “export OPENSSL_ROOT_DIR=/usr/local/lib64” before running cmake. On some systems like Debian or Ubuntu, you may also need to add a missing entry <code>/usr/local/lib64</code> in /etc/ld.so.conf (or place a file containing “/usr/local/lib64/libcrypto.so” in /etc/ld.so.conf.d) before running “sudo ldconfig”.</p>
|
||||
<p>If you need to do this, note that you may be able to use a newer version (OpenSSL-3.0.1 is known to work). You will need the standard development toolset (autoconf, automake, libtool, etc.). Download the source code from <a href="https://www.openssl.org/source/">https://www.openssl.org/source/</a>. Install the downloaded openssl by opening a terminal in your Downloads directory, and unpacking the source distribution: (“tar -xvzf openssl-3.0.1.tar.gz ; cd openssl-3.0.1”). Then build/install with “./config ; make ; sudo make install_dev”. This will typically install the needed library <code>libcrypto.*</code>, either in /usr/local/lib or /usr/local/lib64. <em>(Ignore the following for builds on MacOS:)</em> Assuming the library was placed in /usr/local/lib64, you must “export OPENSSL_ROOT_DIR=/usr/local/lib64” before running cmake. On some systems like Debian or Ubuntu, you may also need to add a missing entry <code>/usr/local/lib64</code> in /etc/ld.so.conf (or place a file containing “/usr/local/lib64/libcrypto.so” in /etc/ld.so.conf.d) before running “sudo ldconfig”.</p>
|
||||
<h3 id="bulding-libplist-2.0.0-from-source.">Bulding libplist >= 2.0.0 from source.</h3>
|
||||
<p><em>Note: on Debian 9 “Stretch” or Ubuntu 16.04 LTS editions, you can avoid this step by installing libplist-dev and libplist3 from Debian 10 or Ubuntu 18.04.</em> (As well as the usual build tools, you may need to also install some libpython*-dev package). Download the latest source from <a href="https://github.com/libimobiledevice/libplist">https://github.com/libimobiledevice/libplist</a>: get <a href="https://github.com/libimobiledevice/libplist/archive/refs/heads/master.zip">libplist-master.zip</a>, then (“unzip libplist-master.zip ; cd libplist-master”), build/install (“./autogen.sh ; make ; sudo make install”). This will probably install libplist-2.0.* in /usr/local/lib. <em>(Ignore the following for builds on MacOS:)</em> On some systems like Debian or Ubuntu, you may also need to add a missing entry <code>/usr/local/lib</code> in /etc/ld.so.conf (or place a file containing “/usr/local/lib/libplist-2.0.so” in /etc/ld.so.conf.d) before running “sudo ldconfig”.</p>
|
||||
<h2 id="building-uxplay-on-macos-only-tested-on-intel-x86_64-macs">Building UxPlay on macOS: <strong>(Only tested on Intel X86_64 Macs)</strong></h2>
|
||||
|
||||
@@ -140,8 +140,8 @@ OpenSSL is already installed as a System Library. "ZOOMFIX" is untested; don't
|
||||
|
||||
If you need to do this, note that you may be able to use a newer version (OpenSSL-3.0.1 is known to work).
|
||||
You will need the standard development toolset (autoconf, automake, libtool, etc.).
|
||||
Download and compile the source code from
|
||||
[https://www.openssl.org/source/](https://www.openssl.org/source/),
|
||||
Download the source code from
|
||||
[https://www.openssl.org/source/](https://www.openssl.org/source/).
|
||||
Install the downloaded
|
||||
openssl by opening a terminal in your Downloads directory, and unpacking the source distribution:
|
||||
("tar -xvzf openssl-3.0.1.tar.gz ; cd openssl-3.0.1"). Then build/install with
|
||||
|
||||
12
README.txt
12
README.txt
@@ -188,12 +188,12 @@ it.
|
||||
|
||||
If you need to do this, note that you may be able to use a newer version
|
||||
(OpenSSL-3.0.1 is known to work). You will need the standard development
|
||||
toolset (autoconf, automake, libtool, etc.). Download and compile the
|
||||
source code from <https://www.openssl.org/source/>, Install the
|
||||
downloaded openssl by opening a terminal in your Downloads directory,
|
||||
and unpacking the source distribution: ("tar -xvzf openssl-3.0.1.tar.gz
|
||||
; cd openssl-3.0.1"). Then build/install with "./config ; make ; sudo
|
||||
make install\_dev". This will typically install the needed library
|
||||
toolset (autoconf, automake, libtool, etc.). Download the source code
|
||||
from <https://www.openssl.org/source/>. Install the downloaded openssl
|
||||
by opening a terminal in your Downloads directory, and unpacking the
|
||||
source distribution: ("tar -xvzf openssl-3.0.1.tar.gz ; cd
|
||||
openssl-3.0.1"). Then build/install with "./config ; make ; sudo make
|
||||
install\_dev". This will typically install the needed library
|
||||
`libcrypto.*`, either in /usr/local/lib or /usr/local/lib64. *(Ignore
|
||||
the following for builds on MacOS:)* Assuming the library was placed in
|
||||
/usr/local/lib64, you must "export OPENSSL\_ROOT\_DIR=/usr/local/lib64"
|
||||
|
||||
Reference in New Issue
Block a user