FreeBSD Bugzilla – Attachment 242050 Details for
Bug 268691
emulators/{mame,mess}: Update to 0.254
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Update MAME to 0.254 and remove MESS
mame-0.254.patch (text/plain), 197.37 KB, created by
Alastair Hogge
on 2023-05-08 09:11:16 UTC
(
hide
)
Description:
Update MAME to 0.254 and remove MESS
Filename:
MIME Type:
Creator:
Alastair Hogge
Created:
2023-05-08 09:11:16 UTC
Size:
197.37 KB
patch
obsolete
>diff --git a/MOVED b/MOVED >index fb3e4d56b26e..c635d645cf59 100644 >--- a/MOVED >+++ b/MOVED >@@ -7534,3 +7534,4 @@ security/gpgme-qt5|security/gpgme-qt@qt5|2023-05-02|Flavorized to add Qt6 suppor > x11-wm/hyprland-devel|x11-wm/hyprland|2023-05-03|Out of date: use x11-wm/hyprland for now > emulators/qemu70|emulators/qemu7|2023-05-04|Use emulators/qemu or emulators/qemu-devel > www/resin3||2023-05-06|Deprecated version, unsupported by upstream for years >+www/mess||2023-05-08|Merged upstream into MAME >diff --git a/emulators/Makefile b/emulators/Makefile >index b7068f53a783..e92d780dab21 100644 >--- a/emulators/Makefile >+++ b/emulators/Makefile >@@ -74,7 +74,6 @@ > SUBDIR += mastergear > SUBDIR += mednafen > SUBDIR += mesen >- SUBDIR += mess > SUBDIR += mgba > SUBDIR += mtools > SUBDIR += mupen64plus >diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile >index 26c2b886b6a9..aebdb69da8a3 100644 >--- a/emulators/mame/Makefile >+++ b/emulators/mame/Makefile >@@ -1,16 +1,21 @@ >-PORTNAME?= mame >-PORTVERSION= 0.250 >+PORTNAME= mame >+PORTVERSION= 0.254 > CATEGORIES= emulators games > > MAINTAINER= agh@riseup.net >-COMMENT?= MAME: a multi-purpose emulation framework >-WWW?= https://mamedev.org/ >+COMMENT= MAME: a multi-purpose emulation framework >+WWW= https://mamedev.org/ > >-LICENSE= BSD3CLAUSE GPLv2 >+LICENSE= BSD2CLAUSE BSD3CLAUSE CC0-1.0 GPLv2 LGPL21 MIT ZLIB > LICENSE_COMB= multi >-LICENSE_FILE= ${WRKSRC}/docs/LICENSE >+LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/docs/legal/BSD-2-Clause > LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/docs/legal/BSD-3-Clause >+LICENSE_FILE_CC0-1.0= ${WRKSRC}/docs/legal/CC0 > LICENSE_FILE_GPLv2= ${WRKSRC}/docs/legal/GPL-2.0 >+LICENSE_FILE_LGPL21= ${WRKSRC}/docs/legal/LGPL-2.1 >+LICENSE_FILE_MIT= ${WRKSRC}/docs/legal/MIT >+LICENSE_FILE_ZLIB= ${WRKSRC}/docs/legal/Zlib >+LICENSE_FILE= ${WRKSRC}/docs/LICENSE > > ONLY_FOR_ARCHS= amd64 armv7 i386 powerpc powerpc64 powerpc64le > ONLY_FOR_ARCHS_REASON= not yet ported to any architecture other than armv7, x86, and powerpc* >@@ -23,11 +28,9 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ > libpugixml.so:textproc/pugixml > RUN_DEPENDS= liberation-fonts-ttf>=0:x11-fonts/liberation-fonts-ttf > >-USES= compiler:c++14-lang gl gmake jpeg localbase pkgconfig \ >+USES= compiler:c++14-lang gl gmake jpeg localbase lua:54 pkgconfig \ > python:3.9,build qt:5 sdl shebangfix sqlite:3 xorg > >-BINARY_ALIAS= python3=${PYTHON_CMD} python=${PYTHON_CMD} >- > USE_GITHUB= yes > GH_ACCOUNT= mamedev > GH_PROJECT= mame # explicit (master port) >@@ -54,6 +57,7 @@ MAKE_ENV= FULLNAME="mame" \ > TARGET="${MTARGET}" \ > USE_NETWORK=1 > >+BINARY_ALIAS= python3=${PYTHON_CMD} python=${PYTHON_CMD} > SUB_FILES= pkg-message target.ini > SUB_LIST= MSUBTARGET=${MSUBTARGET} \ > MTARGET=${MTARGET} >@@ -61,16 +65,16 @@ SUB_LIST= MSUBTARGET=${MSUBTARGET} \ > PORTDOCS= LICENSE html/* legal/* > PORTEXAMPLES= ${MSUBTARGET}.ini > >-DEBUG_MAKE_ENV= DEBUG=1 >- > OPTIONS_DEFINE= DEBUG DOCS EXAMPLES > DEBUG_DESC= Build with debug profiling and symbols > DOCS_DESC= Install additional MAME documentation > EXAMPLES_DESC= Install example ${EMULATOR}.ini configuration > >+DEBUG_MAKE_ENV= DEBUG=1 >+ > GENIE= ${WRKSRC}/3rdparty/genie >-MSUBTARGET?= mame >-MTARGET?= mame >+MSUBTARGET= mame >+MTARGET= mame > > .include <bsd.port.options.mk> > >@@ -96,63 +100,46 @@ do-build-DOCS-on: > @${RM} ${WRKSRC}/docs/build/html/.buildinfo > > do-install: >-.if ${MSUBTARGET:Mmame} >- (cd ${WRKSRC} && ${INSTALL_PROGRAM} castool chdman floptool imgtool \ >- jedutil ldresample ldverify nltool nlwav pngcmp regrep \ >- romcmp split srcclean testkeys unidasm \ >- ${STAGEDIR}${PREFIX}/bin) >-.endif >+.for PROGRAM in castool chdman floptool imgtool jedutil ldresample ldverify \ >+ nltool nlwav pngcmp regrep romcmp split srcclean testkeys unidasm >+ ${INSTALL_PROGRAM} ${WRKSRC}/${PROGRAM} \ >+ ${STAGEDIR}${PREFIX}/bin >+.endfor > >-.for data in artwork bgfx ctrlr ini language hash plugins samples >- (cd ${WRKSRC} && ${COPYTREE_SHARE} ${data} ${STAGEDIR}${DATADIR}) >+.for data in artwork bgfx ctrlr ini hash language plugins samples >+ (cd ${WRKSRC} && \ >+ ${COPYTREE_SHARE} ${data} ${STAGEDIR}${DATADIR}) > .endfor > > ${MKDIR} ${STAGEDIR}${DOCSDIR} >-.if ${MSUBTARGET:Mmess} >- ${INSTALL_MAN} ${WRKSRC}/docs/man/${MTARGET}.6 \ >- ${STAGEDIR}${MANPREFIX}/man/man6/${EMULATOR}.6 >-.else > ${INSTALL_MAN} ${WRKSRC}/docs/man/*.1 \ > ${STAGEDIR}${MANPREFIX}/man/man1 > ${INSTALL_MAN} ${WRKSRC}/docs/build/man/*.1 \ > ${STAGEDIR}${MANPREFIX}/man/man1 > ${INSTALL_MAN} ${WRKSRC}/docs/man/${EMULATOR}.6 \ > ${STAGEDIR}${MANPREFIX}/man/man6 >- ${INSTALL_MAN} ${WRKSRC}/docs/LICENSE ${STAGEDIR}${DOCSDIR} >- (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} legal ${STAGEDIR}${DOCSDIR}) >-.endif >+ ${INSTALL_MAN} ${WRKSRC}/docs/LICENSE \ >+ ${STAGEDIR}${DOCSDIR} >+ (cd ${WRKSRC}/docs && \ >+ ${COPYTREE_SHARE} legal ${STAGEDIR}${DOCSDIR}) > > do-install-DEBUG-off: >-.if ${MSUBTARGET:Mmess} >- ${INSTALL_PROGRAM} ${WRKSRC}/${MTARGET}${MSUBTARGET} \ >- ${STAGEDIR}${PREFIX}/bin/${EMULATOR} >-.else > ${INSTALL_PROGRAM} ${WRKSRC}/${MSUBTARGET} \ > ${STAGEDIR}${PREFIX}/bin/${EMULATOR} >-.endif > > do-install-DEBUG-on: >-.if ${MSUBTARGET:Mmess} >- ${INSTALL_PROGRAM} ${WRKSRC}/${MTARGET}${MSUBTARGET}d \ >- ${STAGEDIR}${PREFIX}/bin/${EMULATOR} >-.else > ${INSTALL_PROGRAM} ${WRKSRC}/${MSUBTARGET}d \ > ${STAGEDIR}${PREFIX}/bin/${EMULATOR} >-.endif > > post-build: >-.if ${MSUBTARGET:Mmame} > cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} \ > ${MAKE_CMD} ${MAKE_ARGS} man \ > SPHINXBUILD=sphinx-build-${PYTHON_VER} >-.endif > > post-install-DOCS-on: >-.if ${MSUBTARGET:Mmame} > ${MKDIR} ${STAGEDIR}${DOCSDIR} >- (cd ${WRKSRC}/docs/build && ${COPYTREE_SHARE} html \ >- ${STAGEDIR}${DOCSDIR}) >-.endif >+ (cd ${WRKSRC}/docs/build && \ >+ ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}) > > post-install-EXAMPLES-on: > ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} >@@ -162,7 +149,8 @@ post-install-EXAMPLES-on: > post-patch: > @${RM} ${WRKSRC}/3rdparty/bx/include/compat/freebsd/dirent.h > @${RM} ${WRKSRC}/3rdparty/bx/include/compat/freebsd/signal.h >- @${MV} ${GENIE}/build/gmake.freebsd ${GENIE}/build/gmake.bsd >+ @${MV} ${GENIE}/build/gmake.freebsd \ >+ ${GENIE}/build/gmake.bsd > @${REINPLACE_CMD} -e \ > 's|^\(AR \)|#\1| ; \ > s|^\(CC \)|#\1| ; \ >@@ -179,10 +167,11 @@ post-patch: > @${REINPLACE_CMD} -e 's|= \"gcc|= \"cc|; s|= \"g++|= \"c++|' \ > -e "s|'CXX =|'#CXX =|; s|'CC =|'#CC =|; s| .(ARCH)| |g" \ > ${GENIE}/src/host/scripts.c >- @${GREP} -rl '"png.h"' ${WRKSRC}/src | ${XARGS} ${REINPLACE_CMD} \ >- -e 's|"png.h"|"localpng.h"|' >+ @${GREP} -rl '"png.h"' ${WRKSRC}/src | \ >+ ${XARGS} ${REINPLACE_CMD} -e 's|"png.h"|"localpng.h"|' > @${REINPLACE_CMD} -e 's|"util/png.h"|"util/localpng.h"|' \ > ${WRKSRC}/src/frontend/mame/ui/icorender.cpp >- @${MV} ${WRKSRC}/src/lib/util/png.h ${WRKSRC}/src/lib/util/localpng.h >+ @${MV} ${WRKSRC}/src/lib/util/png.h \ >+ ${WRKSRC}/src/lib/util/localpng.h > > .include <bsd.port.mk> >diff --git a/emulators/mame/distinfo b/emulators/mame/distinfo >index 6982c28a6197..b555b84609b2 100644 >--- a/emulators/mame/distinfo >+++ b/emulators/mame/distinfo >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1669815674 >-SHA256 (mamedev-mame-0.250-mame0250_GH0.tar.gz) = 949ec937b1df50af519f594d690832ca56342983f519b62a4be9c2c0b595d3ad >-SIZE (mamedev-mame-0.250-mame0250_GH0.tar.gz) = 186094955 >+TIMESTAMP = 1683340512 >+SHA256 (mamedev-mame-0.254-mame0254_GH0.tar.gz) = 07a5e2541e75c3511fbad00ad50d7dbd50119a7b054e393d4c64df672d8211a6 >+SIZE (mamedev-mame-0.254-mame0254_GH0.tar.gz) = 203449561 >diff --git a/emulators/mame/files/patch-scripts_toolchain.lua b/emulators/mame/files/patch-scripts_toolchain.lua >new file mode 100644 >index 000000000000..014ee01b1f28 >--- /dev/null >+++ b/emulators/mame/files/patch-scripts_toolchain.lua >@@ -0,0 +1,12 @@ >+--- scripts/toolchain.lua.orig 2023-05-06 02:56:32 UTC >++++ scripts/toolchain.lua >+@@ -60,7 +60,8 @@ function androidToolchainRoot() >+ local hostTags = { >+ windows = "windows-x86_64", >+ linux = "linux-x86_64", >+- macosx = "darwin-x86_64" >++ macosx = "darwin-x86_64", >++ bsd = "freebsd-x86_64" >+ } >+ android.toolchainRoot = (os.getenv("ANDROID_NDK_HOME") or "") .. "/toolchains/llvm/prebuilt/" .. hostTags[os.get()] >+ end >diff --git a/emulators/mame/pkg-plist b/emulators/mame/pkg-plist >index a5a911e9d2f1..36f07ac1497c 100644 >--- a/emulators/mame/pkg-plist >+++ b/emulators/mame/pkg-plist >@@ -165,6 +165,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/bgfx/effects/misc/deposterize-pass1.json > %%DATADIR%%/bgfx/effects/misc/lut.json > %%DATADIR%%/bgfx/effects/misc/saturation.json >+%%DATADIR%%/bgfx/effects/misc/texconv_argb32.json > %%DATADIR%%/bgfx/effects/misc/texconv_palette16.json > %%DATADIR%%/bgfx/effects/misc/texconv_rgb32.json > %%DATADIR%%/bgfx/effects/misc/texconv_yuy16.json >@@ -297,6 +298,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_deposterize-pass0.bin > %%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_deposterize-pass1.bin > %%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_lut.bin >+%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_resize_blit.bin > %%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_saturation.bin > %%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/fs_gaussian.bin > %%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/fs_offset_sat.bin >@@ -483,6 +485,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_deposterize-pass0.bin > %%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_deposterize-pass1.bin > %%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_lut.bin >+%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_resize_blit.bin > %%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_saturation.bin > %%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/fs_gaussian.bin > %%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/fs_offset_sat.bin >@@ -669,6 +672,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_deposterize-pass0.bin > %%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_deposterize-pass1.bin > %%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_lut.bin >+%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_resize_blit.bin > %%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_saturation.bin > %%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/fs_gaussian.bin > %%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/fs_offset_sat.bin >@@ -855,6 +859,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_deposterize-pass0.bin > %%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_deposterize-pass1.bin > %%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_lut.bin >+%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_resize_blit.bin > %%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_saturation.bin > %%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/fs_gaussian.bin > %%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/fs_offset_sat.bin >@@ -1041,6 +1046,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_deposterize-pass0.bin > %%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_deposterize-pass1.bin > %%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_lut.bin >+%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_resize_blit.bin > %%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_saturation.bin > %%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/fs_gaussian.bin > %%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/fs_offset_sat.bin >@@ -1227,6 +1233,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_deposterize-pass0.bin > %%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_deposterize-pass1.bin > %%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_lut.bin >+%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_resize_blit.bin > %%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_saturation.bin > %%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/fs_gaussian.bin > %%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/fs_offset_sat.bin >@@ -1360,11 +1367,14 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/a800_cass.xml > %%DATADIR%%/hash/a800_flop.xml > %%DATADIR%%/hash/abc1600_flop.xml >-%%DATADIR%%/hash/abc800.xml > %%DATADIR%%/hash/abc800_hdd.xml >-%%DATADIR%%/hash/abc806.xml >+%%DATADIR%%/hash/abc806_flop.xml > %%DATADIR%%/hash/abc80_cass.xml > %%DATADIR%%/hash/abc80_flop.xml >+%%DATADIR%%/hash/abc80_rom.xml >+%%DATADIR%%/hash/abc830_flop.xml >+%%DATADIR%%/hash/abc832_flop.xml >+%%DATADIR%%/hash/abc838_flop.xml > %%DATADIR%%/hash/acrnsys_flop.xml > %%DATADIR%%/hash/acrnsys_rom.xml > %%DATADIR%%/hash/adam_cart.xml >@@ -1446,6 +1456,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/bbcmc_flop.xml > %%DATADIR%%/hash/bdesignm_design_cart.xml > %%DATADIR%%/hash/bdesignm_game_cart.xml >+%%DATADIR%%/hash/bingobear.xml > %%DATADIR%%/hash/bk0010.xml > %%DATADIR%%/hash/bkrankp_cart.xml > %%DATADIR%%/hash/bml3_flop.xml >@@ -1480,6 +1491,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/cgenie_cass.xml > %%DATADIR%%/hash/cgenie_flop_rom.xml > %%DATADIR%%/hash/channelf.xml >+%%DATADIR%%/hash/chessking_cart.xml > %%DATADIR%%/hash/chessmstdm.xml > %%DATADIR%%/hash/chip8_quik.xml > %%DATADIR%%/hash/clickstart_cart.xml >@@ -1490,8 +1502,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/compclr2_flop.xml > %%DATADIR%%/hash/compis.xml > %%DATADIR%%/hash/comx35_flop.xml >-%%DATADIR%%/hash/conchess_plymate.xml >-%%DATADIR%%/hash/conchess_standard.xml >+%%DATADIR%%/hash/conchess.xml > %%DATADIR%%/hash/copera.xml > %%DATADIR%%/hash/cpc_cass.xml > %%DATADIR%%/hash/cpc_flop.xml >@@ -1592,7 +1603,8 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/horizon.xml > %%DATADIR%%/hash/hp85_rom.xml > %%DATADIR%%/hash/hp86_rom.xml >-%%DATADIR%%/hash/hp9825b_rom.xml >+%%DATADIR%%/hash/hp9825_rom.xml >+%%DATADIR%%/hash/hp9831_rom.xml > %%DATADIR%%/hash/hp9835a_rom.xml > %%DATADIR%%/hash/hp9845a_rom.xml > %%DATADIR%%/hash/hp9845b_rom.xml >@@ -1705,6 +1717,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/mikrosha_cass.xml > %%DATADIR%%/hash/mindset_flop.xml > %%DATADIR%%/hash/misterx.xml >+%%DATADIR%%/hash/mk14_quik.xml > %%DATADIR%%/hash/mm1_flop.xml > %%DATADIR%%/hash/mo5_cart.xml > %%DATADIR%%/hash/mo5_cass.xml >@@ -1714,9 +1727,11 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/mo6_flop.xml > %%DATADIR%%/hash/mobigo_cart.xml > %%DATADIR%%/hash/monon_color.xml >+%%DATADIR%%/hash/mpf1_rom.xml > %%DATADIR%%/hash/mpu1000.xml > %%DATADIR%%/hash/mpz80.xml > %%DATADIR%%/hash/msx.hsi >+%%DATADIR%%/hash/msx1_bee_card.xml > %%DATADIR%%/hash/msx1_cart.xml > %%DATADIR%%/hash/msx1_cass.xml > %%DATADIR%%/hash/msx1_flop.xml >@@ -1726,6 +1741,8 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/msx2_cass.xml > %%DATADIR%%/hash/msx2_flop.xml > %%DATADIR%%/hash/msx2p_flop.xml >+%%DATADIR%%/hash/msx_softcard.xml >+%%DATADIR%%/hash/msx_yamaha_minicart.xml > %%DATADIR%%/hash/msxr_flop.xml > %%DATADIR%%/hash/mt65_cass.xml > %%DATADIR%%/hash/mt65_rom.xml >@@ -1768,6 +1785,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/octopus.xml > %%DATADIR%%/hash/ondra.xml > %%DATADIR%%/hash/orao.xml >+%%DATADIR%%/hash/oric1_cass.xml > %%DATADIR%%/hash/orion_cart.xml > %%DATADIR%%/hash/orion_cass.xml > %%DATADIR%%/hash/orion_flop.xml >@@ -1805,6 +1823,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/pcw.xml > %%DATADIR%%/hash/pcw16.xml > %%DATADIR%%/hash/pcx_flop.xml >+%%DATADIR%%/hash/pda600.xml > %%DATADIR%%/hash/pdp1_ptp.xml > %%DATADIR%%/hash/pecom_cass.xml > %%DATADIR%%/hash/pegasus_cart.xml >@@ -1843,6 +1862,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/psi98.xml > %%DATADIR%%/hash/psion1.xml > %%DATADIR%%/hash/psion2.xml >+%%DATADIR%%/hash/psion_ssd.xml > %%DATADIR%%/hash/psx.xml > %%DATADIR%%/hash/pt68k2.xml > %%DATADIR%%/hash/pv1000.xml >@@ -1919,6 +1939,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/spectrum_mgt_flop.xml > %%DATADIR%%/hash/spectrum_microdrive.xml > %%DATADIR%%/hash/spectrum_wafadrive.xml >+%%DATADIR%%/hash/sprachmg.xml > %%DATADIR%%/hash/squale_cart.xml > %%DATADIR%%/hash/ssem_quik.xml > %%DATADIR%%/hash/st_cart.xml >@@ -1961,6 +1982,7 @@ man/man6/%%EMULATOR%%.6.gz > %%DATADIR%%/hash/to8_cass.xml > %%DATADIR%%/hash/to8_qd.xml > %%DATADIR%%/hash/to_flop.xml >+%%DATADIR%%/hash/triton_rom.xml > %%DATADIR%%/hash/trs80_cass.xml > %%DATADIR%%/hash/trs80_flop.xml > %%DATADIR%%/hash/trs80_quik.xml >diff --git a/emulators/mess/Makefile b/emulators/mess/Makefile >deleted file mode 100644 >index 2e8f80cd583a..000000000000 >--- a/emulators/mess/Makefile >+++ /dev/null >@@ -1,13 +0,0 @@ >-PORTNAME= mess >-MTARGET= mame >-MSUBTARGET= mess >-COMMENT= Multiple Emulator Super System >-WWW= http://mess.redump.net/start >- >-MASTERDIR= ${.CURDIR}/../mame >-DESCR= ${.CURDIR}/pkg-descr >-PLIST= ${.CURDIR}/pkg-plist >- >-OPTIONS_EXCLUDE= DOCS >- >-.include "${MASTERDIR}/Makefile" >diff --git a/emulators/mess/pkg-descr b/emulators/mess/pkg-descr >deleted file mode 100644 >index c979d80981cb..000000000000 >--- a/emulators/mess/pkg-descr >+++ /dev/null >@@ -1,3 +0,0 @@ >-Multi Emulator Super System (MESS), was a project extending MAME beyond >-documenting and emulating arcade machines and games. As of 2015-05-27 Both >-the MAME and MESS projects merged into MAME. >diff --git a/emulators/mess/pkg-plist b/emulators/mess/pkg-plist >deleted file mode 100644 >index bce72aa2b821..000000000000 >--- a/emulators/mess/pkg-plist >+++ /dev/null >@@ -1,2224 +0,0 @@ >-bin/%%EMULATOR%% >-man/man6/%%EMULATOR%%.6.gz >-%%DATADIR%%/artwork/LICENSE >-%%DATADIR%%/artwork/README.md >-%%DATADIR%%/artwork/aperture-grille.png >-%%DATADIR%%/artwork/aperture.png >-%%DATADIR%%/artwork/aperture1x2rb.png >-%%DATADIR%%/artwork/aperture1x3rb.png >-%%DATADIR%%/artwork/aperture2x4bg.png >-%%DATADIR%%/artwork/aperture2x4rb.png >-%%DATADIR%%/artwork/aperture4x6.png >-%%DATADIR%%/artwork/bgfx/border_blur/default.lay >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/add_alpha.py >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_2_bgr.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_1_4_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_2_4_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_2_5_bgr.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/aperture_3_6_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/delta_1_2x1_bgr.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/delta_1_4x1_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/delta_2_4x1_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/delta_2_4x2_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/none.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/slot_2_4x4_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/slot_2_5x4_bgr.png >-%%DATADIR%%/artwork/bgfx/chains/crt-geom/slot_3_7x6_rgb.png >-%%DATADIR%%/artwork/bgfx/chains/hq2x.png >-%%DATADIR%%/artwork/bgfx/chains/hq3x.png >-%%DATADIR%%/artwork/bgfx/chains/hq4x.png >-%%DATADIR%%/artwork/chess/README.md >-%%DATADIR%%/artwork/chess/bb.svg >-%%DATADIR%%/artwork/chess/bk.svg >-%%DATADIR%%/artwork/chess/bn.svg >-%%DATADIR%%/artwork/chess/bp.svg >-%%DATADIR%%/artwork/chess/bq.svg >-%%DATADIR%%/artwork/chess/br.svg >-%%DATADIR%%/artwork/chess/wb.svg >-%%DATADIR%%/artwork/chess/wk.svg >-%%DATADIR%%/artwork/chess/wn.svg >-%%DATADIR%%/artwork/chess/wp.svg >-%%DATADIR%%/artwork/chess/wq.svg >-%%DATADIR%%/artwork/chess/wr.svg >-%%DATADIR%%/artwork/dir.txt >-%%DATADIR%%/artwork/lut-default.png >-%%DATADIR%%/artwork/monochrome-chessboard.png >-%%DATADIR%%/artwork/monochrome-matrix.png >-%%DATADIR%%/artwork/scanlines.png >-%%DATADIR%%/artwork/shadow-mask.png >-%%DATADIR%%/artwork/slot-mask-aligned.png >-%%DATADIR%%/artwork/slot-mask.png >-%%DATADIR%%/artwork/white.png >-%%DATADIR%%/bgfx/LICENSE >-%%DATADIR%%/bgfx/README.md >-%%DATADIR%%/bgfx/chains/Fighters.json >-%%DATADIR%%/bgfx/chains/LICENSE >-%%DATADIR%%/bgfx/chains/README.md >-%%DATADIR%%/bgfx/chains/crt-geom-deluxe.json >-%%DATADIR%%/bgfx/chains/crt-geom.json >-%%DATADIR%%/bgfx/chains/default.json >-%%DATADIR%%/bgfx/chains/eagle/super-eagle.json >-%%DATADIR%%/bgfx/chains/hlsl.json >-%%DATADIR%%/bgfx/chains/hqx/hq2x.json >-%%DATADIR%%/bgfx/chains/hqx/hq3x.json >-%%DATADIR%%/bgfx/chains/hqx/hq4x.json >-%%DATADIR%%/bgfx/chains/lcd-grid.json >-%%DATADIR%%/bgfx/chains/lut.json >-%%DATADIR%%/bgfx/chains/pillarbox_left_horizontal.json >-%%DATADIR%%/bgfx/chains/pillarbox_left_vertical.json >-%%DATADIR%%/bgfx/chains/pillarbox_right_horizontal.json >-%%DATADIR%%/bgfx/chains/pillarbox_right_vertical.json >-%%DATADIR%%/bgfx/chains/unfiltered.json >-%%DATADIR%%/bgfx/chains/xbr/super-2xbr-3d-2p.json >-%%DATADIR%%/bgfx/chains/xbr/super-2xbr-3d-3p-smoother.json >-%%DATADIR%%/bgfx/chains/xbr/super-4xbr-3d-4p.json >-%%DATADIR%%/bgfx/chains/xbr/super-4xbr-3d-6p-smoother.json >-%%DATADIR%%/bgfx/chains/xbr/super-xbr-2p.json >-%%DATADIR%%/bgfx/chains/xbr/super-xbr-3p-smoother.json >-%%DATADIR%%/bgfx/chains/xbr/super-xbr-6p.json >-%%DATADIR%%/bgfx/chains/xbr/super-xbr-deposterize.json >-%%DATADIR%%/bgfx/chains/xbr/super-xbr-fast-3p.json >-%%DATADIR%%/bgfx/chains/xbr/super-xbr-fast-6p.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-hybrid.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv1-noblend.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-3d.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-accuracy-multipass.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-accuracy-smart-blur.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-deposterize.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-fast.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-multipass.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2-noblend.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv2.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv3-multipass.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv3-noblend.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-lv3.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-mlv4-dilation.json >-%%DATADIR%%/bgfx/chains/xbr/xbr-mlv4-multipass.json >-%%DATADIR%%/bgfx/effects/LICENSE >-%%DATADIR%%/bgfx/effects/README.md >-%%DATADIR%%/bgfx/effects/blurs/smart-blur.json >-%%DATADIR%%/bgfx/effects/crt-geom/crt-geom-deluxe.json >-%%DATADIR%%/bgfx/effects/crt-geom/crt-geom.json >-%%DATADIR%%/bgfx/effects/crt-geom/gaussx.json >-%%DATADIR%%/bgfx/effects/crt-geom/gaussy.json >-%%DATADIR%%/bgfx/effects/crt-geom/lowpass.json >-%%DATADIR%%/bgfx/effects/crt-geom/mipmap8.json >-%%DATADIR%%/bgfx/effects/crt-geom/phosphor_apply.json >-%%DATADIR%%/bgfx/effects/crt-geom/phosphor_update.json >-%%DATADIR%%/bgfx/effects/default/LICENSE >-%%DATADIR%%/bgfx/effects/default/README.md >-%%DATADIR%%/bgfx/effects/default/blit.json >-%%DATADIR%%/bgfx/effects/eagle/supereagle.json >-%%DATADIR%%/bgfx/effects/gui_add.json >-%%DATADIR%%/bgfx/effects/gui_blend.json >-%%DATADIR%%/bgfx/effects/gui_multiply.json >-%%DATADIR%%/bgfx/effects/gui_opaque.json >-%%DATADIR%%/bgfx/effects/hlsl/LICENSE >-%%DATADIR%%/bgfx/effects/hlsl/README.md >-%%DATADIR%%/bgfx/effects/hlsl/blit.json >-%%DATADIR%%/bgfx/effects/hlsl/chroma.json >-%%DATADIR%%/bgfx/effects/hlsl/color.json >-%%DATADIR%%/bgfx/effects/hlsl/deconverge.json >-%%DATADIR%%/bgfx/effects/hlsl/defocus.json >-%%DATADIR%%/bgfx/effects/hlsl/distortion.json >-%%DATADIR%%/bgfx/effects/hlsl/ntsc_decode.json >-%%DATADIR%%/bgfx/effects/hlsl/ntsc_encode.json >-%%DATADIR%%/bgfx/effects/hlsl/phosphor.json >-%%DATADIR%%/bgfx/effects/hlsl/post.json >-%%DATADIR%%/bgfx/effects/hlsl/prescale.json >-%%DATADIR%%/bgfx/effects/hlsl/scanline.json >-%%DATADIR%%/bgfx/effects/hqx/hq2x.json >-%%DATADIR%%/bgfx/effects/hqx/hq3x.json >-%%DATADIR%%/bgfx/effects/hqx/hq4x.json >-%%DATADIR%%/bgfx/effects/lcd-grid/lcd-grid.json >-%%DATADIR%%/bgfx/effects/lcd-grid/persistence.json >-%%DATADIR%%/bgfx/effects/misc/bcg_adjust.json >-%%DATADIR%%/bgfx/effects/misc/blit.json >-%%DATADIR%%/bgfx/effects/misc/blit_palette16.json >-%%DATADIR%%/bgfx/effects/misc/deposterize-pass0.json >-%%DATADIR%%/bgfx/effects/misc/deposterize-pass1.json >-%%DATADIR%%/bgfx/effects/misc/lut.json >-%%DATADIR%%/bgfx/effects/misc/saturation.json >-%%DATADIR%%/bgfx/effects/misc/texconv_palette16.json >-%%DATADIR%%/bgfx/effects/misc/texconv_rgb32.json >-%%DATADIR%%/bgfx/effects/misc/texconv_yuy16.json >-%%DATADIR%%/bgfx/effects/pillarbox_left_horizontal/gaussian.json >-%%DATADIR%%/bgfx/effects/pillarbox_left_horizontal/offset_sat.json >-%%DATADIR%%/bgfx/effects/pillarbox_left_vertical/gaussian.json >-%%DATADIR%%/bgfx/effects/pillarbox_left_vertical/offset_sat.json >-%%DATADIR%%/bgfx/effects/pillarbox_right_horizontal/gaussian.json >-%%DATADIR%%/bgfx/effects/pillarbox_right_horizontal/offset_sat.json >-%%DATADIR%%/bgfx/effects/pillarbox_right_vertical/gaussian.json >-%%DATADIR%%/bgfx/effects/pillarbox_right_vertical/offset_sat.json >-%%DATADIR%%/bgfx/effects/screen_add.json >-%%DATADIR%%/bgfx/effects/screen_blend.json >-%%DATADIR%%/bgfx/effects/screen_multiply.json >-%%DATADIR%%/bgfx/effects/screen_opaque.json >-%%DATADIR%%/bgfx/effects/unfiltered/LICENSE >-%%DATADIR%%/bgfx/effects/unfiltered/README.md >-%%DATADIR%%/bgfx/effects/unfiltered/blit.json >-%%DATADIR%%/bgfx/effects/warp/dilation-horizontal-fast.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/custom-jinc2-sharper.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-2xbr-3d-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-2xbr-3d-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-2xbr-3d-pass2.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass2.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-4xbr-3d-pass3.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-fast-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-fast-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-fast-pass2.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/super-xbr/super-xbr-pass2.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-sharp.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v2-gamma.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v2.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v4-gamma.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v4.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v4b.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid-v5-gamma.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-hybrid/2xbr-hybrid.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv1-noblend.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-3d.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-fast.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-a-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-accuracy-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-accuracy-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-b-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-c-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-d-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-noblend-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-multipass/xbr-lv2-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2-noblend.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv2.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv3-multipass/xbr-lv3-pass0.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv3-multipass/xbr-lv3-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv3-noblend.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-lv3.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass1.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass2.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass3.json >-%%DATADIR%%/bgfx/effects/xbr/xbr-mlv4-multipass/xbr-mlv4-pass4.json >-%%DATADIR%%/bgfx/shaders/dx11/chains/blurs/fs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/blurs/vs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_crt-geom-deluxe.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/fs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt-geom/vs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt/fs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/crt/vs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/default/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/default/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/eagle/fs_eagle.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/eagle/vs_eagle.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_chroma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_color.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_defocus.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_distortion.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_post.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_prescale.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/fs_scanline.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_chroma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_color.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_defocus.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_distortion.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_post.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_prescale.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hlsl/vs_scanline.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/fs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/fs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/fs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/vs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/vs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/hqx/vs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/fs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/fs_persistence.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/vs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/lcd-grid/vs_persistence.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_bcg.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_palette16.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_rgb32.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_blit_yuy16.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_lut.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/fs_saturation.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_lut.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/misc/vs_saturation.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_left_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/pillarbox_right_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/unfiltered/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/unfiltered/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/warp/fs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/warp/vs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/fs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/fs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/super-xbr/vs_super-xbr-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/vs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx11/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/dx11/fs_gui.bin >-%%DATADIR%%/bgfx/shaders/dx11/fs_screen.bin >-%%DATADIR%%/bgfx/shaders/dx11/vs_gui.bin >-%%DATADIR%%/bgfx/shaders/dx11/vs_screen.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/blurs/fs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/blurs/vs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_crt-geom-deluxe.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/fs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt-geom/vs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt/fs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/crt/vs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/default/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/default/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/eagle/fs_eagle.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/eagle/vs_eagle.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_chroma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_color.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_defocus.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_distortion.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_post.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_prescale.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/fs_scanline.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_chroma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_color.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_defocus.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_distortion.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_post.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_prescale.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hlsl/vs_scanline.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/fs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/fs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/fs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/vs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/vs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/hqx/vs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/fs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/fs_persistence.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/vs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/lcd-grid/vs_persistence.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_bcg.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_palette16.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_rgb32.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_blit_yuy16.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_lut.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/fs_saturation.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_lut.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/misc/vs_saturation.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_left_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/pillarbox_right_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/unfiltered/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/unfiltered/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/warp/fs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/warp/vs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/fs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/fs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/super-xbr/vs_super-xbr-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/vs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/dx9/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/dx9/fs_gui.bin >-%%DATADIR%%/bgfx/shaders/dx9/fs_screen.bin >-%%DATADIR%%/bgfx/shaders/dx9/vs_gui.bin >-%%DATADIR%%/bgfx/shaders/dx9/vs_screen.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/blurs/fs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/blurs/vs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_crt-geom-deluxe.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/fs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt-geom/vs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt/fs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/crt/vs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/default/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/default/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/eagle/fs_eagle.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/eagle/vs_eagle.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_chroma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_color.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_defocus.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_distortion.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_post.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_prescale.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/fs_scanline.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_chroma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_color.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_defocus.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_distortion.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_post.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_prescale.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hlsl/vs_scanline.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hqx/fs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hqx/fs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hqx/fs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hqx/vs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hqx/vs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/hqx/vs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/fs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/fs_persistence.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/vs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/lcd-grid/vs_persistence.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_bcg.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_palette16.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_rgb32.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_blit_yuy16.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_lut.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/fs_saturation.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_lut.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/misc/vs_saturation.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_left_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/pillarbox_right_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/unfiltered/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/unfiltered/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/warp/fs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/warp/vs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/fs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/fs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/super-xbr/vs_super-xbr-pass3.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/vs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/essl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/essl/fs_gui.bin >-%%DATADIR%%/bgfx/shaders/essl/fs_screen.bin >-%%DATADIR%%/bgfx/shaders/essl/vs_gui.bin >-%%DATADIR%%/bgfx/shaders/essl/vs_screen.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/blurs/fs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/blurs/vs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_crt-geom-deluxe.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/fs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt-geom/vs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt/fs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/crt/vs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/default/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/default/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/eagle/fs_eagle.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/eagle/vs_eagle.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_chroma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_color.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_defocus.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_distortion.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_post.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_prescale.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/fs_scanline.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_chroma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_color.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_defocus.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_distortion.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_post.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_prescale.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hlsl/vs_scanline.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/fs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/fs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/fs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/vs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/vs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/hqx/vs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/fs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/fs_persistence.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/vs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/lcd-grid/vs_persistence.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_bcg.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_palette16.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_rgb32.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_blit_yuy16.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_lut.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/fs_saturation.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_lut.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/misc/vs_saturation.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_left_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/pillarbox_right_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/unfiltered/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/unfiltered/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/warp/fs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/warp/vs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/fs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/fs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/super-xbr/vs_super-xbr-pass3.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/vs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/glsl/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/glsl/fs_gui.bin >-%%DATADIR%%/bgfx/shaders/glsl/fs_screen.bin >-%%DATADIR%%/bgfx/shaders/glsl/vs_gui.bin >-%%DATADIR%%/bgfx/shaders/glsl/vs_screen.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/blurs/fs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/blurs/vs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_crt-geom-deluxe.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/fs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt-geom/vs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt/fs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/crt/vs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/default/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/default/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/eagle/fs_eagle.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/eagle/vs_eagle.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_chroma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_color.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_defocus.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_distortion.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_post.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_prescale.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/fs_scanline.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_chroma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_color.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_defocus.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_distortion.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_post.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_prescale.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hlsl/vs_scanline.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hqx/fs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hqx/fs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hqx/fs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hqx/vs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hqx/vs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/hqx/vs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/fs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/fs_persistence.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/vs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/lcd-grid/vs_persistence.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_bcg.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_palette16.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_rgb32.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_blit_yuy16.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_lut.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/fs_saturation.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_lut.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/misc/vs_saturation.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_left_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/pillarbox_right_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/unfiltered/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/unfiltered/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/warp/fs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/warp/vs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/fs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/fs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/super-xbr/vs_super-xbr-pass3.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/vs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/metal/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/metal/fs_gui.bin >-%%DATADIR%%/bgfx/shaders/metal/fs_screen.bin >-%%DATADIR%%/bgfx/shaders/metal/vs_gui.bin >-%%DATADIR%%/bgfx/shaders/metal/vs_screen.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/blurs/fs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/blurs/vs_smart-blur.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_crt-geom-deluxe.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/fs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_crt-geom.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_gaussx.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_gaussy.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_lowpass.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_mipmap8.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_phosphor_apply.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt-geom/vs_phosphor_update.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt/fs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/crt/vs_crt-caligari.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/default/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/default/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/eagle/fs_eagle.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/eagle/vs_eagle.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_chroma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_color.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_defocus.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_distortion.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_post.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_prescale.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/fs_scanline.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_chroma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_color.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_deconverge.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_defocus.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_distortion.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_ntsc_decode.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_ntsc_encode.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_phosphor.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_post.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_prescale.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hlsl/vs_scanline.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/fs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/fs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/fs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/vs_hq2x.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/vs_hq3x.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/hqx/vs_hq4x.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/fs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/fs_persistence.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/vs_lcd-grid.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/lcd-grid/vs_persistence.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_bcg.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_palette16.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_rgb32.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_blit_yuy16.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_lut.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/fs_saturation.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_bob-and-ghost-deinterlace.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_deposterize-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_deposterize-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_lut.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/misc/vs_saturation.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_left_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_horizontal/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/fs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/fs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/vs_gaussian.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/pillarbox_right_vertical/vs_offset_sat.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/unfiltered/fs_blit.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/unfiltered/vs_blit.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/warp/fs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/warp/vs_dilation-horizontal-fast.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/fs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/fs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_custom-jinc2-sharper.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-2xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-2xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-2xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass1f.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-4xbr-3d-pass3f.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-fast-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-fast-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-fast-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/super-xbr/vs_super-xbr-pass3.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv1-noblend.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2-3d.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2-fast.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2-noblend.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv3-noblend.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/vs_xbr-lv3.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/fs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-sharp.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2-gamma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4-gamma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v4b.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid-v5-gamma.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-hybrid/vs_2xbr-hybrid.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/fs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-a-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-accuracy-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-b-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-c-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-d-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-noblend-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv2-multipass/vs_xbr-lv2-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/fs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass0.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-lv3-multipass/vs_xbr-lv3-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/fs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass1.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass2.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass3.bin >-%%DATADIR%%/bgfx/shaders/spirv/chains/xbr/xbr-mlv4-multipass/vs_xbr-mlv4-pass4.bin >-%%DATADIR%%/bgfx/shaders/spirv/fs_gui.bin >-%%DATADIR%%/bgfx/shaders/spirv/fs_screen.bin >-%%DATADIR%%/bgfx/shaders/spirv/vs_gui.bin >-%%DATADIR%%/bgfx/shaders/spirv/vs_screen.bin >-%%DATADIR%%/ctrlr/hotrod.cfg >-%%DATADIR%%/ctrlr/hotrodse.cfg >-%%DATADIR%%/ctrlr/scorpionxg.cfg >-%%DATADIR%%/ctrlr/slikstik.cfg >-%%DATADIR%%/ctrlr/xarcade.cfg >-%%DATADIR%%/hash/32x.xml >-%%DATADIR%%/hash/3do_m2.xml >-%%DATADIR%%/hash/README.md >-%%DATADIR%%/hash/a2600.xml >-%%DATADIR%%/hash/a2600_cass.xml >-%%DATADIR%%/hash/a5200.hsi >-%%DATADIR%%/hash/a5200.xml >-%%DATADIR%%/hash/a7800.xml >-%%DATADIR%%/hash/a800.xml >-%%DATADIR%%/hash/a800_cass.xml >-%%DATADIR%%/hash/a800_flop.xml >-%%DATADIR%%/hash/abc1600_flop.xml >-%%DATADIR%%/hash/abc800.xml >-%%DATADIR%%/hash/abc800_hdd.xml >-%%DATADIR%%/hash/abc806.xml >-%%DATADIR%%/hash/abc80_cass.xml >-%%DATADIR%%/hash/abc80_flop.xml >-%%DATADIR%%/hash/acrnsys_flop.xml >-%%DATADIR%%/hash/acrnsys_rom.xml >-%%DATADIR%%/hash/adam_cart.xml >-%%DATADIR%%/hash/adam_cass.xml >-%%DATADIR%%/hash/adam_flop.xml >-%%DATADIR%%/hash/advantage.xml >-%%DATADIR%%/hash/advision.xml >-%%DATADIR%%/hash/aim65_cart.xml >-%%DATADIR%%/hash/aleste.xml >-%%DATADIR%%/hash/alice32.xml >-%%DATADIR%%/hash/alice90.xml >-%%DATADIR%%/hash/alphasmart_kapps.xml >-%%DATADIR%%/hash/alphatro_cart.xml >-%%DATADIR%%/hash/alphatro_flop.xml >-%%DATADIR%%/hash/altos5.xml >-%%DATADIR%%/hash/altos8600.xml >-%%DATADIR%%/hash/amiga_a1000.xml >-%%DATADIR%%/hash/amiga_a3000.xml >-%%DATADIR%%/hash/amiga_apps.xml >-%%DATADIR%%/hash/amiga_demos.xml >-%%DATADIR%%/hash/amiga_flop.xml >-%%DATADIR%%/hash/amiga_hardware.xml >-%%DATADIR%%/hash/amiga_hdd.xml >-%%DATADIR%%/hash/amiga_workbench.xml >-%%DATADIR%%/hash/amigaaga_flop.xml >-%%DATADIR%%/hash/amigaecs_flop.xml >-%%DATADIR%%/hash/amigaocs_flop.xml >-%%DATADIR%%/hash/ampro.xml >-%%DATADIR%%/hash/apc.xml >-%%DATADIR%%/hash/apexc_cyl.xml >-%%DATADIR%%/hash/apfimag_cass.xml >-%%DATADIR%%/hash/apfm1000.xml >-%%DATADIR%%/hash/apogee.xml >-%%DATADIR%%/hash/apollo_ctape.xml >-%%DATADIR%%/hash/apple1.xml >-%%DATADIR%%/hash/apple2_cass.xml >-%%DATADIR%%/hash/apple2_flop_clcracked.xml >-%%DATADIR%%/hash/apple2_flop_misc.xml >-%%DATADIR%%/hash/apple2_flop_orig.xml >-%%DATADIR%%/hash/apple2gs_flop_clcracked.xml >-%%DATADIR%%/hash/apple2gs_flop_misc.xml >-%%DATADIR%%/hash/apple2gs_flop_orig.xml >-%%DATADIR%%/hash/apple3.xml >-%%DATADIR%%/hash/applix_flop.xml >-%%DATADIR%%/hash/apricot_flop.xml >-%%DATADIR%%/hash/apxen_flop.xml >-%%DATADIR%%/hash/aquarius_cart.xml >-%%DATADIR%%/hash/aquarius_cass.xml >-%%DATADIR%%/hash/arb.xml >-%%DATADIR%%/hash/arcadia.xml >-%%DATADIR%%/hash/archimedes.xml >-%%DATADIR%%/hash/archimedes_hdd.xml >-%%DATADIR%%/hash/archimedes_rom.xml >-%%DATADIR%%/hash/astrocde.xml >-%%DATADIR%%/hash/atom_cass.xml >-%%DATADIR%%/hash/atom_flop.xml >-%%DATADIR%%/hash/atom_rom.xml >-%%DATADIR%%/hash/attache.xml >-%%DATADIR%%/hash/aussiebyte.xml >-%%DATADIR%%/hash/b2m.xml >-%%DATADIR%%/hash/basf7100.xml >-%%DATADIR%%/hash/bbc_cass.xml >-%%DATADIR%%/hash/bbc_flop_32016.xml >-%%DATADIR%%/hash/bbc_flop_6502.xml >-%%DATADIR%%/hash/bbc_flop_68000.xml >-%%DATADIR%%/hash/bbc_flop_80186.xml >-%%DATADIR%%/hash/bbc_flop_arm.xml >-%%DATADIR%%/hash/bbc_flop_hybrid.xml >-%%DATADIR%%/hash/bbc_flop_torch.xml >-%%DATADIR%%/hash/bbc_flop_z80.xml >-%%DATADIR%%/hash/bbc_hdd.xml >-%%DATADIR%%/hash/bbc_rom.xml >-%%DATADIR%%/hash/bbcb_flop.xml >-%%DATADIR%%/hash/bbcb_flop_orig.xml >-%%DATADIR%%/hash/bbcb_flop_us.xml >-%%DATADIR%%/hash/bbcbc.xml >-%%DATADIR%%/hash/bbcm_cart.xml >-%%DATADIR%%/hash/bbcm_flop.xml >-%%DATADIR%%/hash/bbcmc_flop.xml >-%%DATADIR%%/hash/bdesignm_design_cart.xml >-%%DATADIR%%/hash/bdesignm_game_cart.xml >-%%DATADIR%%/hash/bk0010.xml >-%%DATADIR%%/hash/bkrankp_cart.xml >-%%DATADIR%%/hash/bml3_flop.xml >-%%DATADIR%%/hash/bungo_flop.xml >-%%DATADIR%%/hash/buzztime_cart.xml >-%%DATADIR%%/hash/bw12.xml >-%%DATADIR%%/hash/bw14.xml >-%%DATADIR%%/hash/bw2.xml >-%%DATADIR%%/hash/bx256hp_flop.xml >-%%DATADIR%%/hash/c128_cart.xml >-%%DATADIR%%/hash/c128_flop.xml >-%%DATADIR%%/hash/c128_rom.xml >-%%DATADIR%%/hash/c2color_cart.xml >-%%DATADIR%%/hash/c64_cart.xml >-%%DATADIR%%/hash/c64_cass.xml >-%%DATADIR%%/hash/c64_flop_misc.xml >-%%DATADIR%%/hash/c64_flop_orig.xml >-%%DATADIR%%/hash/c65_flop.xml >-%%DATADIR%%/hash/camplynx_cass.xml >-%%DATADIR%%/hash/camplynx_flop.xml >-%%DATADIR%%/hash/casio_rompack.xml >-%%DATADIR%%/hash/casloopy.xml >-%%DATADIR%%/hash/cbm2_cart.xml >-%%DATADIR%%/hash/cbm2_flop.xml >-%%DATADIR%%/hash/cbm8096_flop.xml >-%%DATADIR%%/hash/cbm8296_flop.xml >-%%DATADIR%%/hash/cc40_cart.xml >-%%DATADIR%%/hash/cd32.xml >-%%DATADIR%%/hash/cdi.xml >-%%DATADIR%%/hash/cdtv.xml >-%%DATADIR%%/hash/cecflop.xml >-%%DATADIR%%/hash/cgenie_cass.xml >-%%DATADIR%%/hash/cgenie_flop_rom.xml >-%%DATADIR%%/hash/channelf.xml >-%%DATADIR%%/hash/chessmstdm.xml >-%%DATADIR%%/hash/chip8_quik.xml >-%%DATADIR%%/hash/clickstart_cart.xml >-%%DATADIR%%/hash/clipper_flop.xml >-%%DATADIR%%/hash/coco_cart.xml >-%%DATADIR%%/hash/coco_flop.xml >-%%DATADIR%%/hash/coleco.xml >-%%DATADIR%%/hash/compclr2_flop.xml >-%%DATADIR%%/hash/compis.xml >-%%DATADIR%%/hash/comx35_flop.xml >-%%DATADIR%%/hash/conchess_plymate.xml >-%%DATADIR%%/hash/conchess_standard.xml >-%%DATADIR%%/hash/copera.xml >-%%DATADIR%%/hash/cpc_cass.xml >-%%DATADIR%%/hash/cpc_flop.xml >-%%DATADIR%%/hash/crvision.xml >-%%DATADIR%%/hash/cx3000tc.xml >-%%DATADIR%%/hash/dai_cass.xml >-%%DATADIR%%/hash/database.xml >-%%DATADIR%%/hash/dc.xml >-%%DATADIR%%/hash/dgnalpha_flop.xml >-%%DATADIR%%/hash/dgnbeta_flop.xml >-%%DATADIR%%/hash/digiblast_cart.xml >-%%DATADIR%%/hash/digilog320.xml >-%%DATADIR%%/hash/dim68k.xml >-%%DATADIR%%/hash/dmv.xml >-%%DATADIR%%/hash/dps1.xml >-%%DATADIR%%/hash/dragon_cart.xml >-%%DATADIR%%/hash/dragon_cass.xml >-%%DATADIR%%/hash/dragon_flex.xml >-%%DATADIR%%/hash/dragon_flop.xml >-%%DATADIR%%/hash/dragon_os9.xml >-%%DATADIR%%/hash/e01_flop.xml >-%%DATADIR%%/hash/easy_karaoke_cart.xml >-%%DATADIR%%/hash/ec1841.xml >-%%DATADIR%%/hash/einstein.xml >-%%DATADIR%%/hash/einstein_rom.xml >-%%DATADIR%%/hash/ekara_japan.xml >-%%DATADIR%%/hash/ekara_japan_a.xml >-%%DATADIR%%/hash/ekara_japan_ac.xml >-%%DATADIR%%/hash/ekara_japan_bh.xml >-%%DATADIR%%/hash/ekara_japan_d.xml >-%%DATADIR%%/hash/ekara_japan_en.xml >-%%DATADIR%%/hash/ekara_japan_g.xml >-%%DATADIR%%/hash/ekara_japan_gk.xml >-%%DATADIR%%/hash/ekara_japan_m.xml >-%%DATADIR%%/hash/ekara_japan_p.xml >-%%DATADIR%%/hash/ekara_japan_s.xml >-%%DATADIR%%/hash/ekara_japan_sp.xml >-%%DATADIR%%/hash/ekara_japan_web.xml >-%%DATADIR%%/hash/ekara_pal.xml >-%%DATADIR%%/hash/ekara_us.xml >-%%DATADIR%%/hash/electron_cart.xml >-%%DATADIR%%/hash/electron_cass.xml >-%%DATADIR%%/hash/electron_flop.xml >-%%DATADIR%%/hash/electron_rom.xml >-%%DATADIR%%/hash/entex_sag.xml >-%%DATADIR%%/hash/ep64_cart.xml >-%%DATADIR%%/hash/ep64_cass.xml >-%%DATADIR%%/hash/ep64_flop.xml >-%%DATADIR%%/hash/epson_cpm.xml >-%%DATADIR%%/hash/eti660_quik.xml >-%%DATADIR%%/hash/evio.xml >-%%DATADIR%%/hash/ews286_flop.xml >-%%DATADIR%%/hash/excalibur64.xml >-%%DATADIR%%/hash/exl100.xml >-%%DATADIR%%/hash/famibox.xml >-%%DATADIR%%/hash/famicom_cass.xml >-%%DATADIR%%/hash/famicom_flop.xml >-%%DATADIR%%/hash/fidel_msc.xml >-%%DATADIR%%/hash/fidel_sc6.xml >-%%DATADIR%%/hash/fidel_scc.xml >-%%DATADIR%%/hash/fm77av.xml >-%%DATADIR%%/hash/fm7_cass.xml >-%%DATADIR%%/hash/fm7_disk.xml >-%%DATADIR%%/hash/fm8_cass.xml >-%%DATADIR%%/hash/fmtowns_cd.xml >-%%DATADIR%%/hash/fmtowns_flop_cracked.xml >-%%DATADIR%%/hash/fmtowns_flop_misc.xml >-%%DATADIR%%/hash/fmtowns_flop_orig.xml >-%%DATADIR%%/hash/galaxy.xml >-%%DATADIR%%/hash/gamate.xml >-%%DATADIR%%/hash/gameboy.xml >-%%DATADIR%%/hash/gamecom.xml >-%%DATADIR%%/hash/gamegear.xml >-%%DATADIR%%/hash/gameking.xml >-%%DATADIR%%/hash/gameking3.xml >-%%DATADIR%%/hash/gamepock.xml >-%%DATADIR%%/hash/gba.xml >-%%DATADIR%%/hash/gba_ereader.xml >-%%DATADIR%%/hash/gbcolor.xml >-%%DATADIR%%/hash/gcslottv.xml >-%%DATADIR%%/hash/ggm.xml >-%%DATADIR%%/hash/gimix.xml >-%%DATADIR%%/hash/gj4000.xml >-%%DATADIR%%/hash/gjmovie.xml >-%%DATADIR%%/hash/gjrstar.xml >-%%DATADIR%%/hash/gl2000.xml >-%%DATADIR%%/hash/gl6000sl.xml >-%%DATADIR%%/hash/glcolor.xml >-%%DATADIR%%/hash/glcx.xml >-%%DATADIR%%/hash/gln.xml >-%%DATADIR%%/hash/gls.xml >-%%DATADIR%%/hash/gmaster.xml >-%%DATADIR%%/hash/gp32.xml >-%%DATADIR%%/hash/gtfore.xml >-%%DATADIR%%/hash/guab.xml >-%%DATADIR%%/hash/gx4000.xml >-%%DATADIR%%/hash/h21.xml >-%%DATADIR%%/hash/horizon.xml >-%%DATADIR%%/hash/hp85_rom.xml >-%%DATADIR%%/hash/hp86_rom.xml >-%%DATADIR%%/hash/hp9825b_rom.xml >-%%DATADIR%%/hash/hp9835a_rom.xml >-%%DATADIR%%/hash/hp9845a_rom.xml >-%%DATADIR%%/hash/hp9845b_rom.xml >-%%DATADIR%%/hash/hp9k3xx_cdrom.xml >-%%DATADIR%%/hash/hp9k3xx_flop.xml >-%%DATADIR%%/hash/hp9k3xx_hdd.xml >-%%DATADIR%%/hash/hp_ipc.xml >-%%DATADIR%%/hash/hp_ipc_rom.xml >-%%DATADIR%%/hash/ht68k.xml >-%%DATADIR%%/hash/hx20_rom.xml >-%%DATADIR%%/hash/hyperscan.xml >-%%DATADIR%%/hash/hyperscan_card.xml >-%%DATADIR%%/hash/i7000_card.xml >-%%DATADIR%%/hash/ibm5140.xml >-%%DATADIR%%/hash/ibm5150.xml >-%%DATADIR%%/hash/ibm5150_cass.xml >-%%DATADIR%%/hash/ibm5150_hdd.xml >-%%DATADIR%%/hash/ibm5170.xml >-%%DATADIR%%/hash/ibm5170_cdrom.xml >-%%DATADIR%%/hash/ibm5170_hdd.xml >-%%DATADIR%%/hash/ibm6580.xml >-%%DATADIR%%/hash/ibmpcjr_cart.xml >-%%DATADIR%%/hash/ibmpcjr_flop.xml >-%%DATADIR%%/hash/icanguit.xml >-%%DATADIR%%/hash/icanpian.xml >-%%DATADIR%%/hash/intellect02.xml >-%%DATADIR%%/hash/interact.xml >-%%DATADIR%%/hash/interpro.xml >-%%DATADIR%%/hash/intv.hsi >-%%DATADIR%%/hash/intv.xml >-%%DATADIR%%/hash/intvecs.xml >-%%DATADIR%%/hash/iq128.xml >-%%DATADIR%%/hash/iq151_cart.xml >-%%DATADIR%%/hash/iq151_flop.xml >-%%DATADIR%%/hash/ique.xml >-%%DATADIR%%/hash/iqunlim_cart.xml >-%%DATADIR%%/hash/itt3030.xml >-%%DATADIR%%/hash/jaguar.xml >-%%DATADIR%%/hash/jakks_gamekey_dp.xml >-%%DATADIR%%/hash/jakks_gamekey_dy.xml >-%%DATADIR%%/hash/jakks_gamekey_mv.xml >-%%DATADIR%%/hash/jakks_gamekey_nk.xml >-%%DATADIR%%/hash/jakks_gamekey_nm.xml >-%%DATADIR%%/hash/jakks_gamekey_sw.xml >-%%DATADIR%%/hash/jazz.xml >-%%DATADIR%%/hash/jb3000_flop.xml >-%%DATADIR%%/hash/jpopira_jp.xml >-%%DATADIR%%/hash/juicebox.xml >-%%DATADIR%%/hash/juku.xml >-%%DATADIR%%/hash/jupace_cass.xml >-%%DATADIR%%/hash/jupace_snap.xml >-%%DATADIR%%/hash/k28m2.xml >-%%DATADIR%%/hash/kaypro.xml >-%%DATADIR%%/hash/kc_cart.xml >-%%DATADIR%%/hash/kc_cass.xml >-%%DATADIR%%/hash/kc_flop.xml >-%%DATADIR%%/hash/kim1_cass.xml >-%%DATADIR%%/hash/korvet_flop.xml >-%%DATADIR%%/hash/kpython2.xml >-%%DATADIR%%/hash/lanteach.xml >-%%DATADIR%%/hash/lantrans.xml >-%%DATADIR%%/hash/laser2001_cart.xml >-%%DATADIR%%/hash/laser2001_flop.xml >-%%DATADIR%%/hash/leapfrog_didj_cart.xml >-%%DATADIR%%/hash/leapfrog_iquest_cart.xml >-%%DATADIR%%/hash/leapfrog_leappad_cart.xml >-%%DATADIR%%/hash/leapfrog_ltleappad_cart.xml >-%%DATADIR%%/hash/leapfrog_mfleappad_cart.xml >-%%DATADIR%%/hash/leapfrog_zippity_cart.xml >-%%DATADIR%%/hash/leapster.xml >-%%DATADIR%%/hash/leapster_explorer_cart.xml >-%%DATADIR%%/hash/lisa.xml >-%%DATADIR%%/hash/lisa2.xml >-%%DATADIR%%/hash/lk3000.xml >-%%DATADIR%%/hash/lviv.xml >-%%DATADIR%%/hash/lynx.xml >-%%DATADIR%%/hash/m20.xml >-%%DATADIR%%/hash/m24.xml >-%%DATADIR%%/hash/m5_cart.xml >-%%DATADIR%%/hash/m5_cass.xml >-%%DATADIR%%/hash/m5_flop.xml >-%%DATADIR%%/hash/mac_flop.xml >-%%DATADIR%%/hash/mac_hdd.xml >-%%DATADIR%%/hash/mac_hdflop.xml >-%%DATADIR%%/hash/mbc200.xml >-%%DATADIR%%/hash/mbc55x.xml >-%%DATADIR%%/hash/mbee_cart.xml >-%%DATADIR%%/hash/mbee_cass.xml >-%%DATADIR%%/hash/mbee_flop.xml >-%%DATADIR%%/hash/mbee_quik.xml >-%%DATADIR%%/hash/mc10.xml >-%%DATADIR%%/hash/mc1000_cass.xml >-%%DATADIR%%/hash/mc1502_flop.xml >-%%DATADIR%%/hash/md2_flop.xml >-%%DATADIR%%/hash/megacd.xml >-%%DATADIR%%/hash/megacdj.xml >-%%DATADIR%%/hash/megadriv.xml >-%%DATADIR%%/hash/megaduck.xml >-%%DATADIR%%/hash/megapc.xml >-%%DATADIR%%/hash/megatech.xml >-%%DATADIR%%/hash/mephisto_mm1.xml >-%%DATADIR%%/hash/mephisto_mm2.xml >-%%DATADIR%%/hash/mephisto_mm4.xml >-%%DATADIR%%/hash/mephisto_mm5.xml >-%%DATADIR%%/hash/mephisto_smondial2.xml >-%%DATADIR%%/hash/microvision.xml >-%%DATADIR%%/hash/midi_flop.xml >-%%DATADIR%%/hash/mikro80.xml >-%%DATADIR%%/hash/mikrosha_cart.xml >-%%DATADIR%%/hash/mikrosha_cass.xml >-%%DATADIR%%/hash/mindset_flop.xml >-%%DATADIR%%/hash/misterx.xml >-%%DATADIR%%/hash/mm1_flop.xml >-%%DATADIR%%/hash/mo5_cart.xml >-%%DATADIR%%/hash/mo5_cass.xml >-%%DATADIR%%/hash/mo5_flop.xml >-%%DATADIR%%/hash/mo5_qd.xml >-%%DATADIR%%/hash/mo6_cass.xml >-%%DATADIR%%/hash/mo6_flop.xml >-%%DATADIR%%/hash/mobigo_cart.xml >-%%DATADIR%%/hash/monon_color.xml >-%%DATADIR%%/hash/mpu1000.xml >-%%DATADIR%%/hash/mpz80.xml >-%%DATADIR%%/hash/msx.hsi >-%%DATADIR%%/hash/msx1_cart.xml >-%%DATADIR%%/hash/msx1_cass.xml >-%%DATADIR%%/hash/msx1_flop.xml >-%%DATADIR%%/hash/msx1_flop_525.xml >-%%DATADIR%%/hash/msx2.hsi >-%%DATADIR%%/hash/msx2_cart.xml >-%%DATADIR%%/hash/msx2_cass.xml >-%%DATADIR%%/hash/msx2_flop.xml >-%%DATADIR%%/hash/msx2p_flop.xml >-%%DATADIR%%/hash/msxr_flop.xml >-%%DATADIR%%/hash/mt65_cass.xml >-%%DATADIR%%/hash/mt65_rom.xml >-%%DATADIR%%/hash/mt65_snap.xml >-%%DATADIR%%/hash/mtu130_flop.xml >-%%DATADIR%%/hash/mtx_cart.xml >-%%DATADIR%%/hash/mtx_cass.xml >-%%DATADIR%%/hash/mtx_flop.xml >-%%DATADIR%%/hash/mtx_hdd.xml >-%%DATADIR%%/hash/mtx_rom.xml >-%%DATADIR%%/hash/myvision.xml >-%%DATADIR%%/hash/mz2000_cass.xml >-%%DATADIR%%/hash/mz2000_flop.xml >-%%DATADIR%%/hash/mz2200_cass.xml >-%%DATADIR%%/hash/mz2500.xml >-%%DATADIR%%/hash/mz700_cass.xml >-%%DATADIR%%/hash/mz800_cass.xml >-%%DATADIR%%/hash/n64.xml >-%%DATADIR%%/hash/n64dd.xml >-%%DATADIR%%/hash/nascom_flop.xml >-%%DATADIR%%/hash/nascom_snap.xml >-%%DATADIR%%/hash/nascom_socket.xml >-%%DATADIR%%/hash/neocd.xml >-%%DATADIR%%/hash/neogeo.xml >-%%DATADIR%%/hash/nes.hsi >-%%DATADIR%%/hash/nes.xml >-%%DATADIR%%/hash/nes_ade.xml >-%%DATADIR%%/hash/nes_datach.xml >-%%DATADIR%%/hash/nes_kstudio.xml >-%%DATADIR%%/hash/nes_ntbrom.xml >-%%DATADIR%%/hash/nes_vt_cart.xml >-%%DATADIR%%/hash/next.xml >-%%DATADIR%%/hash/next_cdrom.xml >-%%DATADIR%%/hash/next_hdd.xml >-%%DATADIR%%/hash/ngp.xml >-%%DATADIR%%/hash/ngpc.xml >-%%DATADIR%%/hash/nimbus.xml >-%%DATADIR%%/hash/novag_ssensor4.xml >-%%DATADIR%%/hash/nuon.xml >-%%DATADIR%%/hash/octopus.xml >-%%DATADIR%%/hash/ondra.xml >-%%DATADIR%%/hash/orao.xml >-%%DATADIR%%/hash/orion_cart.xml >-%%DATADIR%%/hash/orion_cass.xml >-%%DATADIR%%/hash/orion_flop.xml >-%%DATADIR%%/hash/orionpro_flop.xml >-%%DATADIR%%/hash/osborne1.xml >-%%DATADIR%%/hash/osborne2.xml >-%%DATADIR%%/hash/p500_flop.xml >-%%DATADIR%%/hash/partner_cass.xml >-%%DATADIR%%/hash/partner_flop.xml >-%%DATADIR%%/hash/pasogo.xml >-%%DATADIR%%/hash/pasopia_cass.xml >-%%DATADIR%%/hash/pb2000c.xml >-%%DATADIR%%/hash/pc1000.xml >-%%DATADIR%%/hash/pc1512_flop.xml >-%%DATADIR%%/hash/pc1512_hdd.xml >-%%DATADIR%%/hash/pc1640_flop.xml >-%%DATADIR%%/hash/pc1640_hdd.xml >-%%DATADIR%%/hash/pc200.xml >-%%DATADIR%%/hash/pc6001_cart.xml >-%%DATADIR%%/hash/pc8001_flop.xml >-%%DATADIR%%/hash/pc8001mk2_flop.xml >-%%DATADIR%%/hash/pc8001mk2sr_flop.xml >-%%DATADIR%%/hash/pc8201.xml >-%%DATADIR%%/hash/pc8801_cass.xml >-%%DATADIR%%/hash/pc8801_cdrom.xml >-%%DATADIR%%/hash/pc8801_flop.xml >-%%DATADIR%%/hash/pc88va.xml >-%%DATADIR%%/hash/pc98.xml >-%%DATADIR%%/hash/pc98_cd.xml >-%%DATADIR%%/hash/pcd_flop.xml >-%%DATADIR%%/hash/pce.xml >-%%DATADIR%%/hash/pce_tourvision.xml >-%%DATADIR%%/hash/pcecd.xml >-%%DATADIR%%/hash/pcfx.xml >-%%DATADIR%%/hash/pcw.xml >-%%DATADIR%%/hash/pcw16.xml >-%%DATADIR%%/hash/pcx_flop.xml >-%%DATADIR%%/hash/pdp1_ptp.xml >-%%DATADIR%%/hash/pecom_cass.xml >-%%DATADIR%%/hash/pegasus_cart.xml >-%%DATADIR%%/hash/pencil2.xml >-%%DATADIR%%/hash/pentagon_cass.xml >-%%DATADIR%%/hash/pet_cass.xml >-%%DATADIR%%/hash/pet_flop.xml >-%%DATADIR%%/hash/pet_hdd.xml >-%%DATADIR%%/hash/pet_quik.xml >-%%DATADIR%%/hash/pet_rom.xml >-%%DATADIR%%/hash/phc25_cass.xml >-%%DATADIR%%/hash/pi_storyreader_cart.xml >-%%DATADIR%%/hash/pi_storyreader_v2_cart.xml >-%%DATADIR%%/hash/picno.xml >-%%DATADIR%%/hash/pico.xml >-%%DATADIR%%/hash/pippin.xml >-%%DATADIR%%/hash/pippin_flop.xml >-%%DATADIR%%/hash/playmaker.xml >-%%DATADIR%%/hash/plus4_cart.xml >-%%DATADIR%%/hash/plus4_cass.xml >-%%DATADIR%%/hash/plus4_flop.xml >-%%DATADIR%%/hash/pmd85_cass.xml >-%%DATADIR%%/hash/pockchalv2.xml >-%%DATADIR%%/hash/pockchalw.xml >-%%DATADIR%%/hash/pofo.xml >-%%DATADIR%%/hash/poisk1_flop.xml >-%%DATADIR%%/hash/pokemini.xml >-%%DATADIR%%/hash/poly_flop.xml >-%%DATADIR%%/hash/princ.xml >-%%DATADIR%%/hash/pro128_cart.xml >-%%DATADIR%%/hash/pro128_cass.xml >-%%DATADIR%%/hash/pro128_flop.xml >-%%DATADIR%%/hash/pro128s_flop.xml >-%%DATADIR%%/hash/prof180.xml >-%%DATADIR%%/hash/prof80.xml >-%%DATADIR%%/hash/psi98.xml >-%%DATADIR%%/hash/psion1.xml >-%%DATADIR%%/hash/psion2.xml >-%%DATADIR%%/hash/psx.xml >-%%DATADIR%%/hash/pt68k2.xml >-%%DATADIR%%/hash/pv1000.xml >-%%DATADIR%%/hash/pv2000.xml >-%%DATADIR%%/hash/px4_cart.xml >-%%DATADIR%%/hash/px8_cart.xml >-%%DATADIR%%/hash/pyl601.xml >-%%DATADIR%%/hash/ql_cart.xml >-%%DATADIR%%/hash/ql_cass.xml >-%%DATADIR%%/hash/ql_flop.xml >-%%DATADIR%%/hash/quizwiz.xml >-%%DATADIR%%/hash/qx10_flop.xml >-%%DATADIR%%/hash/r8_card.xml >-%%DATADIR%%/hash/r9751.xml >-%%DATADIR%%/hash/radio86_cart.xml >-%%DATADIR%%/hash/radio86_cass.xml >-%%DATADIR%%/hash/rainbow.xml >-%%DATADIR%%/hash/roland_tnsc1.xml >-%%DATADIR%%/hash/rwtrntcs.xml >-%%DATADIR%%/hash/rx78_cart.xml >-%%DATADIR%%/hash/rx78_cass.xml >-%%DATADIR%%/hash/rz1_cass.xml >-%%DATADIR%%/hash/sagafox.xml >-%%DATADIR%%/hash/sage2.xml >-%%DATADIR%%/hash/saitek_egr.xml >-%%DATADIR%%/hash/saitek_kso.xml >-%%DATADIR%%/hash/saitek_schess.xml >-%%DATADIR%%/hash/samcoupe_cass.xml >-%%DATADIR%%/hash/samcoupe_flop.xml >-%%DATADIR%%/hash/sat_cart.xml >-%%DATADIR%%/hash/sat_vccart.xml >-%%DATADIR%%/hash/saturn.xml >-%%DATADIR%%/hash/sawatte.xml >-%%DATADIR%%/hash/sbrain.xml >-%%DATADIR%%/hash/sc3000_cart.xml >-%%DATADIR%%/hash/sc3000_cass.xml >-%%DATADIR%%/hash/scv.xml >-%%DATADIR%%/hash/sdk85.xml >-%%DATADIR%%/hash/sega_beena_cart.xml >-%%DATADIR%%/hash/segacd.xml >-%%DATADIR%%/hash/sf7000.xml >-%%DATADIR%%/hash/sg1000.xml >-%%DATADIR%%/hash/sgi_mips.xml >-%%DATADIR%%/hash/sgi_mips_hdd.xml >-%%DATADIR%%/hash/sgx.xml >-%%DATADIR%%/hash/singingstarkaraoke_cart.xml >-%%DATADIR%%/hash/sitcom.xml >-%%DATADIR%%/hash/smarttv_cart.xml >-%%DATADIR%%/hash/smc777.xml >-%%DATADIR%%/hash/sms.xml >-%%DATADIR%%/hash/snes.xml >-%%DATADIR%%/hash/snes_bspack.xml >-%%DATADIR%%/hash/snes_strom.xml >-%%DATADIR%%/hash/snes_vkun.xml >-%%DATADIR%%/hash/snotec.xml >-%%DATADIR%%/hash/snread.xml >-%%DATADIR%%/hash/snspell.xml >-%%DATADIR%%/hash/socrates.xml >-%%DATADIR%%/hash/softbox.xml >-%%DATADIR%%/hash/softwarelist.dtd >-%%DATADIR%%/hash/sol20_cass.xml >-%%DATADIR%%/hash/sorcerer_cart.xml >-%%DATADIR%%/hash/sorcerer_cass.xml >-%%DATADIR%%/hash/sorcerer_flop.xml >-%%DATADIR%%/hash/spc1000_cass.xml >-%%DATADIR%%/hash/spc1500_cass.xml >-%%DATADIR%%/hash/special_cass.xml >-%%DATADIR%%/hash/special_flop.xml >-%%DATADIR%%/hash/specpls3_flop.xml >-%%DATADIR%%/hash/spectrum_betadisc_flop.xml >-%%DATADIR%%/hash/spectrum_cart.xml >-%%DATADIR%%/hash/spectrum_cass.xml >-%%DATADIR%%/hash/spectrum_flop_opus.xml >-%%DATADIR%%/hash/spectrum_mgt_flop.xml >-%%DATADIR%%/hash/spectrum_microdrive.xml >-%%DATADIR%%/hash/spectrum_wafadrive.xml >-%%DATADIR%%/hash/squale_cart.xml >-%%DATADIR%%/hash/ssem_quik.xml >-%%DATADIR%%/hash/st_cart.xml >-%%DATADIR%%/hash/st_flop.xml >-%%DATADIR%%/hash/stepone_flop.xml >-%%DATADIR%%/hash/studio2.xml >-%%DATADIR%%/hash/stv.xml >-%%DATADIR%%/hash/super6.xml >-%%DATADIR%%/hash/super80_cass.xml >-%%DATADIR%%/hash/super80_flop.xml >-%%DATADIR%%/hash/superpet_flop.xml >-%%DATADIR%%/hash/supracan.xml >-%%DATADIR%%/hash/sv8000.xml >-%%DATADIR%%/hash/svi318_cart.xml >-%%DATADIR%%/hash/svi318_cass.xml >-%%DATADIR%%/hash/svi318_flop.xml >-%%DATADIR%%/hash/svision.xml >-%%DATADIR%%/hash/svmu.xml >-%%DATADIR%%/hash/t1000.xml >-%%DATADIR%%/hash/tandy200.xml >-%%DATADIR%%/hash/tandy2k.xml >-%%DATADIR%%/hash/tandy6k.xml >-%%DATADIR%%/hash/tc4.xml >-%%DATADIR%%/hash/tdv2324.xml >-%%DATADIR%%/hash/tek4052_cart.xml >-%%DATADIR%%/hash/telestory_cart.xml >-%%DATADIR%%/hash/tg16.xml >-%%DATADIR%%/hash/ti74_cart.xml >-%%DATADIR%%/hash/ti95_cart.xml >-%%DATADIR%%/hash/ti99_cart.xml >-%%DATADIR%%/hash/tiki100.xml >-%%DATADIR%%/hash/timex_cass.xml >-%%DATADIR%%/hash/timex_dock.xml >-%%DATADIR%%/hash/tntell.xml >-%%DATADIR%%/hash/to770_cart.xml >-%%DATADIR%%/hash/to770a_cart.xml >-%%DATADIR%%/hash/to7_cart.xml >-%%DATADIR%%/hash/to7_cass.xml >-%%DATADIR%%/hash/to7_qd.xml >-%%DATADIR%%/hash/to8_cass.xml >-%%DATADIR%%/hash/to8_qd.xml >-%%DATADIR%%/hash/to_flop.xml >-%%DATADIR%%/hash/trs80_cass.xml >-%%DATADIR%%/hash/trs80_flop.xml >-%%DATADIR%%/hash/trs80_quik.xml >-%%DATADIR%%/hash/trs80m2.xml >-%%DATADIR%%/hash/trsm100.xml >-%%DATADIR%%/hash/tsconf_betadisc_flop.xml >-%%DATADIR%%/hash/ttwist_brainquest_cart.xml >-%%DATADIR%%/hash/turboextreme_cart.xml >-%%DATADIR%%/hash/tutor.xml >-%%DATADIR%%/hash/tvc_cart.xml >-%%DATADIR%%/hash/tvc_cass.xml >-%%DATADIR%%/hash/tvc_flop.xml >-%%DATADIR%%/hash/tvgogo.xml >-%%DATADIR%%/hash/tx0_ptp.xml >-%%DATADIR%%/hash/u110_card.xml >-%%DATADIR%%/hash/unichamp.xml >-%%DATADIR%%/hash/ut88.xml >-%%DATADIR%%/hash/uzebox.xml >-%%DATADIR%%/hash/v1050_flop.xml >-%%DATADIR%%/hash/v1050_hdd.xml >-%%DATADIR%%/hash/vbaby_cart.xml >-%%DATADIR%%/hash/vboy.xml >-%%DATADIR%%/hash/vc4000.xml >-%%DATADIR%%/hash/vector06_cart.xml >-%%DATADIR%%/hash/vector06_flop.xml >-%%DATADIR%%/hash/vectrex.xml >-%%DATADIR%%/hash/vg5k.xml >-%%DATADIR%%/hash/vgmplay.xml >-%%DATADIR%%/hash/vic10.xml >-%%DATADIR%%/hash/vic1001_cart.xml >-%%DATADIR%%/hash/vic1001_cass.xml >-%%DATADIR%%/hash/vic1001_flop.xml >-%%DATADIR%%/hash/victor9k_flop.xml >-%%DATADIR%%/hash/vidbrain.xml >-%%DATADIR%%/hash/videopac.xml >-%%DATADIR%%/hash/vii.xml >-%%DATADIR%%/hash/vip.xml >-%%DATADIR%%/hash/vis.xml >-%%DATADIR%%/hash/visicom.xml >-%%DATADIR%%/hash/vixen.xml >-%%DATADIR%%/hash/vsmile_cart.xml >-%%DATADIR%%/hash/vsmile_cd.xml >-%%DATADIR%%/hash/vsmileb_cart.xml >-%%DATADIR%%/hash/vsmilem_cart.xml >-%%DATADIR%%/hash/vtech2_cass.xml >-%%DATADIR%%/hash/vtech_innotab_cart.xml >-%%DATADIR%%/hash/vtech_innotv_cart.xml >-%%DATADIR%%/hash/vtech_storio_cart.xml >-%%DATADIR%%/hash/vz_cass.xml >-%%DATADIR%%/hash/vz_snap.xml >-%%DATADIR%%/hash/wangpc.xml >-%%DATADIR%%/hash/waveterm.xml >-%%DATADIR%%/hash/wicat.xml >-%%DATADIR%%/hash/wizard_cart.xml >-%%DATADIR%%/hash/wmbullet.xml >-%%DATADIR%%/hash/wscolor.xml >-%%DATADIR%%/hash/wswan.xml >-%%DATADIR%%/hash/x07_card.xml >-%%DATADIR%%/hash/x07_cass.xml >-%%DATADIR%%/hash/x1_cass.xml >-%%DATADIR%%/hash/x1_flop.xml >-%%DATADIR%%/hash/x37_flop.xml >-%%DATADIR%%/hash/x68k_flop.xml >-%%DATADIR%%/hash/xegs.xml >-%%DATADIR%%/hash/xerox820.xml >-%%DATADIR%%/hash/xerox820ii.xml >-%%DATADIR%%/hash/z80clock.xml >-%%DATADIR%%/hash/z80ne_cass.xml >-%%DATADIR%%/hash/z80ne_flop.xml >-%%DATADIR%%/hash/z88_cart.xml >-%%DATADIR%%/hash/zorba.xml >-%%DATADIR%%/hash/zx80_cass.xml >-%%DATADIR%%/hash/zx81_cass.xml >-%%DATADIR%%/ini/examples/bt601-525.ini >-%%DATADIR%%/ini/examples/bt601-625.ini >-%%DATADIR%%/ini/examples/bt709.ini >-%%DATADIR%%/ini/examples/ntscj.ini >-%%DATADIR%%/ini/examples/p1.ini >-%%DATADIR%%/ini/examples/p14.ini >-%%DATADIR%%/ini/examples/p2.ini >-%%DATADIR%%/ini/examples/p3.ini >-%%DATADIR%%/ini/examples/p35.ini >-%%DATADIR%%/ini/examples/p4.ini >-%%DATADIR%%/ini/examples/p55.ini >-%%DATADIR%%/ini/examples/p7.ini >-%%DATADIR%%/ini/presets/gameboy.ini >-%%DATADIR%%/ini/presets/gba.ini >-%%DATADIR%%/ini/presets/lcd-matrix.ini >-%%DATADIR%%/ini/presets/lcd.ini >-%%DATADIR%%/ini/presets/raster.ini >-%%DATADIR%%/ini/presets/vector-mono.ini >-%%DATADIR%%/ini/presets/vector.ini >-%%DATADIR%%/language/Afrikaans/strings.mo >-%%DATADIR%%/language/Afrikaans/strings.po >-%%DATADIR%%/language/Albanian/strings.mo >-%%DATADIR%%/language/Albanian/strings.po >-%%DATADIR%%/language/Arabic/strings.mo >-%%DATADIR%%/language/Arabic/strings.po >-%%DATADIR%%/language/Basque/strings.mo >-%%DATADIR%%/language/Basque/strings.po >-%%DATADIR%%/language/Belarusian/strings.mo >-%%DATADIR%%/language/Belarusian/strings.po >-%%DATADIR%%/language/Bosnian/strings.mo >-%%DATADIR%%/language/Bosnian/strings.po >-%%DATADIR%%/language/Bulgarian/strings.mo >-%%DATADIR%%/language/Bulgarian/strings.po >-%%DATADIR%%/language/Burmese/strings.mo >-%%DATADIR%%/language/Burmese/strings.po >-%%DATADIR%%/language/Catalan/strings.mo >-%%DATADIR%%/language/Catalan/strings.po >-%%DATADIR%%/language/Chinese_Simplified/strings.mo >-%%DATADIR%%/language/Chinese_Simplified/strings.po >-%%DATADIR%%/language/Chinese_Traditional/strings.mo >-%%DATADIR%%/language/Chinese_Traditional/strings.po >-%%DATADIR%%/language/Croatian/strings.mo >-%%DATADIR%%/language/Croatian/strings.po >-%%DATADIR%%/language/Czech/strings.mo >-%%DATADIR%%/language/Czech/strings.po >-%%DATADIR%%/language/Danish/strings.mo >-%%DATADIR%%/language/Danish/strings.po >-%%DATADIR%%/language/Dutch/strings.mo >-%%DATADIR%%/language/Dutch/strings.po >-%%DATADIR%%/language/English/strings.mo >-%%DATADIR%%/language/English/strings.po >-%%DATADIR%%/language/Estonian/strings.mo >-%%DATADIR%%/language/Estonian/strings.po >-%%DATADIR%%/language/Finnish/strings.mo >-%%DATADIR%%/language/Finnish/strings.po >-%%DATADIR%%/language/French/strings.mo >-%%DATADIR%%/language/French/strings.po >-%%DATADIR%%/language/French_Belgium/strings.mo >-%%DATADIR%%/language/French_Belgium/strings.po >-%%DATADIR%%/language/French_Canada/strings.mo >-%%DATADIR%%/language/French_Canada/strings.po >-%%DATADIR%%/language/Georgian/strings.mo >-%%DATADIR%%/language/Georgian/strings.po >-%%DATADIR%%/language/German/strings.mo >-%%DATADIR%%/language/German/strings.po >-%%DATADIR%%/language/Greek/strings.mo >-%%DATADIR%%/language/Greek/strings.po >-%%DATADIR%%/language/Hebrew/strings.mo >-%%DATADIR%%/language/Hebrew/strings.po >-%%DATADIR%%/language/Hindi/strings.mo >-%%DATADIR%%/language/Hindi/strings.po >-%%DATADIR%%/language/Hungarian/strings.mo >-%%DATADIR%%/language/Hungarian/strings.po >-%%DATADIR%%/language/Indonesian/strings.mo >-%%DATADIR%%/language/Indonesian/strings.po >-%%DATADIR%%/language/Italian/strings.mo >-%%DATADIR%%/language/Italian/strings.po >-%%DATADIR%%/language/Japanese/strings.mo >-%%DATADIR%%/language/Japanese/strings.po >-%%DATADIR%%/language/Korean/strings.mo >-%%DATADIR%%/language/Korean/strings.po >-%%DATADIR%%/language/LICENSE >-%%DATADIR%%/language/Latvian/strings.mo >-%%DATADIR%%/language/Latvian/strings.po >-%%DATADIR%%/language/Lithuanian/strings.mo >-%%DATADIR%%/language/Lithuanian/strings.po >-%%DATADIR%%/language/Macedonian/strings.mo >-%%DATADIR%%/language/Macedonian/strings.po >-%%DATADIR%%/language/Norwegian/strings.mo >-%%DATADIR%%/language/Norwegian/strings.po >-%%DATADIR%%/language/Persian/strings.mo >-%%DATADIR%%/language/Persian/strings.po >-%%DATADIR%%/language/Polish/strings.mo >-%%DATADIR%%/language/Polish/strings.po >-%%DATADIR%%/language/Portuguese/strings.mo >-%%DATADIR%%/language/Portuguese/strings.po >-%%DATADIR%%/language/Portuguese_Brazil/strings.mo >-%%DATADIR%%/language/Portuguese_Brazil/strings.po >-%%DATADIR%%/language/README.md >-%%DATADIR%%/language/Romanian/strings.mo >-%%DATADIR%%/language/Romanian/strings.po >-%%DATADIR%%/language/Russian/strings.mo >-%%DATADIR%%/language/Russian/strings.po >-%%DATADIR%%/language/Serbian/strings.mo >-%%DATADIR%%/language/Serbian/strings.po >-%%DATADIR%%/language/Serbian_Cyrillic/strings.mo >-%%DATADIR%%/language/Serbian_Cyrillic/strings.po >-%%DATADIR%%/language/Slovak/strings.mo >-%%DATADIR%%/language/Slovak/strings.po >-%%DATADIR%%/language/Slovenian/strings.mo >-%%DATADIR%%/language/Slovenian/strings.po >-%%DATADIR%%/language/Spanish/strings.mo >-%%DATADIR%%/language/Spanish/strings.po >-%%DATADIR%%/language/Spanish_Mexico/strings.mo >-%%DATADIR%%/language/Spanish_Mexico/strings.po >-%%DATADIR%%/language/Swedish/strings.mo >-%%DATADIR%%/language/Swedish/strings.po >-%%DATADIR%%/language/Thai/strings.mo >-%%DATADIR%%/language/Thai/strings.po >-%%DATADIR%%/language/Turkish/strings.mo >-%%DATADIR%%/language/Turkish/strings.po >-%%DATADIR%%/language/Ukrainian/strings.mo >-%%DATADIR%%/language/Ukrainian/strings.po >-%%DATADIR%%/language/Vietnamese/strings.mo >-%%DATADIR%%/language/Vietnamese/strings.po >-%%DATADIR%%/plugins/README.md >-%%DATADIR%%/plugins/autofire/autofire_menu.lua >-%%DATADIR%%/plugins/autofire/autofire_save.lua >-%%DATADIR%%/plugins/autofire/init.lua >-%%DATADIR%%/plugins/autofire/plugin.json >-%%DATADIR%%/plugins/boot.lua >-%%DATADIR%%/plugins/cheat/cheat_json.lua >-%%DATADIR%%/plugins/cheat/cheat_simple.lua >-%%DATADIR%%/plugins/cheat/cheat_xml.lua >-%%DATADIR%%/plugins/cheat/init.lua >-%%DATADIR%%/plugins/cheat/plugin.json >-%%DATADIR%%/plugins/cheat/xml_to_json.lua >-%%DATADIR%%/plugins/cheatfind/init.lua >-%%DATADIR%%/plugins/cheatfind/plugin.json >-%%DATADIR%%/plugins/commonui/init.lua >-%%DATADIR%%/plugins/commonui/plugin.json >-%%DATADIR%%/plugins/console/init.lua >-%%DATADIR%%/plugins/console/plugin.json >-%%DATADIR%%/plugins/data/button_char.lua >-%%DATADIR%%/plugins/data/data_command.lua >-%%DATADIR%%/plugins/data/data_gameinit.lua >-%%DATADIR%%/plugins/data/data_hiscore.lua >-%%DATADIR%%/plugins/data/data_history.lua >-%%DATADIR%%/plugins/data/data_mameinfo.lua >-%%DATADIR%%/plugins/data/data_marp.lua >-%%DATADIR%%/plugins/data/data_%%EMULATOR%%info.lua >-%%DATADIR%%/plugins/data/data_story.lua >-%%DATADIR%%/plugins/data/data_sysinfo.lua >-%%DATADIR%%/plugins/data/database.lua >-%%DATADIR%%/plugins/data/init.lua >-%%DATADIR%%/plugins/data/load_dat.lua >-%%DATADIR%%/plugins/data/plugin.json >-%%DATADIR%%/plugins/discord/init.lua >-%%DATADIR%%/plugins/discord/plugin.json >-%%DATADIR%%/plugins/dummy/init.lua >-%%DATADIR%%/plugins/dummy/plugin.json >-%%DATADIR%%/plugins/gdbstub/init.lua >-%%DATADIR%%/plugins/gdbstub/plugin.json >-%%DATADIR%%/plugins/hiscore/hiscore.dat >-%%DATADIR%%/plugins/hiscore/init.lua >-%%DATADIR%%/plugins/hiscore/plugin.json >-%%DATADIR%%/plugins/hiscore/sort_hiscore.lua >-%%DATADIR%%/plugins/inputmacro/init.lua >-%%DATADIR%%/plugins/inputmacro/inputmacro_menu.lua >-%%DATADIR%%/plugins/inputmacro/inputmacro_persist.lua >-%%DATADIR%%/plugins/inputmacro/plugin.json >-%%DATADIR%%/plugins/json/LICENSE >-%%DATADIR%%/plugins/json/README.md >-%%DATADIR%%/plugins/json/init.lua >-%%DATADIR%%/plugins/json/plugin.json >-%%DATADIR%%/plugins/layout/init.lua >-%%DATADIR%%/plugins/layout/plugin.json >-%%DATADIR%%/plugins/plugin.schema >-%%DATADIR%%/plugins/portname/init.lua >-%%DATADIR%%/plugins/portname/plugin.json >-%%DATADIR%%/plugins/timecode/init.lua >-%%DATADIR%%/plugins/timecode/plugin.json >-%%DATADIR%%/plugins/timer/init.lua >-%%DATADIR%%/plugins/timer/plugin.json >-%%DATADIR%%/plugins/timer/timer_persist.lua >-%%DATADIR%%/plugins/xml/LICENSE.txt >-%%DATADIR%%/plugins/xml/init.lua >-%%DATADIR%%/plugins/xml/plugin.json >-%%DATADIR%%/samples/LICENSE >-%%DATADIR%%/samples/MM1_keyboard/beep.wav >-%%DATADIR%%/samples/MM1_keyboard/power_switch.wav >-%%DATADIR%%/samples/README.md >-%%DATADIR%%/samples/dir.txt >-%%DATADIR%%/samples/floppy/35_seek_12ms.wav >-%%DATADIR%%/samples/floppy/35_seek_20ms.wav >-%%DATADIR%%/samples/floppy/35_seek_2ms.wav >-%%DATADIR%%/samples/floppy/35_seek_6ms.wav >-%%DATADIR%%/samples/floppy/35_spin_empty.wav >-%%DATADIR%%/samples/floppy/35_spin_end.wav >-%%DATADIR%%/samples/floppy/35_spin_loaded.wav >-%%DATADIR%%/samples/floppy/35_spin_start_empty.wav >-%%DATADIR%%/samples/floppy/35_spin_start_loaded.wav >-%%DATADIR%%/samples/floppy/35_step_1_1.wav >-%%DATADIR%%/samples/floppy/525_seek_12ms.wav >-%%DATADIR%%/samples/floppy/525_seek_20ms.wav >-%%DATADIR%%/samples/floppy/525_seek_2ms.wav >-%%DATADIR%%/samples/floppy/525_seek_6ms.wav >-%%DATADIR%%/samples/floppy/525_spin_empty.wav >-%%DATADIR%%/samples/floppy/525_spin_end.wav >-%%DATADIR%%/samples/floppy/525_spin_loaded.wav >-%%DATADIR%%/samples/floppy/525_spin_start_empty.wav >-%%DATADIR%%/samples/floppy/525_spin_start_loaded.wav >-%%DATADIR%%/samples/floppy/525_step_1_1.wav >-%%PORTDOCS%%@dir %%DOCSDIR%% >diff --git a/emulators/qmc2/Makefile b/emulators/qmc2/Makefile >index 22469023ff06..80d41a0b06da 100644 >--- a/emulators/qmc2/Makefile >+++ b/emulators/qmc2/Makefile >@@ -1,20 +1,19 @@ > PORTNAME= qmc2 > PORTVERSION= 0.243 > DISTVERSIONPREFIX= v >-PORTREVISION= 2 >+PORTREVISION= 3 > CATEGORIES= emulators games > > MAINTAINER= agh@riseup.net > COMMENT= Qt based UNIX MAME frontend >-WWW= https://qmc2.batcom-it.net/ >+WWW= https://github.com/qmc2/qmc2-mame-fe > > LICENSE= GPLv2+ > > BUILD_DEPENDS= bash>0:shells/bash \ > gawk>0:lang/gawk > RUN_DEPENDS= libglvnd>0:graphics/libglvnd \ >- mame>=0.250:emulators/mame \ >- mess>=0.250:emulators/mess >+ mame>=0.250:emulators/mame > > USES= compiler:c++11-lang desktop-file-utils gmake gl qt:5 sdl \ > shebangfix tar:bzip2 xorg >diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile >index 2e546496f9a6..c96191b2d2d1 100644 >--- a/emulators/wine-devel/Makefile >+++ b/emulators/wine-devel/Makefile >@@ -1,9 +1,9 @@ > PORTNAME= wine >-DISTVERSION= 7.22 >-PORTREVISION= 1 >+DISTVERSION= 8.0 >+DISTVERSIONSUFFIX= -rc4 > PORTEPOCH= 1 > CATEGORIES= emulators >-MASTER_SITES= https://dl.winehq.org/wine/source/7.x/ >+MASTER_SITES= https://dl.winehq.org/wine/source/8.0/ > PKGNAMESUFFIX= -devel > DISTFILES= ${DISTNAME}${EXTRACT_SUFX} > >@@ -98,7 +98,7 @@ MONO_RUN_DEPENDS= wine-mono-devel>0:emulators/wine-mono-devel > OSS_CONFIGURE_ON= --without-alsa --with-oss > > STAGING_MASTER_SITES= https://github.com/wine-staging/wine-staging/archive/:staging >-STAGING_DIST= v${DISTVERSION}.tar.gz >+STAGING_DIST= v${DISTVERSION}${DISTVERSIONSUFFIX}.tar.gz > STAGING_DISTFILES= ${STAGING_DIST}:staging > STAGING_EXTRACT_DEPENDS= bash:shells/bash \ > git:devel/git \ >@@ -157,8 +157,8 @@ post-extract-STAGING-on: fix-shebang > @${LN} -s ${WRKDIR}/${PORTNAME}-staging-${DISTVERSION}/patches ${WRKSRC}/patches > > post-patch-STAGING-on: >- cd ${WRKSRC} && ${PATCH} -p0 < ${PATCHDIR}/extra-gitapply >- cd ${WRKSRC} && bash ./patches/patchinstall.sh --backend=patch DESTDIR=${WRKSRC} --all >+ cd ${WRKDIR}/${PORTNAME}-staging-${DISTVERSION}${DISTVERSIONSUFFIX} && ${PATCH} -p0 < ${PATCHDIR}/extra-gitapply >+ cd ${WRKDIR}/${PORTNAME}-staging-${DISTVERSION}${DISTVERSIONSUFFIX} && bash ./patches/patchinstall.sh --backend=patch DESTDIR=${WRKSRC} --all > > pre-build: > cd ${WRKSRC} && ${MAKE_CMD} depend >diff --git a/emulators/wine-devel/distinfo b/emulators/wine-devel/distinfo >index 7869c0bdb3d5..7e25ff90b1fe 100644 >--- a/emulators/wine-devel/distinfo >+++ b/emulators/wine-devel/distinfo >@@ -1,5 +1,5 @@ >-TIMESTAMP = 1669625505 >-SHA256 (wine-7.22.tar.xz) = 1f2ac3b2cdf66c49bf145b43e7a3f30e6d8176d0ae498056c903fef8a6ccfc3a >-SIZE (wine-7.22.tar.xz) = 28974052 >-SHA256 (v7.22.tar.gz) = 74104b902d2f60c019c62a15b1f475773f939aedafe05cc937d3ba89973bf00f >-SIZE (v7.22.tar.gz) = 9528424 >+TIMESTAMP = 1673828747 >+SHA256 (wine-8.0-rc4.tar.xz) = 26ecd6ae3892b3057d931f50fcc699d5803831de758df5593e037dbb53f77ea3 >+SIZE (wine-8.0-rc4.tar.xz) = 29041652 >+SHA256 (v8.0-rc4.tar.gz) = 57ee8617dfbc93c5b2532dae3d6a64a7f4aba93d0543e2c391e16487892457cb >+SIZE (v8.0-rc4.tar.gz) = 9529603 >diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile >index d3a0b2ce41b2..71155b5caf88 100644 >--- a/emulators/wine/Makefile >+++ b/emulators/wine/Makefile >@@ -1,9 +1,8 @@ > PORTNAME= wine >-DISTVERSION= 7.0.2 >-PORTREVISION= 1 >+DISTVERSION= 8.0.1 > PORTEPOCH= 1 > CATEGORIES= emulators >-MASTER_SITES= https://dl.winehq.org/wine/source/7.0/ >+MASTER_SITES= https://dl.winehq.org/wine/source/8.0/ > > MAINTAINER= gerald@FreeBSD.org > COMMENT= Microsoft Windows compatibility environment >@@ -15,7 +14,15 @@ LICENSE_FILE= ${WRKSRC}/LICENSE > > ONLY_FOR_ARCHS= amd64 i386 > >-BUILD_DEPENDS= ${LOCALBASE}/bin/flex:textproc/flex >+#.if ${ARCH} == amd64 >+BUILD_DEPENDS+= amd64-w64-mingw32-binutils>0:devel/binutils@amd64_w64_mingw32 \ >+ amd64-w64-mingw32-gcc12>0:lang/gcc12@amd64_w64_mingw32 >+#.endif >+BUILD_DEPENDS+= i686-w64-mingw32-binutils>0:devel/binutils@i686_w64_mingw32 \ >+ i686-w64-mingw32-gcc12>0:lang/gcc12@i686_w64_mingw32 \ >+ ${LOCALBASE}/bin/flex:textproc/flex >+ >+LIB_DEPENDS+= libpcap.so:net/libpcap > > USES= bison cpe desktop-file-utils gmake localbase \ > pkgconfig sdl shebangfix tar:xz >@@ -27,9 +34,12 @@ CPE_VENDOR= winehq > CONFLICTS_INSTALL= wine-devel > > GNU_CONFIGURE= yes >-CONFIGURE_ARGS+=--verbose \ >- --disable-kerberos \ >+CONFIGURE_ARGS+=--disable-kerberos \ > --disable-tests \ >+ --verbose \ >+ --with-pcap \ >+ --with-pthread \ >+ --with-sdl \ > --without-capi \ > --without-coreaudio \ > --without-dbus \ >@@ -39,23 +49,24 @@ CONFIGURE_ARGS+=--verbose \ > --without-gstreamer \ > --without-inotify \ > --without-krb5 \ >- --without-mingw \ > --without-netapi \ > --without-opencl \ > --without-osmesa \ >- --with-pcap \ >- --with-pthread \ > --without-pulse \ > --without-sane \ >- --with-sdl \ > --without-udev \ > --without-unwind \ > --without-usb >-CONFIGURE_ENV= CPPBIN="${CPP}" FLEX="${LOCALBASE}/bin/flex" >+CONFIGURE_ENV= CPPBIN="${CPP}" \ >+ FLEX="${LOCALBASE}/bin/flex" >+CONFIGURE_SCRIPT= ${WRKSRC}/configure >+#CONFIGURE_WRKSRC= ${WRKSRC}/${WIN_PE_ARCH} >+ > WINELIBDIR= ${PREFIX}/lib > .if !defined(USE_LDCONFIG32) > USE_LDCONFIG= ${WINELIBDIR} ${WINELIBDIR}/wine > .endif >+ > SHEBANG_FILES= tools/make_requests tools/winemaker/winemaker \ > tools/winedump/function_grep.pl > >@@ -63,8 +74,8 @@ SUB_FILES= pkg-message > > PORTDATA= wine.inf > >-OPTIONS_DEFINE= CUPS DOCS DOSBOX GNUTLS LDAP OPENAL V4L WINEMAKER X11 GECKO MONO >-OPTIONS_DEFAULT=GNUTLS OPENAL OSS X11 >+OPTIONS_DEFINE= CUPS DOCS DOSBOX GNUTLS V4L WINEMAKER X11 GECKO MONO >+OPTIONS_DEFAULT=GNUTLS OSS X11 > OPTIONS_RADIO= AUDIO > OPTIONS_RADIO_AUDIO= ALSA OSS > OPTIONS_SUB= yes >@@ -89,14 +100,8 @@ GECKO_RUN_DEPENDS= wine-gecko>0:emulators/wine-gecko > GNUTLS_CONFIGURE_WITH= gnutls > GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls > >-LDAP_CONFIGURE_WITH= ldap >-LDAP_USES= ldap >- > MONO_RUN_DEPENDS= wine-mono>0:emulators/wine-mono > >-OPENAL_CONFIGURE_WITH= openal >-OPENAL_USES= openal >- > OSS_CONFIGURE_ON= --without-alsa --with-oss > > V4L_CONFIGURE_WITH= v4l2 >@@ -105,7 +110,7 @@ V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l > > WINEMAKER_RUN_DEPENDS= p5-XML-LibXML>0:textproc/p5-XML-LibXML > >-X11_CONFIGURE_WITH= x fontconfig freetype opengl vkd3d xinerama xinput2 xrandr xrender >+X11_CONFIGURE_WITH= x fontconfig freetype opengl xinerama xinput2 xrandr xrender > X11_USES= gl xorg > X11_USE= GL=glu XORG=x11,xext,xcomposite,xcursor,xi,xinerama,xrandr,xrender > X11_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ >@@ -115,49 +120,122 @@ X11_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ > > .include <bsd.port.pre.mk> > >-.if ${ARCH} == amd64 >-# Wine is composed of three parts: >-# - wine (aka this port on FreeBSD/i386) is the 32-bit component >-# and runs 32-bit programs. >-# - wine64 (aka this part of this port on FreeBSD/amd64) is the >-# 64-bit component and runs 64-bit programs. >-# - wow64 (aka this port built on FreeBSD/i386) is a part of the >-# 64-bit component [wine64] that runs 32-bit programs on FreeBSD/amd64. >+WIN_PE_32= 32bit >+WIN_PE_64= 64bit > >+.if ${ARCH} == amd64 > # --libdir is required since Wine defaults to "${PREFIX}/lib64" on amd64. >-CONFIGURE_ARGS+= --enable-win64 --libdir=${PREFIX}/lib >-PLIST_SUB+= WINE32="@comment " WINE64="" WINEARCH="x86_64" >+CONFIGURE_ARGS_64= --enable-win64 \ >+ --libdir=${PREFIX}/lib >+PLIST_SUB+= WINEARCH="x86_64" \ >+ WINE32="@comment " \ >+ WINE64="" >+CONFIGURE_ARGS_32= --with-wine64="${WRKSRC}/${WIN_PE_64}" \ >+ --libdir="/compat/i386-14-custom/${LOCALBASE}/lib" >+CONFIGURE_ENV_32+= PKG_CONFIG_PATH="/compat/i386-14-custom/${LOCALBASE}/libdata/pkgconfig" >+.else >+PLIST_SUB+= WINEARCH="i386" \ >+ WINE32="" \ >+ WINE64="@comment " >+.endif > >-# Wine assumes a WoW64 package is available, which is not the case on >-# FreeBSD yet. >-post-patch: >- ${REINPLACE_CMD} '/Exec/s|wine|wine64|g' ${WRKSRC}/loader/wine.desktop > >+do-configure: >+.if ${ARCH} == amd64 >+ cd ${WRKSRC}/${WIN_PE_64} && \ >+ ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+ ${CONFIGURE_ARGS} ${CONFIGURE_ARGS_64}; >+.else >+ cd ${WRKSRC}/${WIN_PE_32} && \ >+ ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+ ${CONFIGURE_ARGS} >+.endif >+ >+do-build: >+.if ${ARCH} == amd64 >+ cd ${WRKSRC}/${WIN_PE_64} && \ >+# ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKE_ARGS} >+ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} >+ >+ cd ${WRKSRC}/${WIN_PE_32} && \ >+ ${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_ENV_32} ${SH} ${CONFIGURE_SCRIPT} \ >+ ${CONFIGURE_ARGS} ${CONFIGURE_ARGS_32}; >+ cd ${WRKSRC}/${WIN_PE_32} && \ >+ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} > .else >-PLIST_SUB+= WINE32="" WINE64="@comment " WINEARCH="i386" >+ cd ${WRKSRC}/${WIN_PE_32} && \ >+ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} #${MAKE_FLAGS} ${MAKE_ARGS} > .endif > >-pre-build: >- cd ${WRKSRC} && ${MAKE_CMD} depend >+#do-configure: >+#.if ${ARCH} == amd64 >+# cd ${WRKSRC}/${WIN_PE_64} && \ >+# ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+# ${CONFIGURE_ARGS}; \ >+# cd ${WRKSRC}/${WIN_PE_32} && \ >+# ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+# ${CONFIGURE_ARGS}; \ >+#.endif >+# cd ${WRKSRC}/${WIN_PE_32} && \ >+# ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+# ${CONFIGURE_ARGS}; \ >+ >+post-extract: >+.if ${ARCH} == amd64 >+ ${MKDIR} ${WRKSRC}/${WIN_PE_64} >+.endif >+ ${MKDIR} ${WRKSRC}/${WIN_PE_32} > > post-install: >-.if ${ARCH} == i386 >- ${MV} ${STAGEDIR}${PREFIX}/bin/wineserver ${STAGEDIR}${PREFIX}/bin/wineserver32 >- ${MV} ${STAGEDIR}${PREFIX}/bin/wine ${STAGEDIR}${PREFIX}/bin/wine.bin >- -${ELFCTL} -e +noaslr ${STAGEDIR}${PREFIX}/bin/wine.bin >- ${INSTALL_SCRIPT} ${FILESDIR}/wine.sh ${STAGEDIR}${PREFIX}/bin/wine >-.else >- ${MV} ${STAGEDIR}${PREFIX}/bin/wine64 ${STAGEDIR}${PREFIX}/bin/wine64.bin >- -${ELFCTL} -e +noaslr ${STAGEDIR}${PREFIX}/bin/wine64.bin >- ${INSTALL_SCRIPT} ${FILESDIR}/wine.sh ${STAGEDIR}${PREFIX}/bin/wine64 >- ${INSTALL_SCRIPT} ${FILESDIR}/wine-wow64.sh ${STAGEDIR}${PREFIX}/bin/wine >- ${INSTALL_SCRIPT} ${FILESDIR}/pkg32.sh ${STAGEDIR}${DATADIR}/pkg32.sh >+#.if ${ARCH} == i386 >+# ${MV} ${STAGEDIR}${PREFIX}/bin/wineserver ${STAGEDIR}${PREFIX}/bin/wineserver32 >+# ${MV} ${STAGEDIR}${PREFIX}/bin/wine ${STAGEDIR}${PREFIX}/bin/wine.bin >+# -${ELFCTL} -e +noaslr ${STAGEDIR}${PREFIX}/bin/wine.bin >+# ${INSTALL_SCRIPT} ${FILESDIR}/wine.sh ${STAGEDIR}${PREFIX}/bin/wine >+#.else >+# ${MV} ${STAGEDIR}${PREFIX}/bin/wine64 ${STAGEDIR}${PREFIX}/bin/wine64.bin >+# -${ELFCTL} -e +noaslr ${STAGEDIR}${PREFIX}/bin/wine64.bin >+# ${INSTALL_SCRIPT} ${FILESDIR}/wine.sh ${STAGEDIR}${PREFIX}/bin/wine64 >+# ${INSTALL_SCRIPT} ${FILESDIR}/wine-wow64.sh ${STAGEDIR}${PREFIX}/bin/wine >+# ${INSTALL_SCRIPT} ${FILESDIR}/pkg32.sh ${STAGEDIR}${DATADIR}/pkg32.sh >+#.endif >+# @${MKDIR} ${STAGEDIR}${DOCSDIR} >+#.for i in README ANNOUNCE AUTHORS >+# ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} >+#.endfor >+# ${INSTALL_DATA} ${WRKSRC}/programs/winedbg/README ${STAGEDIR}${DOCSDIR}/README.winedbg >+# ${INSTALL_DATA} ${WRKSRC}/tools/winedump/README ${STAGEDIR}${DOCSDIR}/README.winedump >+ >+post-patch: >+.if ${ARCH} == amd64 >+# Wine assumes a WoW64 package is available, which is not the case on >+ ${REINPLACE_CMD} '/Exec/s|wine|wine64|g' ${WRKSRC}/loader/wine.desktop > .endif >- @${MKDIR} ${STAGEDIR}${DOCSDIR} >-.for i in README ANNOUNCE AUTHORS >- ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} >-.endfor >- ${INSTALL_DATA} ${WRKSRC}/programs/winedbg/README ${STAGEDIR}${DOCSDIR}/README.winedbg >- ${INSTALL_DATA} ${WRKSRC}/tools/winedump/README ${STAGEDIR}${DOCSDIR}/README.winedump >+ >+#do-build: >+# cd ${WRKSRC}/${WIN_PE_64} && \ >+# ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKE_ARGS} >+ >+#do-configure: >+#.if ${ARCH} == amd64 >+# cd ${WRKSRC}/${WIN_PE_64} && \ >+# ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+# ${CONFIGURE_ARGS} ${CONFIGURE_ARGS_64}; >+# cd ${WRKSRC}/${WIN_PE_64} && \ >+# ${MAKE_CMD} ${MAKE_FLAGS} ${MAKE_ARGS} ; >+# #${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKE_ARGS} ; >+ >+# cd ${WRKSRC}/${WIN_PE_32} && \ >+# ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+# ${CONFIGURE_ARGS} ${CONFIGURE_ARGS_32}; >+# cd ${WRKSRC}/${WIN_PE_32} && \ >+# ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKE_ARGS} >+#.else >+ cd ${WRKSRC}/${WIN_PE_32} && \ >+ ${SETENV} ${CONFIGURE_ENV} ${SH} ${CONFIGURE_SCRIPT} \ >+ ${CONFIGURE_ARGS} >+# cd ${WRKSRC}/${WIN_PE_32} && \ >+# ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKE_ARGS} >+#.endif > > .include <bsd.port.post.mk> >diff --git a/emulators/wine/distinfo b/emulators/wine/distinfo >index 86e85c7816e8..886539532887 100644 >--- a/emulators/wine/distinfo >+++ b/emulators/wine/distinfo >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1679956898 >-SHA256 (wine-7.0.2.tar.xz) = e874b4a9c036f2f66b2f2c79012c7f1236afffe840aa0e7c002e7725e75961b9 >-SIZE (wine-7.0.2.tar.xz) = 27179980 >+TIMESTAMP = 1683008756 >+SHA256 (wine-8.0.1.tar.xz) = 22035f3836b4f9c3b1940ad90f9b9e3c1be09234236d2a80d893180535c75b7d >+SIZE (wine-8.0.1.tar.xz) = 29057128 >diff --git a/emulators/wine/pkg-plist b/emulators/wine/pkg-plist >index c22fd8300e89..6d9796bf9491 100644 >--- a/emulators/wine/pkg-plist >+++ b/emulators/wine/pkg-plist >@@ -28,15 +28,18 @@ bin/wmc > bin/wrc > include/wine/debug.h > include/wine/exception.h >+include/wine/iaccessible2.h >+include/wine/iaccessible2.idl > include/wine/itss.h > include/wine/itss.idl >-include/wine/svcctl.h >-include/wine/svcctl.idl >+include/wine/mfinternal.h >+include/wine/mfinternal.idl > include/wine/msvcrt/assert.h > include/wine/msvcrt/complex.h > include/wine/msvcrt/conio.h > include/wine/msvcrt/corecrt.h > include/wine/msvcrt/corecrt_io.h >+include/wine/msvcrt/corecrt_malloc.h > include/wine/msvcrt/corecrt_startup.h > include/wine/msvcrt/corecrt_stdio_config.h > include/wine/msvcrt/corecrt_wctype.h >@@ -74,6 +77,7 @@ include/wine/msvcrt/search.h > include/wine/msvcrt/setjmp.h > include/wine/msvcrt/share.h > include/wine/msvcrt/signal.h >+include/wine/msvcrt/stdarg.h > include/wine/msvcrt/stdbool.h > include/wine/msvcrt/stddef.h > include/wine/msvcrt/stdint.h >@@ -89,8 +93,11 @@ include/wine/msvcrt/sys/utime.h > include/wine/msvcrt/time.h > include/wine/msvcrt/uchar.h > include/wine/msvcrt/unistd.h >+include/wine/msvcrt/vadefs.h > include/wine/msvcrt/wchar.h > include/wine/msvcrt/wctype.h >+include/wine/svcctl.h >+include/wine/svcctl.idl > include/wine/windows/accctrl.h > include/wine/windows/access.idl > include/wine/windows/aclapi.h >@@ -112,6 +119,7 @@ include/wine/windows/amsi.h > include/wine/windows/amsi.idl > include/wine/windows/amstream.h > include/wine/windows/amstream.idl >+include/wine/windows/amva.h > include/wine/windows/amvideo.h > include/wine/windows/amvideo.idl > include/wine/windows/appcompatapi.h >@@ -209,6 +217,8 @@ include/wine/windows/cordebug.h > include/wine/windows/cordebug.idl > include/wine/windows/corerror.h > include/wine/windows/corhdr.h >+include/wine/windows/corsym.h >+include/wine/windows/corsym.idl > include/wine/windows/cpl.h > include/wine/windows/crtrow.idl > include/wine/windows/cryptdlg.h >@@ -226,8 +236,16 @@ include/wine/windows/d2d1_1.h > include/wine/windows/d2d1_1.idl > include/wine/windows/d2d1_2.h > include/wine/windows/d2d1_2.idl >+include/wine/windows/d2d1_3.h >+include/wine/windows/d2d1_3.idl >+include/wine/windows/d2d1effectauthor.h >+include/wine/windows/d2d1effectauthor.idl > include/wine/windows/d2d1effects.h > include/wine/windows/d2d1effects.idl >+include/wine/windows/d2d1effects_1.h >+include/wine/windows/d2d1effects_1.idl >+include/wine/windows/d2d1effects_2.h >+include/wine/windows/d2d1effects_2.idl > include/wine/windows/d2dbasetypes.h > include/wine/windows/d2derr.h > include/wine/windows/d3d.h >@@ -320,6 +338,34 @@ include/wine/windows/dcommon.idl > include/wine/windows/dde.h > include/wine/windows/dde.rh > include/wine/windows/ddeml.h >+include/wine/windows/ddk/compstui.h >+include/wine/windows/ddk/csq.h >+include/wine/windows/ddk/d3dkmthk.h >+include/wine/windows/ddk/fltkernel.h >+include/wine/windows/ddk/hidclass.h >+include/wine/windows/ddk/hidpddi.h >+include/wine/windows/ddk/hidpi.h >+include/wine/windows/ddk/hidport.h >+include/wine/windows/ddk/hidsdi.h >+include/wine/windows/ddk/hidtypes.h >+include/wine/windows/ddk/imm.h >+include/wine/windows/ddk/mountmgr.h >+include/wine/windows/ddk/ndis.h >+include/wine/windows/ddk/ntddcdvd.h >+include/wine/windows/ddk/ntddk.h >+include/wine/windows/ddk/ntddser.h >+include/wine/windows/ddk/ntddtape.h >+include/wine/windows/ddk/ntifs.h >+include/wine/windows/ddk/usb.h >+include/wine/windows/ddk/usb100.h >+include/wine/windows/ddk/usb200.h >+include/wine/windows/ddk/usbdlib.h >+include/wine/windows/ddk/usbioctl.h >+include/wine/windows/ddk/usbiodef.h >+include/wine/windows/ddk/wdm.h >+include/wine/windows/ddk/winddiui.h >+include/wine/windows/ddk/winsplp.h >+include/wine/windows/ddk/wsk.h > include/wine/windows/ddraw.h > include/wine/windows/ddrawgdi.h > include/wine/windows/ddrawi.h >@@ -576,6 +622,9 @@ include/wine/windows/mcx.h > include/wine/windows/mediaerr.h > include/wine/windows/mediaobj.h > include/wine/windows/mediaobj.idl >+include/wine/windows/medparam.h >+include/wine/windows/medparam.idl >+include/wine/windows/memoryapi.h > include/wine/windows/metahost.h > include/wine/windows/metahost.idl > include/wine/windows/mfapi.h >@@ -599,7 +648,9 @@ include/wine/windows/mimeinfo.h > include/wine/windows/mimeinfo.idl > include/wine/windows/mimeole.h > include/wine/windows/mimeole.idl >+include/wine/windows/minidumpapiset.h > include/wine/windows/minmax.h >+include/wine/windows/minschannel.h > include/wine/windows/mlang.h > include/wine/windows/mlang.idl > include/wine/windows/mmc.h >@@ -611,6 +662,8 @@ include/wine/windows/mmreg.h > include/wine/windows/mmstream.h > include/wine/windows/mmstream.idl > include/wine/windows/mmsystem.h >+include/wine/windows/mpegtype.h >+include/wine/windows/mpegtype.idl > include/wine/windows/mprapi.h > include/wine/windows/mprerror.h > include/wine/windows/msacm.h >@@ -821,6 +874,7 @@ include/wine/windows/schannel.h > include/wine/windows/schemadef.h > include/wine/windows/schnlsp.h > include/wine/windows/sddl.h >+include/wine/windows/sdkddkver.h > include/wine/windows/secext.h > include/wine/windows/security.h > include/wine/windows/sensapi.h >@@ -845,12 +899,15 @@ include/wine/windows/shlobj.h > include/wine/windows/shlwapi.h > include/wine/windows/shobjidl.h > include/wine/windows/shobjidl.idl >+include/wine/windows/shobjidl_core.h >+include/wine/windows/shobjidl_core.idl > include/wine/windows/shtypes.h > include/wine/windows/shtypes.idl > include/wine/windows/sipbase.h > include/wine/windows/slerror.h > include/wine/windows/slpublic.h > include/wine/windows/snmp.h >+include/wine/windows/socketapi.h > include/wine/windows/softpub.h > include/wine/windows/spatialaudioclient.h > include/wine/windows/spatialaudioclient.idl >@@ -900,6 +957,8 @@ include/wine/windows/traffic.h > include/wine/windows/transact.h > include/wine/windows/transact.idl > include/wine/windows/trnjoi.idl >+include/wine/windows/trnlcl.idl >+include/wine/windows/trnobj.idl > include/wine/windows/twain.h > include/wine/windows/txcoord.h > include/wine/windows/txcoord.idl >@@ -932,6 +991,8 @@ include/wine/windows/ver.h > include/wine/windows/verrsrc.h > include/wine/windows/vfw.h > include/wine/windows/vfwmsgs.h >+include/wine/windows/videoacc.h >+include/wine/windows/videoacc.idl > include/wine/windows/virtdisk.h > include/wine/windows/vmr9.h > include/wine/windows/vmr9.idl >@@ -951,6 +1012,9 @@ include/wine/windows/wbemdisp.idl > include/wine/windows/wbemprov.h > include/wine/windows/wbemprov.idl > include/wine/windows/wct.h >+include/wine/windows/wdbgexts.h >+include/wine/windows/weakreference.h >+include/wine/windows/weakreference.idl > include/wine/windows/webservices.h > include/wine/windows/werapi.h > include/wine/windows/wfext.h >@@ -977,29 +1041,53 @@ include/wine/windows/windns.h > include/wine/windows/windot11.h > include/wine/windows/windows.devices.enumeration.h > include/wine/windows/windows.devices.enumeration.idl >+include/wine/windows/windows.devices.haptics.h >+include/wine/windows/windows.devices.haptics.idl >+include/wine/windows/windows.devices.power.h >+include/wine/windows/windows.devices.power.idl > include/wine/windows/windows.foundation.collections.h > include/wine/windows/windows.foundation.collections.idl > include/wine/windows/windows.foundation.h > include/wine/windows/windows.foundation.idl >+include/wine/windows/windows.foundation.metadata.h >+include/wine/windows/windows.foundation.metadata.idl >+include/wine/windows/windows.foundation.numerics.h >+include/wine/windows/windows.foundation.numerics.idl >+include/wine/windows/windows.gaming.input.custom.h >+include/wine/windows/windows.gaming.input.custom.idl > include/wine/windows/windows.gaming.input.forcefeedback.h > include/wine/windows/windows.gaming.input.forcefeedback.idl > include/wine/windows/windows.gaming.input.h > include/wine/windows/windows.gaming.input.idl >+include/wine/windows/windows.gaming.ui.h >+include/wine/windows/windows.gaming.ui.idl > include/wine/windows/windows.globalization.h > include/wine/windows/windows.globalization.idl > include/wine/windows/windows.h >+include/wine/windows/windows.media.closedcaptioning.h >+include/wine/windows/windows.media.closedcaptioning.idl > include/wine/windows/windows.media.devices.h > include/wine/windows/windows.media.devices.idl > include/wine/windows/windows.media.h > include/wine/windows/windows.media.idl >+include/wine/windows/windows.media.speechrecognition.h >+include/wine/windows/windows.media.speechrecognition.idl > include/wine/windows/windows.media.speechsynthesis.h > include/wine/windows/windows.media.speechsynthesis.idl >+include/wine/windows/windows.security.cryptography.h >+include/wine/windows/windows.security.cryptography.idl > include/wine/windows/windows.storage.streams.h > include/wine/windows/windows.storage.streams.idl > include/wine/windows/windows.system.h > include/wine/windows/windows.system.idl >+include/wine/windows/windows.system.power.h >+include/wine/windows/windows.system.power.idl >+include/wine/windows/windows.system.threading.h >+include/wine/windows/windows.system.threading.idl > include/wine/windows/windows.system.userprofile.h > include/wine/windows/windows.system.userprofile.idl >+include/wine/windows/windows.ui.h >+include/wine/windows/windows.ui.idl > include/wine/windows/windowscontracts.h > include/wine/windows/windowscontracts.idl > include/wine/windows/windowsx.h >@@ -1034,6 +1122,7 @@ include/wine/windows/wintab.h > include/wine/windows/wintabx.h > include/wine/windows/winternl.h > include/wine/windows/wintrust.h >+include/wine/windows/winusb.h > include/wine/windows/winuser.h > include/wine/windows/winuser.rh > include/wine/windows/winver.h >@@ -1061,6 +1150,7 @@ include/wine/windows/wmsdkidl.idl > include/wine/windows/wmsecure.h > include/wine/windows/wmsecure.idl > include/wine/windows/wnaspi32.h >+include/wine/windows/wofapi.h > include/wine/windows/wownt16.h > include/wine/windows/wownt32.h > include/wine/windows/wpcapi.h >@@ -1082,6 +1172,7 @@ include/wine/windows/wsdxmldom.h > include/wine/windows/wshisotp.h > include/wine/windows/wsipx.h > include/wine/windows/wsnwlink.h >+include/wine/windows/wspiapi.h > include/wine/windows/wtsapi32.h > include/wine/windows/wtypes.h > include/wine/windows/wtypes.idl >@@ -1113,38 +1204,9 @@ include/wine/windows/xpsobjectmodel.idl > include/wine/windows/xpsobjectmodel_1.h > include/wine/windows/xpsobjectmodel_1.idl > include/wine/windows/zmouse.h >-include/wine/windows/ddk/compstui.h >-include/wine/windows/ddk/csq.h >-include/wine/windows/ddk/d3dkmthk.h >-include/wine/windows/ddk/fltkernel.h >-include/wine/windows/ddk/hidclass.h >-include/wine/windows/ddk/hidpddi.h >-include/wine/windows/ddk/hidpi.h >-include/wine/windows/ddk/hidport.h >-include/wine/windows/ddk/hidsdi.h >-include/wine/windows/ddk/hidtypes.h >-include/wine/windows/ddk/imm.h >-include/wine/windows/ddk/mountmgr.h >-include/wine/windows/ddk/ndis.h >-include/wine/windows/ddk/ntddcdvd.h >-include/wine/windows/ddk/ntddk.h >-include/wine/windows/ddk/ntddser.h >-include/wine/windows/ddk/ntddtape.h >-include/wine/windows/ddk/ntifs.h >-include/wine/windows/ddk/usb.h >-include/wine/windows/ddk/usb100.h >-include/wine/windows/ddk/usb200.h >-include/wine/windows/ddk/usbdlib.h >-include/wine/windows/ddk/usbioctl.h >-include/wine/windows/ddk/usbiodef.h >-include/wine/windows/ddk/wdm.h >-include/wine/windows/ddk/winddiui.h >-include/wine/windows/ddk/winsplp.h >-include/wine/windows/ddk/wsk.h > lib/wine/%%WINEARCH%%-unix/acledit.dll.so > lib/wine/%%WINEARCH%%-unix/aclui.dll.so > lib/wine/%%WINEARCH%%-unix/activeds.dll.so >-lib/wine/%%WINEARCH%%-unix/activeds.tlb.so > lib/wine/%%WINEARCH%%-unix/actxprxy.dll.so > lib/wine/%%WINEARCH%%-unix/adsldp.dll.so > lib/wine/%%WINEARCH%%-unix/adsldpc.dll.so >@@ -1152,244 +1214,6 @@ lib/wine/%%WINEARCH%%-unix/advapi32.dll.so > lib/wine/%%WINEARCH%%-unix/advpack.dll.so > lib/wine/%%WINEARCH%%-unix/amsi.dll.so > lib/wine/%%WINEARCH%%-unix/amstream.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-appmodel-identity-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-appmodel-runtime-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-appmodel-runtime-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-appmodel-runtime-l1-1-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-apiquery-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-appcompat-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-appinit-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-atoms-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-bem-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-com-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-com-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-com-private-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-comm-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-console-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-console-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-console-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-console-l3-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-crt-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-crt-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-datetime-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-datetime-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-debug-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-debug-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-delayload-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-delayload-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-errorhandling-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-errorhandling-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-errorhandling-l1-1-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-errorhandling-l1-1-3.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-featurestaging-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-fibers-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-fibers-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-ansi-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-fromapp-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-l1-2-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-l1-2-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-l2-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-file-l2-1-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-handle-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-heap-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-heap-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-heap-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-heap-obsolete-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-interlocked-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-interlocked-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-io-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-io-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-job-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-job-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-kernel32-legacy-l1-1-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-kernel32-legacy-l1-1-5.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-kernel32-private-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-largeinteger-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-libraryloader-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-libraryloader-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-libraryloader-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-libraryloader-l1-2-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-libraryloader-l1-2-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-libraryloader-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-l1-2-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-l1-2-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-obsolete-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-obsolete-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-obsolete-l1-3-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localization-private-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-localregistry-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-memory-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-memory-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-memory-l1-1-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-memory-l1-1-3.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-memory-l1-1-4.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-misc-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-namedpipe-ansi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-namedpipe-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-namedpipe-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-namespace-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-normalization-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-path-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-privateprofile-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processenvironment-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processenvironment-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processthreads-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processthreads-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processthreads-l1-1-2.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processthreads-l1-1-3.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processtopology-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-processtopology-obsolete-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-profile-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-psapi-ansi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-psapi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-psapi-obsolete-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-psm-appnotify-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-quirks-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-realtime-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-realtime-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-registry-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-registry-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-registry-l2-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-registryuserspecific-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-rtlsupport-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-rtlsupport-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-shlwapi-legacy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-shutdown-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-sidebyside-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-string-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-string-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-string-obsolete-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-stringansi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-stringloader-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-synch-ansi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-synch-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-synch-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-synch-l1-2-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-sysinfo-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-sysinfo-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-sysinfo-l1-2-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-systemtopology-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-threadpool-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-threadpool-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-threadpool-private-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-timezone-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-toolhelp-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-url-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-util-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-version-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-version-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-version-private-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-versionansi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-windowserrorreporting-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-windowserrorreporting-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-error-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-error-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-errorprivate-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-registration-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-string-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-winrt-string-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-wow64-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-wow64-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-xstate-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-core-xstate-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-conio-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-convert-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-environment-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-filesystem-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-heap-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-locale-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-math-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-multibyte-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-private-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-process-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-runtime-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-stdio-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-string-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-time-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-crt-utility-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-devices-config-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-devices-config-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-devices-query-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-advapi32-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-advapi32-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-kernel32-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-normaliz-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-ole32-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-shell32-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-user32-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-downlevel-version-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-dx-d3dkmt-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-eventing-classicprovider-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-eventing-consumer-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-eventing-controller-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-eventing-legacy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-eventing-provider-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-eventlog-legacy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-gaming-tcui-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-gdi-dpiinfo-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-mm-joystick-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-mm-misc-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-mm-mme-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-mm-time-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-ntuser-dc-access-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-ntuser-rectangle-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-ntuser-sysparams-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-perf-legacy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-power-base-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-power-setting-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-rtcore-ntuser-private-l1-1-4.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-rtcore-ntuser-winevent-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-audit-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-base-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-base-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-base-private-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-credentials-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-cryptoapi-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-grouppolicy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-lsalookup-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-lsalookup-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-lsalookup-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-lsalookup-l2-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-lsapolicy-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-provider-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-sddl-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-security-systemfunctions-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-service-core-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-service-core-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-service-management-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-service-management-l2-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-service-private-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-service-winsvc-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-service-winsvc-l1-2-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shcore-obsolete-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shcore-scaling-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shcore-scaling-l1-1-1.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shcore-stream-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shcore-stream-winrt-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shcore-thread-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shell-shellcom-l1-1-0.dll.so >-lib/wine/%%WINEARCH%%-unix/api-ms-win-shell-shellfolders-l1-1-0.dll.so > lib/wine/%%WINEARCH%%-unix/apphelp.dll.so > lib/wine/%%WINEARCH%%-unix/appwiz.cpl.so > lib/wine/%%WINEARCH%%-unix/arp.exe.so >@@ -1406,7 +1230,6 @@ lib/wine/%%WINEARCH%%-unix/authz.dll.so > lib/wine/%%WINEARCH%%-unix/avicap32.dll.so > lib/wine/%%WINEARCH%%-unix/avicap32.so > lib/wine/%%WINEARCH%%-unix/avifil32.dll.so >-%%WINE32%%lib/wine/%%WINEARCH%%-unix/avifile.dll16.so > lib/wine/%%WINEARCH%%-unix/avrt.dll.so > lib/wine/%%WINEARCH%%-unix/bcrypt.dll.so > lib/wine/%%WINEARCH%%-unix/bcrypt.so >@@ -1418,6 +1241,7 @@ lib/wine/%%WINEARCH%%-unix/cabinet.dll.so > lib/wine/%%WINEARCH%%-unix/cacls.exe.so > lib/wine/%%WINEARCH%%-unix/cards.dll.so > lib/wine/%%WINEARCH%%-unix/cdosys.dll.so >+lib/wine/%%WINEARCH%%-unix/certutil.exe.so > lib/wine/%%WINEARCH%%-unix/cfgmgr32.dll.so > lib/wine/%%WINEARCH%%-unix/chcp.com.so > lib/wine/%%WINEARCH%%-unix/clock.exe.so >@@ -1445,6 +1269,7 @@ lib/wine/%%WINEARCH%%-unix/cryptdlg.dll.so > lib/wine/%%WINEARCH%%-unix/cryptdll.dll.so > lib/wine/%%WINEARCH%%-unix/cryptext.dll.so > lib/wine/%%WINEARCH%%-unix/cryptnet.dll.so >+lib/wine/%%WINEARCH%%-unix/cryptowinrt.dll.so > lib/wine/%%WINEARCH%%-unix/cryptsp.dll.so > lib/wine/%%WINEARCH%%-unix/cryptui.dll.so > lib/wine/%%WINEARCH%%-unix/cscript.exe.so >@@ -1524,6 +1349,7 @@ lib/wine/%%WINEARCH%%-unix/devenum.dll.so > lib/wine/%%WINEARCH%%-unix/dhcpcsvc.dll.so > lib/wine/%%WINEARCH%%-unix/dhcpcsvc6.dll.so > lib/wine/%%WINEARCH%%-unix/dhtmled.ocx.so >+lib/wine/%%WINEARCH%%-unix/diasymreader.dll.so > lib/wine/%%WINEARCH%%-unix/difxapi.dll.so > lib/wine/%%WINEARCH%%-unix/dinput.dll.so > lib/wine/%%WINEARCH%%-unix/dinput8.dll.so >@@ -1660,10 +1486,10 @@ lib/wine/%%WINEARCH%%-unix/hnetcfg.dll.so > lib/wine/%%WINEARCH%%-unix/hostname.exe.so > lib/wine/%%WINEARCH%%-unix/http.sys.so > lib/wine/%%WINEARCH%%-unix/httpapi.dll.so >+lib/wine/%%WINEARCH%%-unix/ia2comproxy.dll.so > lib/wine/%%WINEARCH%%-unix/icacls.exe.so > lib/wine/%%WINEARCH%%-unix/iccvid.dll.so > lib/wine/%%WINEARCH%%-unix/icinfo.exe.so >-lib/wine/%%WINEARCH%%-unix/icmp.dll.so > lib/wine/%%WINEARCH%%-unix/ieframe.dll.so > lib/wine/%%WINEARCH%%-unix/ieproxy.dll.so > lib/wine/%%WINEARCH%%-unix/iexplore.exe.so >@@ -1704,6 +1530,7 @@ lib/wine/%%WINEARCH%%-unix/libadvapi32.a > lib/wine/%%WINEARCH%%-unix/libadvpack.a > lib/wine/%%WINEARCH%%-unix/libatl.a > lib/wine/%%WINEARCH%%-unix/libatl100.a >+lib/wine/%%WINEARCH%%-unix/libatl110.a > lib/wine/%%WINEARCH%%-unix/libatl80.a > lib/wine/%%WINEARCH%%-unix/libatlthunk.a > lib/wine/%%WINEARCH%%-unix/libavicap32.a >@@ -1770,12 +1597,10 @@ lib/wine/%%WINEARCH%%-unix/libdxgi.a > lib/wine/%%WINEARCH%%-unix/libdxguid.a > lib/wine/%%WINEARCH%%-unix/libdxva2.a > lib/wine/%%WINEARCH%%-unix/libevr.a >-lib/wine/%%WINEARCH%%-unix/libfaudio.a > lib/wine/%%WINEARCH%%-unix/libfaultrep.a > lib/wine/%%WINEARCH%%-unix/libgdi32.a > lib/wine/%%WINEARCH%%-unix/libgdiplus.a > lib/wine/%%WINEARCH%%-unix/libglu32.a >-lib/wine/%%WINEARCH%%-unix/libgsm.a > lib/wine/%%WINEARCH%%-unix/libhal.a > lib/wine/%%WINEARCH%%-unix/libhid.a > lib/wine/%%WINEARCH%%-unix/libhidclass.a >@@ -1788,24 +1613,20 @@ lib/wine/%%WINEARCH%%-unix/libimagehlp.a > lib/wine/%%WINEARCH%%-unix/libimm32.a > lib/wine/%%WINEARCH%%-unix/libinetcomm.a > lib/wine/%%WINEARCH%%-unix/libiphlpapi.a >-lib/wine/%%WINEARCH%%-unix/libjpeg.a > lib/wine/%%WINEARCH%%-unix/libjsproxy.a >-lib/wine/%%WINEARCH%%-unix/libjxr.a > %%WINE32%%lib/wine/%%WINEARCH%%-unix/libkernel.a > lib/wine/%%WINEARCH%%-unix/libkernel32.a > lib/wine/%%WINEARCH%%-unix/libkernelbase.a >-lib/wine/%%WINEARCH%%-unix/liblcms2.a > lib/wine/%%WINEARCH%%-unix/libloadperf.a > lib/wine/%%WINEARCH%%-unix/liblz32.a > lib/wine/%%WINEARCH%%-unix/libmapi32.a > lib/wine/%%WINEARCH%%-unix/libmf.a >-lib/wine/%%WINEARCH%%-unix/libmfmediaengine.a > lib/wine/%%WINEARCH%%-unix/libmfplat.a > lib/wine/%%WINEARCH%%-unix/libmfplay.a > lib/wine/%%WINEARCH%%-unix/libmfreadwrite.a >+lib/wine/%%WINEARCH%%-unix/libmfsrcsnk.a > lib/wine/%%WINEARCH%%-unix/libmfuuid.a > lib/wine/%%WINEARCH%%-unix/libmlang.a >-lib/wine/%%WINEARCH%%-unix/libmpg123.a > lib/wine/%%WINEARCH%%-unix/libmpr.a > lib/wine/%%WINEARCH%%-unix/libmprapi.a > lib/wine/%%WINEARCH%%-unix/libmsacm32.a >@@ -1816,6 +1637,7 @@ lib/wine/%%WINEARCH%%-unix/libmshtml.a > lib/wine/%%WINEARCH%%-unix/libmsi.a > lib/wine/%%WINEARCH%%-unix/libmsimg32.a > lib/wine/%%WINEARCH%%-unix/libmspatcha.a >+lib/wine/%%WINEARCH%%-unix/libmsvcp140.a > lib/wine/%%WINEARCH%%-unix/libmsvcr100.a > lib/wine/%%WINEARCH%%-unix/libmsvcr110.a > lib/wine/%%WINEARCH%%-unix/libmsvcr120.a >@@ -1849,7 +1671,6 @@ lib/wine/%%WINEARCH%%-unix/libolepro32.a > lib/wine/%%WINEARCH%%-unix/libolesvr32.a > lib/wine/%%WINEARCH%%-unix/libopengl32.a > lib/wine/%%WINEARCH%%-unix/libpdh.a >-lib/wine/%%WINEARCH%%-unix/libpng.a > lib/wine/%%WINEARCH%%-unix/libpowrprof.a > lib/wine/%%WINEARCH%%-unix/libprntvpt.a > lib/wine/%%WINEARCH%%-unix/libpropsys.a >@@ -1864,6 +1685,7 @@ lib/wine/%%WINEARCH%%-unix/librpcrt4.a > lib/wine/%%WINEARCH%%-unix/librsaenh.a > lib/wine/%%WINEARCH%%-unix/librtutils.a > lib/wine/%%WINEARCH%%-unix/librtworkq.a >+lib/wine/%%WINEARCH%%-unix/libscrrun.a > lib/wine/%%WINEARCH%%-unix/libsechost.a > lib/wine/%%WINEARCH%%-unix/libsecur32.a > lib/wine/%%WINEARCH%%-unix/libsensapi.a >@@ -1884,7 +1706,6 @@ lib/wine/%%WINEARCH%%-unix/libstrmiids.a > lib/wine/%%WINEARCH%%-unix/libsxs.a > lib/wine/%%WINEARCH%%-unix/libt2embed.a > lib/wine/%%WINEARCH%%-unix/libtapi32.a >-lib/wine/%%WINEARCH%%-unix/libtiff.a > lib/wine/%%WINEARCH%%-unix/libucrtbase.a > lib/wine/%%WINEARCH%%-unix/libuiautomationcore.a > lib/wine/%%WINEARCH%%-unix/libunicows.a >@@ -1896,6 +1717,7 @@ lib/wine/%%WINEARCH%%-unix/libuserenv.a > lib/wine/%%WINEARCH%%-unix/libusp10.a > lib/wine/%%WINEARCH%%-unix/libuuid.a > lib/wine/%%WINEARCH%%-unix/libuxtheme.a >+lib/wine/%%WINEARCH%%-unix/libvcruntime140.a > lib/wine/%%WINEARCH%%-unix/libvdmdbg.a > lib/wine/%%WINEARCH%%-unix/libversion.a > lib/wine/%%WINEARCH%%-unix/libvulkan-1.a >@@ -1932,16 +1754,12 @@ lib/wine/%%WINEARCH%%-unix/libwsnmp32.a > lib/wine/%%WINEARCH%%-unix/libwsock32.a > lib/wine/%%WINEARCH%%-unix/libwtsapi32.a > lib/wine/%%WINEARCH%%-unix/libxinput.a >-lib/wine/%%WINEARCH%%-unix/libxml2.a > lib/wine/%%WINEARCH%%-unix/libxmllite.a >-lib/wine/%%WINEARCH%%-unix/libxslt.a >-lib/wine/%%WINEARCH%%-unix/libz.a >-lib/wine/%%WINEARCH%%-unix/light.msstyles.so > lib/wine/%%WINEARCH%%-unix/loadperf.dll.so > lib/wine/%%WINEARCH%%-unix/localspl.dll.so >+lib/wine/%%WINEARCH%%-unix/localspl.so > lib/wine/%%WINEARCH%%-unix/localui.dll.so > lib/wine/%%WINEARCH%%-unix/lodctr.exe.so >-lib/wine/%%WINEARCH%%-unix/lz32.dll.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/lzexpand.dll16.so > lib/wine/%%WINEARCH%%-unix/mapi32.dll.so > lib/wine/%%WINEARCH%%-unix/mapistub.dll.so >@@ -1952,11 +1770,11 @@ lib/wine/%%WINEARCH%%-unix/mciseq.dll.so > lib/wine/%%WINEARCH%%-unix/mciwave.dll.so > lib/wine/%%WINEARCH%%-unix/mf.dll.so > lib/wine/%%WINEARCH%%-unix/mf3216.dll.so >-lib/wine/%%WINEARCH%%-unix/mferror.dll.so > lib/wine/%%WINEARCH%%-unix/mfmediaengine.dll.so > lib/wine/%%WINEARCH%%-unix/mfplat.dll.so > lib/wine/%%WINEARCH%%-unix/mfplay.dll.so > lib/wine/%%WINEARCH%%-unix/mfreadwrite.dll.so >+lib/wine/%%WINEARCH%%-unix/mfsrcsnk.dll.so > lib/wine/%%WINEARCH%%-unix/mgmtapi.dll.so > lib/wine/%%WINEARCH%%-unix/midimap.dll.so > lib/wine/%%WINEARCH%%-unix/mlang.dll.so >@@ -1995,13 +1813,11 @@ lib/wine/%%WINEARCH%%-unix/msg711.acm.so > lib/wine/%%WINEARCH%%-unix/msgsm32.acm.so > lib/wine/%%WINEARCH%%-unix/mshta.exe.so > lib/wine/%%WINEARCH%%-unix/mshtml.dll.so >-lib/wine/%%WINEARCH%%-unix/mshtml.tlb.so > lib/wine/%%WINEARCH%%-unix/msi.dll.so > lib/wine/%%WINEARCH%%-unix/msidb.exe.so > lib/wine/%%WINEARCH%%-unix/msident.dll.so > lib/wine/%%WINEARCH%%-unix/msiexec.exe.so > lib/wine/%%WINEARCH%%-unix/msimg32.dll.so >-lib/wine/%%WINEARCH%%-unix/msimsg.dll.so > lib/wine/%%WINEARCH%%-unix/msimtf.dll.so > lib/wine/%%WINEARCH%%-unix/msinfo32.exe.so > lib/wine/%%WINEARCH%%-unix/msisip.dll.so >@@ -2026,6 +1842,8 @@ lib/wine/%%WINEARCH%%-unix/msvcp120.dll.so > lib/wine/%%WINEARCH%%-unix/msvcp120_app.dll.so > lib/wine/%%WINEARCH%%-unix/msvcp140.dll.so > lib/wine/%%WINEARCH%%-unix/msvcp140_1.dll.so >+lib/wine/%%WINEARCH%%-unix/msvcp140_2.dll.so >+lib/wine/%%WINEARCH%%-unix/msvcp140_atomic_wait.dll.so > lib/wine/%%WINEARCH%%-unix/msvcp60.dll.so > lib/wine/%%WINEARCH%%-unix/msvcp70.dll.so > lib/wine/%%WINEARCH%%-unix/msvcp71.dll.so >@@ -2069,7 +1887,6 @@ lib/wine/%%WINEARCH%%-unix/netutils.dll.so > lib/wine/%%WINEARCH%%-unix/newdev.dll.so > lib/wine/%%WINEARCH%%-unix/ngen.exe.so > lib/wine/%%WINEARCH%%-unix/ninput.dll.so >-lib/wine/%%WINEARCH%%-unix/normaliz.dll.so > lib/wine/%%WINEARCH%%-unix/notepad.exe.so > lib/wine/%%WINEARCH%%-unix/npmshtml.dll.so > lib/wine/%%WINEARCH%%-unix/npptools.dll.so >@@ -2108,6 +1925,7 @@ lib/wine/%%WINEARCH%%-unix/oleview.exe.so > lib/wine/%%WINEARCH%%-unix/opcservices.dll.so > %%OPENAL%%lib/wine/%%WINEARCH%%-unix/openal32.dll.so > lib/wine/%%WINEARCH%%-unix/opengl32.dll.so >+lib/wine/%%WINEARCH%%-unix/opengl32.so > lib/wine/%%WINEARCH%%-unix/packager.dll.so > lib/wine/%%WINEARCH%%-unix/pdh.dll.so > lib/wine/%%WINEARCH%%-unix/photometadatahandler.dll.so >@@ -2174,17 +1992,16 @@ lib/wine/%%WINEARCH%%-unix/secedit.exe.so > lib/wine/%%WINEARCH%%-unix/sechost.dll.so > lib/wine/%%WINEARCH%%-unix/secur32.dll.so > lib/wine/%%WINEARCH%%-unix/secur32.so >-lib/wine/%%WINEARCH%%-unix/security.dll.so > lib/wine/%%WINEARCH%%-unix/sensapi.dll.so > lib/wine/%%WINEARCH%%-unix/serialui.dll.so > lib/wine/%%WINEARCH%%-unix/servicemodelreg.exe.so > lib/wine/%%WINEARCH%%-unix/services.exe.so > lib/wine/%%WINEARCH%%-unix/setupapi.dll.so >+lib/wine/%%WINEARCH%%-unix/setx.exe.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/setupx.dll16.so > lib/wine/%%WINEARCH%%-unix/sfc.dll.so > lib/wine/%%WINEARCH%%-unix/sfc_os.dll.so > lib/wine/%%WINEARCH%%-unix/shcore.dll.so >-lib/wine/%%WINEARCH%%-unix/shdoclc.dll.so > lib/wine/%%WINEARCH%%-unix/shdocvw.dll.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/shell.dll16.so > lib/wine/%%WINEARCH%%-unix/shell32.dll.so >@@ -2203,8 +2020,6 @@ lib/wine/%%WINEARCH%%-unix/srclient.dll.so > lib/wine/%%WINEARCH%%-unix/srvcli.dll.so > lib/wine/%%WINEARCH%%-unix/sspicli.dll.so > lib/wine/%%WINEARCH%%-unix/start.exe.so >-lib/wine/%%WINEARCH%%-unix/stdole2.tlb.so >-lib/wine/%%WINEARCH%%-unix/stdole32.tlb.so > lib/wine/%%WINEARCH%%-unix/sti.dll.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/storage.dll16.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/stress.dll16.so >@@ -2245,7 +2060,6 @@ lib/wine/%%WINEARCH%%-unix/usbd.sys.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/user.exe16.so > lib/wine/%%WINEARCH%%-unix/user32.dll.so > lib/wine/%%WINEARCH%%-unix/userenv.dll.so >-lib/wine/%%WINEARCH%%-unix/usp10.dll.so > lib/wine/%%WINEARCH%%-unix/utildll.dll.so > lib/wine/%%WINEARCH%%-unix/uxtheme.dll.so > lib/wine/%%WINEARCH%%-unix/vbscript.dll.so >@@ -2294,9 +2108,12 @@ lib/wine/%%WINEARCH%%-unix/win32u.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/windebug.dll16.so > lib/wine/%%WINEARCH%%-unix/windows.devices.enumeration.dll.so > lib/wine/%%WINEARCH%%-unix/windows.gaming.input.dll.so >+lib/wine/%%WINEARCH%%-unix/windows.gaming.ui.gamebar.dll.so > lib/wine/%%WINEARCH%%-unix/windows.globalization.dll.so > lib/wine/%%WINEARCH%%-unix/windows.media.devices.dll.so >+lib/wine/%%WINEARCH%%-unix/windows.media.dll.so > lib/wine/%%WINEARCH%%-unix/windows.media.speech.dll.so >+lib/wine/%%WINEARCH%%-unix/windows.networking.dll.so > lib/wine/%%WINEARCH%%-unix/windowscodecs.dll.so > lib/wine/%%WINEARCH%%-unix/windowscodecsext.dll.so > lib/wine/%%WINEARCH%%-unix/wineboot.exe.so >@@ -2342,14 +2159,13 @@ lib/wine/%%WINEARCH%%-unix/winsta.dll.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/wintab.dll16.so > lib/wine/%%WINEARCH%%-unix/wintab32.dll.so > lib/wine/%%WINEARCH%%-unix/wintrust.dll.so >+lib/wine/%%WINEARCH%%-unix/wintypes.dll.so > lib/wine/%%WINEARCH%%-unix/winusb.dll.so > lib/wine/%%WINEARCH%%-unix/winver.exe.so > lib/wine/%%WINEARCH%%-unix/wlanapi.dll.so > lib/wine/%%WINEARCH%%-unix/wlanui.dll.so > lib/wine/%%WINEARCH%%-unix/wldap32.dll.so >-lib/wine/%%WINEARCH%%-unix/wldap32.so > lib/wine/%%WINEARCH%%-unix/wmasf.dll.so >-lib/wine/%%WINEARCH%%-unix/wmi.dll.so > lib/wine/%%WINEARCH%%-unix/wmic.exe.so > lib/wine/%%WINEARCH%%-unix/wmiutils.dll.so > lib/wine/%%WINEARCH%%-unix/wmp.dll.so >@@ -2357,6 +2173,7 @@ lib/wine/%%WINEARCH%%-unix/wmphoto.dll.so > lib/wine/%%WINEARCH%%-unix/wmplayer.exe.so > lib/wine/%%WINEARCH%%-unix/wmvcore.dll.so > lib/wine/%%WINEARCH%%-unix/wnaspi32.dll.so >+lib/wine/%%WINEARCH%%-unix/wofutil.dll.so > lib/wine/%%WINEARCH%%-unix/wordpad.exe.so > %%WINE32%%lib/wine/%%WINEARCH%%-unix/wow32.dll.so > %%WINE64%%lib/wine/%%WINEARCH%%-unix/wow64.dll.so >@@ -2419,12 +2236,14 @@ lib/wine/%%WINEARCH%%-unix/xinput1_2.dll.so > lib/wine/%%WINEARCH%%-unix/xinput1_3.dll.so > lib/wine/%%WINEARCH%%-unix/xinput1_4.dll.so > lib/wine/%%WINEARCH%%-unix/xinput9_1_0.dll.so >+lib/wine/%%WINEARCH%%-unix/xinputuap.dll.so > lib/wine/%%WINEARCH%%-unix/xmllite.dll.so > lib/wine/%%WINEARCH%%-unix/xolehlp.dll.so > lib/wine/%%WINEARCH%%-unix/xpsprint.dll.so > lib/wine/%%WINEARCH%%-unix/xpssvcs.dll.so > lib/wine/%%WINEARCH%%-windows/acledit.dll > lib/wine/%%WINEARCH%%-windows/aclui.dll >+lib/wine/%%WINEARCH%%-windows/apisetschema.dll > lib/wine/%%WINEARCH%%-windows/activeds.dll > lib/wine/%%WINEARCH%%-windows/activeds.tlb > lib/wine/%%WINEARCH%%-windows/actxprxy.dll >@@ -2698,6 +2517,7 @@ lib/wine/%%WINEARCH%%-windows/cabinet.dll > lib/wine/%%WINEARCH%%-windows/cacls.exe > lib/wine/%%WINEARCH%%-windows/cards.dll > lib/wine/%%WINEARCH%%-windows/cdosys.dll >+lib/wine/%%WINEARCH%%-windows/certutil.exe > lib/wine/%%WINEARCH%%-windows/cfgmgr32.dll > lib/wine/%%WINEARCH%%-windows/chcp.com > lib/wine/%%WINEARCH%%-windows/clock.exe >@@ -2724,6 +2544,7 @@ lib/wine/%%WINEARCH%%-windows/cryptdlg.dll > lib/wine/%%WINEARCH%%-windows/cryptdll.dll > lib/wine/%%WINEARCH%%-windows/cryptext.dll > lib/wine/%%WINEARCH%%-windows/cryptnet.dll >+lib/wine/%%WINEARCH%%-windows/cryptowinrt.dll > lib/wine/%%WINEARCH%%-windows/cryptsp.dll > lib/wine/%%WINEARCH%%-windows/cryptui.dll > lib/wine/%%WINEARCH%%-windows/cscript.exe >@@ -2802,6 +2623,7 @@ lib/wine/%%WINEARCH%%-windows/devenum.dll > lib/wine/%%WINEARCH%%-windows/dhcpcsvc.dll > lib/wine/%%WINEARCH%%-windows/dhcpcsvc6.dll > lib/wine/%%WINEARCH%%-windows/dhtmled.ocx >+lib/wine/%%WINEARCH%%-windows/diasymreader.dll > lib/wine/%%WINEARCH%%-windows/difxapi.dll > lib/wine/%%WINEARCH%%-windows/dinput.dll > lib/wine/%%WINEARCH%%-windows/dinput8.dll >@@ -2853,58 +2675,6 @@ lib/wine/%%WINEARCH%%-windows/evr.dll > lib/wine/%%WINEARCH%%-windows/expand.exe > lib/wine/%%WINEARCH%%-windows/explorer.exe > lib/wine/%%WINEARCH%%-windows/explorerframe.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-authz-context-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-domainjoin-netjoin-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-dwmapi-ext-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-dc-create-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-dc-create-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-dc-l1-2-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-devcaps-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-draw-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-draw-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-font-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-font-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-gdi-render-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-kernel32-package-current-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-kernel32-package-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-dialogbox-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-draw-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-gui-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-gui-l1-3-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-keyboard-l1-3-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-message-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-message-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-misc-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-misc-l1-2-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-misc-l1-5-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-mouse-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-private-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-private-l1-3-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-window-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-window-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-window-l1-1-4.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-windowclass-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ntuser-windowclass-l1-1-1.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-oleacc-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-ras-rasapi32-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-gdi-object-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-security-credui-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-security-cryptui-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-shell-comctl32-init-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-shell-comdlg32-l1-1-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-shell-shell32-l1-2-0.dll >-lib/wine/%%WINEARCH%%-windows/ext-ms-win-uxtheme-themes-l1-1-0.dll > lib/wine/%%WINEARCH%%-windows/extrac32.exe > lib/wine/%%WINEARCH%%-windows/faultrep.dll > lib/wine/%%WINEARCH%%-windows/fc.exe >@@ -2936,6 +2706,7 @@ lib/wine/%%WINEARCH%%-windows/hnetcfg.dll > lib/wine/%%WINEARCH%%-windows/hostname.exe > lib/wine/%%WINEARCH%%-windows/http.sys > lib/wine/%%WINEARCH%%-windows/httpapi.dll >+lib/wine/%%WINEARCH%%-windows/ia2comproxy.dll > lib/wine/%%WINEARCH%%-windows/icacls.exe > lib/wine/%%WINEARCH%%-windows/iccvid.dll > lib/wine/%%WINEARCH%%-windows/icinfo.exe >@@ -2994,6 +2765,7 @@ lib/wine/%%WINEARCH%%-windows/mfmediaengine.dll > lib/wine/%%WINEARCH%%-windows/mfplat.dll > lib/wine/%%WINEARCH%%-windows/mfplay.dll > lib/wine/%%WINEARCH%%-windows/mfreadwrite.dll >+lib/wine/%%WINEARCH%%-windows/mfsrcsnk.dll > lib/wine/%%WINEARCH%%-windows/mgmtapi.dll > lib/wine/%%WINEARCH%%-windows/midimap.dll > lib/wine/%%WINEARCH%%-windows/mlang.dll >@@ -3061,6 +2833,8 @@ lib/wine/%%WINEARCH%%-windows/msvcp120.dll > lib/wine/%%WINEARCH%%-windows/msvcp120_app.dll > lib/wine/%%WINEARCH%%-windows/msvcp140.dll > lib/wine/%%WINEARCH%%-windows/msvcp140_1.dll >+lib/wine/%%WINEARCH%%-windows/msvcp140_2.dll >+lib/wine/%%WINEARCH%%-windows/msvcp140_atomic_wait.dll > lib/wine/%%WINEARCH%%-windows/msvcp60.dll > lib/wine/%%WINEARCH%%-windows/msvcp70.dll > lib/wine/%%WINEARCH%%-windows/msvcp71.dll >@@ -3322,9 +3096,12 @@ lib/wine/%%WINEARCH%%-windows/win32u.dll > %%WINE32%%lib/wine/%%WINEARCH%%-windows/windebug.dll16 > lib/wine/%%WINEARCH%%-windows/windows.devices.enumeration.dll > lib/wine/%%WINEARCH%%-windows/windows.gaming.input.dll >+lib/wine/%%WINEARCH%%-windows/windows.gaming.ui.gamebar.dll > lib/wine/%%WINEARCH%%-windows/windows.globalization.dll > lib/wine/%%WINEARCH%%-windows/windows.media.devices.dll >+lib/wine/%%WINEARCH%%-windows/windows.media.dll > lib/wine/%%WINEARCH%%-windows/windows.media.speech.dll >+lib/wine/%%WINEARCH%%-windows/windows.networking.dll > lib/wine/%%WINEARCH%%-windows/windowscodecs.dll > lib/wine/%%WINEARCH%%-windows/windowscodecsext.dll > lib/wine/%%WINEARCH%%-windows/wineboot.exe >@@ -3381,6 +3158,7 @@ lib/wine/%%WINEARCH%%-windows/wmphoto.dll > lib/wine/%%WINEARCH%%-windows/wmplayer.exe > lib/wine/%%WINEARCH%%-windows/wmvcore.dll > lib/wine/%%WINEARCH%%-windows/wnaspi32.dll >+lib/wine/%%WINEARCH%%-windows/wofutil.dll > lib/wine/%%WINEARCH%%-windows/wordpad.exe > %%WINE32%%lib/wine/%%WINEARCH%%-windows/wow32.dll > %%WINE64%%lib/wine/%%WINEARCH%%-windows/wow64.dll >@@ -3441,10 +3219,12 @@ lib/wine/%%WINEARCH%%-windows/xinput1_2.dll > lib/wine/%%WINEARCH%%-windows/xinput1_3.dll > lib/wine/%%WINEARCH%%-windows/xinput1_4.dll > lib/wine/%%WINEARCH%%-windows/xinput9_1_0.dll >+lib/wine/%%WINEARCH%%-windows/xinputuap.dll > lib/wine/%%WINEARCH%%-windows/xmllite.dll > lib/wine/%%WINEARCH%%-windows/xolehlp.dll > lib/wine/%%WINEARCH%%-windows/xpsprint.dll > lib/wine/%%WINEARCH%%-windows/xpssvcs.dll >+libdata/ldconfig/wine > %%WINE32%%man/de.UTF-8/man1/wine.1.gz > man/de.UTF-8/man1/winemaker.1.gz > man/de.UTF-8/man1/wineserver.1.gz >@@ -3475,6 +3255,62 @@ man/man1/wmc.1.gz > man/man1/wrc.1.gz > %%WINE32%%man/pl.UTF-8/man1/wine.1.gz > share/applications/wine.desktop >+%%DATADIR%%/fonts/coue1255.fon >+%%DATADIR%%/fonts/coue1256.fon >+%%DATADIR%%/fonts/coue1257.fon >+%%DATADIR%%/fonts/coure.fon >+%%DATADIR%%/fonts/couree.fon >+%%DATADIR%%/fonts/coureg.fon >+%%DATADIR%%/fonts/courer.fon >+%%DATADIR%%/fonts/couret.fon >+%%DATADIR%%/fonts/cvgasys.fon >+%%DATADIR%%/fonts/hvgasys.fon >+%%DATADIR%%/fonts/jsmalle.fon >+%%DATADIR%%/fonts/jvgafix.fon >+%%DATADIR%%/fonts/jvgasys.fon >+%%DATADIR%%/fonts/marlett.ttf >+%%DATADIR%%/fonts/smae1255.fon >+%%DATADIR%%/fonts/smae1256.fon >+%%DATADIR%%/fonts/smae1257.fon >+%%DATADIR%%/fonts/smalle.fon >+%%DATADIR%%/fonts/smallee.fon >+%%DATADIR%%/fonts/smalleg.fon >+%%DATADIR%%/fonts/smaller.fon >+%%DATADIR%%/fonts/smallet.fon >+%%DATADIR%%/fonts/ssee1255.fon >+%%DATADIR%%/fonts/ssee1256.fon >+%%DATADIR%%/fonts/ssee1257.fon >+%%DATADIR%%/fonts/ssee874.fon >+%%DATADIR%%/fonts/ssef1255.fon >+%%DATADIR%%/fonts/ssef1256.fon >+%%DATADIR%%/fonts/ssef1257.fon >+%%DATADIR%%/fonts/ssef874.fon >+%%DATADIR%%/fonts/sserife.fon >+%%DATADIR%%/fonts/sserifee.fon >+%%DATADIR%%/fonts/sserifeg.fon >+%%DATADIR%%/fonts/sserifer.fon >+%%DATADIR%%/fonts/sserifet.fon >+%%DATADIR%%/fonts/sseriff.fon >+%%DATADIR%%/fonts/sseriffe.fon >+%%DATADIR%%/fonts/sseriffg.fon >+%%DATADIR%%/fonts/sseriffr.fon >+%%DATADIR%%/fonts/sserifft.fon >+%%DATADIR%%/fonts/svgasys.fon >+%%DATADIR%%/fonts/symbol.ttf >+%%DATADIR%%/fonts/tahoma.ttf >+%%DATADIR%%/fonts/tahomabd.ttf >+%%DATADIR%%/fonts/vgafix.fon >+%%DATADIR%%/fonts/vgas1255.fon >+%%DATADIR%%/fonts/vgas1256.fon >+%%DATADIR%%/fonts/vgas1257.fon >+%%DATADIR%%/fonts/vgas874.fon >+%%DATADIR%%/fonts/vgasys.fon >+%%DATADIR%%/fonts/vgasyse.fon >+%%DATADIR%%/fonts/vgasysg.fon >+%%DATADIR%%/fonts/vgasysr.fon >+%%DATADIR%%/fonts/vgasyst.fon >+%%DATADIR%%/fonts/webdings.ttf >+%%DATADIR%%/fonts/wingding.ttf > %%DATADIR%%/nls/c_037.nls > %%DATADIR%%/nls/c_10000.nls > %%DATADIR%%/nls/c_10001.nls >@@ -3544,6 +3380,7 @@ share/applications/wine.desktop > %%DATADIR%%/nls/c_949.nls > %%DATADIR%%/nls/c_950.nls > %%DATADIR%%/nls/l_intl.nls >+%%DATADIR%%/nls/locale.nls > %%DATADIR%%/nls/normidna.nls > %%DATADIR%%/nls/normnfc.nls > %%DATADIR%%/nls/normnfd.nls >@@ -3551,11 +3388,6 @@ share/applications/wine.desktop > %%DATADIR%%/nls/normnfkd.nls > %%DATADIR%%/nls/sortdefault.nls > %%WINE64%%%%DATADIR%%/pkg32.sh >-%%PORTDOCS%%%%DOCSDIR%%/ANNOUNCE >-%%PORTDOCS%%%%DOCSDIR%%/AUTHORS >-%%PORTDOCS%%%%DOCSDIR%%/README >-%%PORTDOCS%%%%DOCSDIR%%/README.winedbg >-%%PORTDOCS%%%%DOCSDIR%%/README.winedump > %%X11%%%%DATADIR%%/fonts/coue1255.fon > %%X11%%%%DATADIR%%/fonts/coue1256.fon > %%X11%%%%DATADIR%%/fonts/coue1257.fon
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 268691
:
239175
|
240375
|
242050
|
242054