ruby-2.1.10 msys2 package and dlls

Added:
- the ruby-2.1.10 package for mysys2 (without openssl)
- manifest files needed to move the dlls under a subdirectory
- mt.exe from https://github.com/eladkarako/mt
This commit is contained in:
pk-2000 2020-12-10 01:18:22 +02:00 committed by GitHub
parent 5cc16c707a
commit bacca795c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
language="*">
</assemblyIdentity>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32"
name="Falcon_preload"
version="0.6.0.0"
language="*">
</assemblyIdentity>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

View File

@ -0,0 +1,41 @@
<assembly
xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
name="Falcon_preload"
version="0.6.0.0"
type="win32"/>
<file name="libwinpthread-1.dll"/>
<file name="libboost_program_options-mt.dll"/>
<file name="libgcc_s_dw2-1.dll"/>
<file name="libstdc++-6.dll"/>
<file name="msvcrt-ruby210.dll"/>
<file name="libgmp-10.dll"/>
<file name="zlib1.dll"/>
<file name="libopenal-1.dll"/>
<file name="libphysfs.dll"/>
<file name="libpixman-1-0.dll"/>
<file name="SDL2.dll"/>
<file name="SDL2_image.dll"/>
<file name="libjpeg-8.dll"/>
<file name="libpng16-16.dll"/>
<file name="libtiff-5.dll"/>
<file name="liblzma-5.dll"/>
<file name="libzstd.dll"/>
<file name="libwebp-7.dll"/>
<file name="SDL2_ttf.dll"/>
<file name="libfreetype-6.dll"/>
<file name="libbrotlidec.dll"/>
<file name="libbrotlicommon.dll"/>
<file name="libbz2-1.dll"/>
<file name="libharfbuzz-0.dll"/>
<file name="libglib-2.0-0.dll"/>
<file name="libintl-8.dll"/>
<file name="libiconv-2.dll"/>
<file name="libpcre-1.dll"/>
<file name="libgraphite2.dll"/>
<file name="libsigc-2.0-0.dll"/>
<file name="libvorbisfile-3.dll"/>
<file name="libvorbis-0.dll"/>
<file name="libogg-0.dll"/>
<file name="fluidsynth.dll"/>
</assembly>

BIN
windows_extra/mt.exe Normal file

Binary file not shown.

View File

@ -0,0 +1,9 @@
<?xml version ="1.0"?>
<!-- This allows mt.exe to run on machines with the CLR v4 installed but not 1.1 or 2.0 -->
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
<supportedRuntime version="v2.0.50727"/>
<supportedRuntime version="v1.1.4322"/>
</startup>
</configuration>