diff --git a/tools/windows_packaging/README b/tools/windows_packaging/README
deleted file mode 100644
index 4a766685c5..0000000000
--- a/tools/windows_packaging/README
+++ /dev/null
@@ -1,150 +0,0 @@
-Building Ardour for Windows
-
-The windows build is compiled and tested with the MinGW compiler that is
-packaged in Fedora, Currently using Fedora 19. There are many cross compiled
-"mingw" libraries that Ardour requires that are available on Fedora but
-not all are yet.
-
-
-Prerequisites
-
-For setting up the required packages to build Ardour refer to the README
-file located at https://github.com/mojofunk/fedora-mingw-ardour
-
-
-Configuring
-
-After all the necessary packages are installed the next step is to call
-one of the configure scripts configure-debug.sh or configure-release.sh.
-
-The configure-debug.sh script will enable debugging support and install
-the tests to the package directory. It will also mean the GDB debugger
-is packaged.
-
-The configure-release.sh is intended for releases only, none of the tests
-will be built and all the binaries will be optimized and stripped.
-
-These scripts both source the mingw-env.sh script to setup the appropriate
-environment variables and then call waf with a specific set of parameters
-that are appropriate to configure for the windows build.
-
-There is also configure-distcc-debug.sh and configure-distcc-release.sh that
-configure to use distcc for building.
-
-Building
-
-After the build is configured the waf.sh script is used to build the Ardour
-application and all necessary libraries. The waf.sh script is not strictly
-needed, it just saves having to change working directories.
-
-
-Packaging
-
-When the build is successful the package.sh script will call waf install
-and then move some of the installed files to appropriate locations for a
-windows executable. This could probably be done in the waf scripts specifically
-for the windows build but I felt it simpler to do it in the packaging script
-for now.
-
---------- NOTE --------------------
-
-package_win32.sh is an updated/extended version of package.sh from Valeriy. It
-should probably be merged with package.sh at some point. It uses a number of
-additional resources located under mingw64/
-
------------------------------------
-
-The packaging script then copies the JACK deamon and all the required mingw
-shared libraries from the host system into the packaging directory. The
-shared libraries or dll's are placed in the same directory as the Ardour
-executable so they are found at runtime.
-
-Once the package.sh script has been run then the package directory located
-in the Ardour source root directory will contain everything necessary to run
-the Ardour executable.
-
-The make-installer.sh script is only really relevant when configure-release.sh
-has been used to configure the build. The script creates a basic and little
-tested windows installer for Ardour using the Nullsoft Scriptable Installer
-System(NSIS).
-
-
-Running
-
-The Ardour windows binary is intended to be run and tested on windows. Testing
-is mainly performed using Windows XP, but should work on Vista/7. It is only
-a 32bit binary at the moment but that may change with mingw64.
-
-The binary does not run successfully under WINE but that may change with updates
-and or bug fixes.
-
-When running Ardour for debugging purposes it is best to start the jack server
-in a separate terminal(Command Prompt) before starting Ardour so that they are
-not both writing to the same terminal. This will probably be fixed at some point
-so when jackd is started by Ardour the output is redirected etc.
-
-The cptovmshare.sh script will copy the package to a directory specified in the
-ARDOUR_VM_SHARE_DIR for testing in a virtual machine.
-
-
-Testing
-
-When configured for debugging there are a number of test programs(prefixed with
-test_) included in the package.
-
-The tests for libpbd, libevoral and libardour can be run under wine from the
-windows packaging directory using the wine-*-tests.sh scripts
-
-Debugging
-
-Ardour has some verbose logging/debugging output that can be useful that is used
-with the -D option.
-
-When configured for debugging the package contains gdb along with a .gdbinit
-file to automatically set the source directory so that the "list" gdb command
-will show the source code corresponding to the current stack frame.
-
-New versions of gdb will not load a .gdbinit file unless it is located in the directory
-set in the HOME environment variable and auto-load safe-path is set appropriately.
-
-So the gdbinit_home file needs to be moved to directory set in %USERPROFILE% and
-gdb started via gdb.bat for source file listing to work.
-
-The gdb batch scripts cannot be used if the package directory is on a network share
-so the package will need to be copied to a local drive first.
-
-When starting gdb using gdb.bat the Ardour executable needs to be set as the program
-to be debugged with the "file" command
-
-e.g (gdb) file ardour-3.5.exe
-
-You can then set a break point at main() with the "break" command as usual
-
-e.g (gdb) break main
-
-To set a breakpoint in a dll/shared library like libardour you need to wait for
-the symbols to be loaded which only occurs once the program has been executed using
-the "run" command
-
-You can set a breakpoint at a function
-
-e.g break `Somenamespace::somepartialsymbolname + tab to list symbols
-
-then remove ` to set the breakpoint.
-
-If you press tab with when there are thousands of possible matching symbols be
-prepared to wait a long time(this can also cause gdb to use a lot of memory).
-For this reason I prefer to set breakpoints by specifying the source file and line
-number.
-
-e.g (gdb) break audiosource.cc:976
-
-using "catch throw" or "catch catch" can be useful to break at points where exceptions
-are thrown or caught.
-
-They are a number of glib debugging options see
-
-http://developer.gnome.org/glib/2.30/glib-running.html
-
-use $ set G_DEBUG=fatal_warnings to get backtrace
-
diff --git a/tools/windows_packaging/ardour.nsi b/tools/windows_packaging/ardour.nsi
deleted file mode 100644
index 3bfcc050b3..0000000000
--- a/tools/windows_packaging/ardour.nsi
+++ /dev/null
@@ -1,123 +0,0 @@
-#!Nsis Installer Command Script
-#
-# This is an NSIS Installer Command Script generated automatically
-# by the Fedora nsiswrapper program. For more information see:
-#
-# http://fedoraproject.org/wiki/MinGW
-#
-# To build an installer from the script you would normally do:
-#
-# makensis this_script
-#
-# which will generate the output file 'installer.exe' which is a Windows
-# installer containing your program.
-
-SetCompressor /SOLID lzma
-SetCompressorDictSize 32
-
-!include MUI.nsh
-
-!define MUI_ABORTWARNING
-!define MUI_ICON ..\icons\icon\ardour.ico
-!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
-;!define MUI_HEADERIMAGE
-;!define MUI_HEADERIMAGE_BITMAP header.bmp
-;!define MUI_WELCOMEFINISHPAGE_BITMAP welcomefinish.bmp
-;!define MUI_COMPONENTSPAGE_SMALLDESC
-
-; Installer pages
-!insertmacro MUI_PAGE_WELCOME
-
-LicenseForceSelection off
-
-!define MUI_LICENSEPAGE_BUTTON "$(^NextBtn)"
-!define MUI_LICENSEPAGE_TEXT_BOTTOM "$(LICENSE_BOTTOM_TEXT)"
-!insertmacro MUI_PAGE_LICENSE ..\COPYING
-
-!insertmacro MUI_PAGE_DIRECTORY
-
-!insertmacro MUI_PAGE_INSTFILES
-
-!define MUI_FINISHPAGE_RUN "$INSTDIR\Ardour-3.0.exe"
-!insertmacro MUI_PAGE_FINISH
-
-; Uninstaller pages
-!insertmacro MUI_UNPAGE_CONFIRM
-
-!insertmacro MUI_UNPAGE_INSTFILES
-ShowUninstDetails hide
-!insertmacro MUI_UNPAGE_FINISH
-
-!insertmacro MUI_LANGUAGE "English"
-
-; Product definitions
-;!define DUMMYINSTALL ; Define this to make it build quickly, not including any of the files or code in the sections, for quick testing of features of the installer and development thereof.
-!define INSTDIR_KEY "SOFTWARE\Ardour-3.0"
-
-; Product Information
-Name "Ardour-3.0"
-OutFile "Ardour-3.0-Setup.exe"
-InstallDir "$PROGRAMFILES\Ardour"
-InstallDirRegKey HKLM "${INSTDIR_KEY}" "Install_Dir"
-
-
-ComponentText "Select which optional components you want to install."
-
-DirText "Please select the installation folder."
-
-Section "Ardour-3.0"
-!ifndef DUMMYINSTALL
- SectionIn RO
-
- SetOutPath $INSTDIR
- File ardour-3.0.exe
- File *.dll
- File jack*.exe
- File ardour.ico
- File /r etc
- File /r jack
- File /r lib
- File /r share
-
-!endif
-SectionEnd
-
-Section "Start Menu Shortcuts"
-!ifndef DUMMY_INSTALL
- CreateDirectory "$SMPROGRAMS\Ardour-3.0"
- CreateShortCut "$SMPROGRAMS\Ardour-3.0\Uninstall Ardour-3.0.lnk" "$INSTDIR\Uninstall Ardour-3.0.exe" "" "$INSTDIR\Uninstall Ardour-3.0.exe" 0
- CreateShortCut "$SMPROGRAMS\Ardour-3.0\ardour-3.0.exe.lnk" "$INSTDIR\.\ardour-3.0.exe" "" "$INSTDIR\ardour.ico" 0
-!endif
-SectionEnd
-
-Section "Desktop Icons"
-!ifndef DUMMY_INSTALL
- CreateShortCut "$DESKTOP\Ardour-3.0.exe.lnk" "$INSTDIR\ardour-3.0.exe" "" "$INSTDIR\ardour.ico"
-!endif
-SectionEnd
-
-Section "Uninstall"
-!ifndef DUMMY_INSTALL
- Delete /rebootok "$DESKTOP\ardour-3.0.exe.lnk"
- Delete /rebootok "$SMPROGRAMS\Ardour-3.0\ardour-3.0.exe.lnk"
- Delete /rebootok "$SMPROGRAMS\Ardour-3.0\Uninstall Ardour-3.0.lnk"
- RMDir "$SMPROGRAMS\Ardour-3.0"
-
- ;RMDir "$INSTDIR\."
- Delete /rebootok "$INSTDIR\ardour-3.0.exe"
- Delete /rebootok "$INSTDIR\jack*.exe"
- Delete /rebootok "$INSTDIR\*.dll"
- Delete /rebootok "$INSTDIR\ardour.ico"
- RMDir /r "$INSTDIR\etc"
- RMDir /r "$INSTDIR\jack"
- RMDir /r "$INSTDIR\lib"
- RMDir /r "$INSTDIR\share"
- RMDir "$INSTDIR"
-!endif
-SectionEnd
-
-Section -post
-!ifndef DUMMY_INSTALL
- WriteUninstaller "$INSTDIR\Uninstall Ardour-3.0.exe"
-!endif
-SectionEnd
diff --git a/tools/windows_packaging/clean.sh b/tools/windows_packaging/clean.sh
deleted file mode 100755
index 95776124aa..0000000000
--- a/tools/windows_packaging/clean.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-. mingw-env.sh
-
-rm -rf $BUILD_DIR
diff --git a/tools/windows_packaging/configure-debug.sh b/tools/windows_packaging/configure-debug.sh
deleted file mode 100755
index 5cc130012a..0000000000
--- a/tools/windows_packaging/configure-debug.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-. ./print-env.sh
-
-cd $BASE || exit 1
-./waf configure --prefix="/" --bindir="/" --configdir="/share" --noconfirm --test --single-tests --with-backends=dummy,jack --dist-target=mingw "$@"
diff --git a/tools/windows_packaging/configure-distcc-debug.sh b/tools/windows_packaging/configure-distcc-debug.sh
deleted file mode 100755
index 5855f1fbee..0000000000
--- a/tools/windows_packaging/configure-distcc-debug.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-export CC="distcc $HOST-gcc"
-export CPP="distcc $HOST-g++"
-export CXX="distcc $HOST-g++"
-
-. ./print-env.sh
-
-cd $BASE || exit 1
-./waf configure --prefix="/" --bindir="/" --configdir="/share" --noconfirm --test --single-tests --dist-target=mingw "$@"
diff --git a/tools/windows_packaging/configure-distcc-release.sh b/tools/windows_packaging/configure-distcc-release.sh
deleted file mode 100755
index 50d1ec37b5..0000000000
--- a/tools/windows_packaging/configure-distcc-release.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-export CC="distcc $HOST-gcc"
-export CPP="distcc $HOST-g++"
-export CXX="distcc $HOST-g++"
-
-. ./print-env.sh
-
-cd $BASE || exit 1
-./waf configure --prefix="/" --bindir="/" --configdir="/share" --optimize --noconfirm --dist-target=mingw "$@"
diff --git a/tools/windows_packaging/configure-release.sh b/tools/windows_packaging/configure-release.sh
deleted file mode 100755
index c6869e79d0..0000000000
--- a/tools/windows_packaging/configure-release.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-. ./print-env.sh
-
-cd $BASE || exit 1
-./waf configure --prefix="/" --bindir="/" --configdir="/share" --optimize --noconfirm --dist-target=mingw "$@"
diff --git a/tools/windows_packaging/copydll-fedora.sh b/tools/windows_packaging/copydll-fedora.sh
deleted file mode 100755
index 8ba3c0fb5c..0000000000
--- a/tools/windows_packaging/copydll-fedora.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-function copydll () {
- if [ -f $MINGW_ROOT/bin/$1 ] ; then
- cp $MINGW_ROOT/bin/$1 $2 || return 1
- return 0
- fi
-
- echo "ERROR: File $1 does not exist"
- return 1
-}
diff --git a/tools/windows_packaging/copydll-waves.sh b/tools/windows_packaging/copydll-waves.sh
deleted file mode 100755
index fe2b5edf3c..0000000000
--- a/tools/windows_packaging/copydll-waves.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/bash
-
-function copydll () {
- if [ -f $GTK/bin/$1 ] ; then
- echo "cp $GTK/bin/$1 $2"
- cp $GTK/bin/$1 $2 || return 1
- return 0
- fi
-
- if [ -f $GTK/lib/$1 ] ; then
- echo "cp $GTK/lib/$1 $2"
- cp $GTK/lib/$1 $2 || return 1
- return 0
- fi
-
- if [ -f $A3/bin/$1 ] ; then
- echo "cp $A3/bin/$1 $2"
- cp $A3/bin/$1 $2 || return 1
- return 0
- fi
-
- if [ -f $A3/lib/$1 ] ; then
- echo "$A3/lib/$1 $2"
- cp $A3/lib/$1 $2 || return 1
- return 0
- fi
- if which $1 ; then
- echo "cp `which $1` $2"
- cp `which $1` $2 || return 1
- return 0
- fi
-
- echo "there is no $1"
- return 1
-}
diff --git a/tools/windows_packaging/cptovmshare.sh b/tools/windows_packaging/cptovmshare.sh
deleted file mode 100755
index f447f57b5c..0000000000
--- a/tools/windows_packaging/cptovmshare.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-cd $BASE || exit 1
-
-if [ -z $ARDOUR_VM_SHARE_DIR ]
-then
- echo "You must set ARDOUR_VM_SHARE_DIR in your environment to use this script!"
- exit 1
-fi
-
-if [ -d $ARDOUR_VM_SHARE_DIR/$PACKAGE_DIR ]; then
- echo "Removing $PACKAGE_DIR from vm share directory ..."
- rm -rf $ARDOUR_VM_SHARE_DIR/$PACKAGE_DIR || exit 1
-fi
-
-echo "Copying $PACKAGE_DIR to vm share directory $ARDOUR_VM_SHARE_DIR ..."
-cp -r $PACKAGE_DIR $ARDOUR_VM_SHARE_DIR || exit 1
diff --git a/tools/windows_packaging/gdb-ardour.bat b/tools/windows_packaging/gdb-ardour.bat
deleted file mode 100644
index 7d290b0791..0000000000
--- a/tools/windows_packaging/gdb-ardour.bat
+++ /dev/null
@@ -1,4 +0,0 @@
-set HOME=%USERPROFILE%
-echo "set home to %HOME%"
-
-START gdb.exe ardour-3.3.exe
diff --git a/tools/windows_packaging/gdb.bat b/tools/windows_packaging/gdb.bat
deleted file mode 100644
index 90f586b6c7..0000000000
--- a/tools/windows_packaging/gdb.bat
+++ /dev/null
@@ -1,4 +0,0 @@
-set HOME=%USERPROFILE%
-echo "set home to %HOME%"
-
-START gdb.exe
diff --git a/tools/windows_packaging/gdbinit b/tools/windows_packaging/gdbinit
deleted file mode 100644
index b170ccad1a..0000000000
--- a/tools/windows_packaging/gdbinit
+++ /dev/null
@@ -1,2 +0,0 @@
-echo dir src/gtk2_ardour \n
- dir src/gtk2_ardour
diff --git a/tools/windows_packaging/gdbinit_home b/tools/windows_packaging/gdbinit_home
deleted file mode 100644
index 910710cf8c..0000000000
--- a/tools/windows_packaging/gdbinit_home
+++ /dev/null
@@ -1 +0,0 @@
-set auto-load safe-path /
diff --git a/tools/windows_packaging/loaders.cache b/tools/windows_packaging/loaders.cache
deleted file mode 100644
index 8293cd8898..0000000000
--- a/tools/windows_packaging/loaders.cache
+++ /dev/null
@@ -1,144 +0,0 @@
-# GdkPixbuf Image Loader Modules file
-# Automatically generated file, do not edit
-# Created by gdk-pixbuf-query-loaders.exe from gdk-pixbuf-2.21.7
-#
-# LoaderDir = Z:\usr\i686-pc-mingw32\sys-root\mingw/lib/gdk-pixbuf-2.0/2.10.0/loaders
-#
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.dll"
-"png" 5 "gdk-pixbuf" "The PNG image format" "LGPL"
-"image/png" ""
-"png" ""
-"\211PNG\r\n\032\n" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.dll"
-"xpm" 4 "gdk-pixbuf" "The XPM image format" "LGPL"
-"image/x-xpixmap" ""
-"xpm" ""
-"/* XPM */" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gdip-bmp.dll"
-"bmp" 5 "gdk-pixbuf" "Het BMP-bestandsformaat" "LGPL"
-"image/bmp" "image/x-bmp" "image/x-MS-bmp" ""
-"bmp" ""
-"BM" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gdip-tiff.dll"
-"tiff" 5 "gdk-pixbuf" "The TIFF image format" "LGPL"
-"image/tiff" ""
-"tiff" "tif" ""
-"MM *" " z " 100
-"II* " " z" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pcx.dll"
-"pcx" 4 "gdk-pixbuf" "The PCX image format" "LGPL"
-"image/x-pcx" ""
-"pcx" ""
-"\n \001" "" 100
-"\n\002\001" "" 100
-"\n\003\001" "" 100
-"\n\004\001" "" 100
-"\n\005\001" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gdip-wmf.dll"
-"wmf" 4 "gdk-pixbuf" "Het WMF-bestandsformaat" "LGPL"
-"image/x-wmf" ""
-"wmf" "apm" ""
-"\327\315\306\232" "" 100
-"\001" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ras.dll"
-"ras" 4 "gdk-pixbuf" "The Sun raster image format" "LGPL"
-"image/x-cmu-raster" "image/x-sun-raster" ""
-"ras" ""
-"Y\246j\225" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gdip-ico.dll"
-"ico" 4 "gdk-pixbuf" "Het ICO-bestandsformaat" "LGPL"
-"image/x-icon" "image/x-ico" ""
-"ico" "cur" ""
-" \001 " "zz znz" 100
-" \002 " "zz znz" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-wbmp.dll"
-"wbmp" 4 "gdk-pixbuf" "The WBMP image format" "LGPL"
-"image/vnd.wap.wbmp" ""
-"wbmp" ""
-" " "zz" 1
-" `" "z " 1
-" @" "z " 1
-" " "z " 1
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-pnm.dll"
-"pnm" 4 "gdk-pixbuf" "The PNM/PBM/PGM/PPM image format family" "LGPL"
-"image/x-portable-anymap" "image/x-portable-bitmap" "image/x-portable-graymap" "image/x-portable-pixmap" ""
-"pnm" "pbm" "pgm" "ppm" ""
-"P1" "" 100
-"P2" "" 100
-"P3" "" 100
-"P4" "" 100
-"P5" "" 100
-"P6" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-ani.dll"
-"ani" 4 "gdk-pixbuf" "The ANI image format" "LGPL"
-"application/x-navi-animation" ""
-"ani" ""
-"RIFF ACON" " xxxx " 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-qtif.dll"
-"qtif" 4 "gdk-pixbuf" "The QTIF image format" "LGPL"
-"image/x-quicktime" "image/qtif" ""
-"qtif" "qif" ""
-"abcdidsc" "xxxx " 100
-"abcdidat" "xxxx " 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xbm.dll"
-"xbm" 4 "gdk-pixbuf" "The XBM image format" "LGPL"
-"image/x-xbitmap" ""
-"xbm" ""
-"#define " "" 100
-"/*" "" 50
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-icns.dll"
-"icns" 4 "gdk-pixbuf" "The ICNS image format" "GPL"
-"image/x-icns" ""
-"icns" ""
-"icns" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-jasper.dll"
-"jpeg2000" 4 "gdk-pixbuf" "The JPEG 2000 image format" "LGPL"
-"image/jp2" "image/jpeg2000" "image/jpx" ""
-"jp2" "jpc" "jpx" "j2k" "jpf" ""
-" jP" "!!!! " 100
-"\377O\377Q" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gdip-jpeg.dll"
-"jpeg" 5 "gdk-pixbuf" "Het JPEG-bestandsformaat" "LGPL"
-"image/jpeg" ""
-"jpeg" "jpe" "jpg" ""
-"\377\330" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gdip-gif.dll"
-"gif" 5 "gdk-pixbuf" "Het GIF-bestandsformaat" "LGPL"
-"image/gif" ""
-"gif" ""
-"GIF8" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gdip-emf.dll"
-"emf" 4 "gdk-pixbuf" "Het EMF-bestandsformaat" "LGPL"
-"application/emf" "application/x-emf" "image/x-emf" "image/x-mgx-emf" ""
-"emf" ""
-"\001" "" 100
-
-"lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-tga.dll"
-"tga" 4 "gdk-pixbuf" "The Targa image format" "LGPL"
-"image/x-tga" ""
-"tga" "targa" ""
-" \001\001" "x " 100
-" \001\t" "x " 100
-" \002" "xz " 99
-" \003" "xz " 100
-" \n" "xz " 100
-" \013" "xz " 100
-
-
diff --git a/tools/windows_packaging/make-installer.sh b/tools/windows_packaging/make-installer.sh
deleted file mode 100755
index 621f271a61..0000000000
--- a/tools/windows_packaging/make-installer.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-cd $BASE || exit 1
-
-if test ! -d $PACKAGE_DIR; then
- echo "Win32 package directory does not exist"
- exit 1
-fi
-
-cp $TOOLS_DIR/ardour.nsi $PACKAGE_DIR || exit 1
-cp $BASE/icons/icon/ardour.ico $PACKAGE_DIR || exit 1
-
-cd $PACKAGE_DIR && makensis ardour.nsi
diff --git a/tools/windows_packaging/mingw-env.sh b/tools/windows_packaging/mingw-env.sh
deleted file mode 100755
index f4c0a375ca..0000000000
--- a/tools/windows_packaging/mingw-env.sh
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/bin/bash
-
-if [ -z "$ARCH" ]; then
- echo "ARCH not set defaulting to win32"
- ARCH=win32
-elif [ "$ARCH" == "win32" ]; then
- echo "ARCH set to win32"
-elif [ "$ARCH" == "win64" ]; then
- echo "ARCH set to win64"
-else
- echo "ARCH set invalid value aborting..."
- exit 1
-fi
-
-if [ "$ARCH" == "win32" ]; then
- HOST=i686-w64-mingw32
-else
- HOST=x86_64-w64-mingw32
-fi
-
-MINGW_ROOT=/usr/$HOST/sys-root/mingw
-
-export PKG_CONFIG_PREFIX=$MINGW_ROOT
-export PKG_CONFIG_LIBDIR=$MINGW_ROOT/lib/pkgconfig
-export PKGCONFIG=pkg-config
-export AR=$HOST-ar
-export RANLIB=$HOST-ranlib
-export CC=$HOST-gcc
-export CPP=$HOST-g++
-export CXX=$HOST-g++
-export AS=$HOST-as
-export LINK_CC=$HOST-gcc
-export LINK_CXX=$HOST-g++
-export WINRC=$HOST-windres
-export STRIP=$HOST-strip
-
-BASE=$(readlink -f $0)
-BASE=$(dirname $BASE) # up one
-BASE=$(dirname $BASE) # up one more
-BASE=$(dirname $BASE) # up one more
-
-BUILD_DIR=$BASE/build
-BUILD_CACHE_FILE=$BUILD_DIR/c4che/_cache.py
-TOOLS_DIR=$BASE/tools/windows_packaging
-
-APPNAME=Ardour
-
-# These are only relevant after a build
-if test -f $BUILD_CACHE_FILE
-then
- . ../define_versions.sh
-
- # Figure out the Build Type
- if [ x$DEBUG = xT ]; then
- PACKAGE_DIR="$APPNAME-${release_version}-$ARCH-dbg"
- else
- PACKAGE_DIR="$APPNAME-${release_version}-$ARCH"
- fi
-
- if grep -q "BUILD_TESTS = True" $BUILD_CACHE_FILE; then
- WITH_TESTS=1
- fi
-
- ARDOUR_DATA_DIR=$PACKAGE_DIR/share/ardour3
-fi
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/10-autohint.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/10-autohint.conf
deleted file mode 100644
index c597bf41da..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/10-autohint.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- true
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/10-no-sub-pixel.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/10-no-sub-pixel.conf
deleted file mode 100644
index 87ada4ef2d..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/10-no-sub-pixel.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- none
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-bgr.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-bgr.conf
deleted file mode 100644
index e1f64fd33b..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-bgr.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- bgr
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-rgb.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-rgb.conf
deleted file mode 100644
index 2b49fe3d24..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-rgb.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- rgb
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-vbgr.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-vbgr.conf
deleted file mode 100644
index 5947650df1..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-vbgr.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- vbgr
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-vrgb.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-vrgb.conf
deleted file mode 100644
index 84481bde2d..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/10-sub-pixel-vrgb.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- vrgb
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/10-unhinted.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/10-unhinted.conf
deleted file mode 100644
index 025ae2a82a..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/10-unhinted.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
- false
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/20-fix-globaladvance.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/20-fix-globaladvance.conf
deleted file mode 100644
index 2a9c063257..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/20-fix-globaladvance.conf
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
- GulimChe
- false
-
-
-
- DotumChe
- false
-
-
-
- BatangChe
- false
-
-
-
- GungsuhChe
- false
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/20-unhint-small-vera.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/20-unhint-small-vera.conf
deleted file mode 100644
index c4ebee9d44..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/20-unhint-small-vera.conf
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
- Bitstream Vera Sans
-
-
- 7.5
-
-
- false
-
-
-
-
-
- Bitstream Vera Serif
-
-
- 7.5
-
-
- false
-
-
-
-
-
- Bitstream Vera Sans Mono
-
-
- 7.5
-
-
- false
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/25-unhint-nonlatin.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/25-unhint-nonlatin.conf
deleted file mode 100644
index ffb70c69f6..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/25-unhint-nonlatin.conf
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
-
-
- Kochi Mincho
-
-
- false
-
-
-
-
- Kochi Gothic
-
-
- false
-
-
-
-
- Sazanami Mincho
-
-
- false
-
-
-
-
- Sazanami Gothic
-
-
- false
-
-
-
-
- Baekmuk Batang
-
-
- false
-
-
-
-
- Baekmuk Dotum
-
-
- false
-
-
-
-
- Baekmuk Gulim
-
-
- false
-
-
-
-
- Baekmuk Headline
-
-
- false
-
-
-
-
- AR PL Mingti2L Big5
-
-
- false
-
-
-
-
- AR PL ShanHeiSun Uni
-
-
- false
-
-
-
-
- AR PL KaitiM Big5
-
-
- false
-
-
-
-
- AR PL ZenKai Uni
-
-
- false
-
-
-
-
- AR PL SungtiL GB
-
-
- false
-
-
-
-
- AR PL KaitiM GB
-
-
- false
-
-
-
-
- ZYSong18030
-
-
- false
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/30-metric-aliases.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/30-metric-aliases.conf
deleted file mode 100644
index 702a495ea6..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/30-metric-aliases.conf
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Nimbus Sans L
-
- Helvetica
-
-
-
-
- Nimbus Roman No9 L
-
- Times
-
-
-
-
- Nimbus Mono L
-
- Courier
-
-
-
-
-
-
- Liberation Sans
- Albany
- Albany AMT
-
- Arial
-
-
-
-
- Liberation Serif
- Thorndale
- Thorndale AMT
-
- Times New Roman
-
-
-
-
- Liberation Mono
- Cumberland
- Cumberland AMT
-
- Courier New
-
-
-
-
-
-
-
-
-
-
- Helvetica
-
- Arial
-
-
-
-
- Times
-
- Times New Roman
-
-
-
-
- Courier
-
- Courier New
-
-
-
-
-
-
- Arial
-
- Helvetica
-
-
-
-
- Times New Roman
-
- Times
-
-
-
-
- Courier New
-
- Courier
-
-
-
-
-
-
-
-
-
-
- Helvetica
-
- Nimbus Sans L
-
-
-
-
- Times
-
- Nimbus Roman No9 L
-
-
-
-
- Courier
-
- Nimbus Mono L
-
-
-
-
-
-
- Arial
-
- Liberation Sans
- Albany
- Albany AMT
-
-
-
-
- Times New Roman
-
- Liberation Serif
- Thorndale
- Thorndale AMT
-
-
-
-
- Courier New
-
- Liberation Mono
- Cumberland
- Cumberland AMT
-
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/30-urw-aliases.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/30-urw-aliases.conf
deleted file mode 100644
index 9d5920306a..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/30-urw-aliases.conf
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- Avant Garde
- URW Gothic L
-
-
- Bookman
- URW Bookman L
-
-
- New Century Schoolbook
- Century Schoolbook L
-
-
- Palatino
- URW Palladio L
-
-
- Zapf Chancery
- URW Chancery L
-
-
- Zapf Dingbats
- Dingbats
-
-
-
- Symbol
-
-
- Standard Symbols L
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/40-nonlatin.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/40-nonlatin.conf
deleted file mode 100644
index a875db08c3..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/40-nonlatin.conf
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
- Nazli
- Lotoos
- Mitra
- Ferdosi
- Badr
- Zar
- Titr
- Jadid
- Kochi Mincho
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- MS 明朝
- UnBatang
- Baekmuk Batang
- MgOpen Canonica
- Sazanami Mincho
- AR PL ZenKai Uni
- ZYSong18030
- FreeSerif
- serif
-
-
-
- Arshia
- Elham
- Farnaz
- Nasim
- Sina
- Roya
- Koodak
- Terafik
- Kochi Gothic
- AR PL KaitiM GB
- AR PL KaitiM Big5
- MS ゴシック
- UnDotum
- Baekmuk Dotum
- SimSun
- MgOpen Modata
- Sazanami Gothic
- AR PL ShanHeiSun Uni
- ZYSong18030
- FreeSans
- sans-serif
-
-
-
- NSimSun
- ZYSong18030
- FreeMono
- monospace
-
-
-
-
- Homa
- Kamran
- Fantezi
- Tabassom
- fantasy
-
-
-
-
- IranNastaliq
- Nafees Nastaleeq
- cursive
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/45-latin.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/45-latin.conf
deleted file mode 100644
index 7e41264688..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/45-latin.conf
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
-
-
- Bitstream Vera Serif
- DejaVu Serif
- Liberation Serif
- Times New Roman
- Times
- Nimbus Roman No9 L
- Luxi Serif
- Thorndale AMT
- Thorndale
- serif
-
-
-
- Bitstream Vera Sans
- DejaVu Sans
- Liberation Sans
- Arial
- Helvetica
- Verdana
- Albany AMT
- Albany
- Nimbus Sans L
- Luxi Sans
- sans-serif
-
-
-
- Bitstream Vera Sans Mono
- DejaVu Sans Mono
- Liberation Mono
- Inconsolata
- Courier New
- Courier
- Andale Mono
- Luxi Mono
- Cumberland AMT
- Cumberland
- Nimbus Mono L
- monospace
-
-
-
- Impact
- Copperplate Gothic Std
- Cooper Std
- Bauhaus Std
- fantasy
-
-
-
- ITC Zapf Chancery Std
- Zapfino
- Comic Sans MS
- cursive
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/49-sansserif.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/49-sansserif.conf
deleted file mode 100644
index c6209a7d31..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/49-sansserif.conf
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
- sans-serif
-
-
- serif
-
-
- monospace
-
-
- sans-serif
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/50-user.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/50-user.conf
deleted file mode 100644
index 3f8901296b..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/50-user.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
- ~/.fonts.conf.d
- ~/.fonts.conf
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/51-local.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/51-local.conf
deleted file mode 100644
index ca9fbe1959..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/51-local.conf
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- local.conf
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/60-latin.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/60-latin.conf
deleted file mode 100644
index 2107e31e4b..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/60-latin.conf
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
- serif
-
- Bitstream Vera Serif
- DejaVu Serif
- Times New Roman
- Thorndale AMT
- Luxi Serif
- Nimbus Roman No9 L
- Times
-
-
-
- sans-serif
-
- Bitstream Vera Sans
- DejaVu Sans
- Verdana
- Arial
- Albany AMT
- Luxi Sans
- Nimbus Sans L
- Helvetica
- Lucida Sans Unicode
- BPG Glaho International
- Tahoma
-
-
-
- monospace
-
- Bitstream Vera Sans Mono
- DejaVu Sans Mono
- Inconsolata
- Andale Mono
- Courier New
- Cumberland AMT
- Luxi Mono
- Nimbus Mono L
- Courier
-
-
-
-
- fantasy
-
- Impact
- Copperplate Gothic Std
- Cooper Std
- Bauhaus Std
-
-
-
-
- cursive
-
- ITC Zapf Chancery Std
- Zapfino
- Comic Sans MS
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/65-fonts-persian.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/65-fonts-persian.conf
deleted file mode 100644
index 0033675a49..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/65-fonts-persian.conf
+++ /dev/null
@@ -1,419 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Nesf
- Nesf2
-
-
- Nesf2
- Persian_sansserif_default
-
-
-
-
-
- Nazanin
- Nazli
-
-
- Lotus
- Lotoos
-
-
- Yaqut
- Yaghoot
-
-
- Yaghut
- Yaghoot
-
-
- Traffic
- Terafik
-
-
- Ferdowsi
- Ferdosi
-
-
- Fantezy
- Fantezi
-
-
-
-
-
-
-
- Jadid
- Persian_title
-
-
- Titr
- Persian_title
-
-
-
-
- Kamran
-
- Persian_fantasy
- Homa
-
-
-
- Homa
-
- Persian_fantasy
- Kamran
-
-
-
- Fantezi
- Persian_fantasy
-
-
- Tabassom
- Persian_fantasy
-
-
-
-
- Arshia
- Persian_square
-
-
- Nasim
- Persian_square
-
-
- Elham
-
- Persian_square
- Farnaz
-
-
-
- Farnaz
-
- Persian_square
- Elham
-
-
-
- Sina
- Persian_square
-
-
-
-
-
-
- Persian_title
-
- Titr
- Jadid
- Persian_serif
-
-
-
-
-
- Persian_fantasy
-
- Homa
- Kamran
- Fantezi
- Tabassom
- Persian_square
-
-
-
-
-
- Persian_square
-
- Arshia
- Elham
- Farnaz
- Nasim
- Sina
- Persian_serif
-
-
-
-
-
-
-
- Elham
-
-
- farsiweb
-
-
-
-
-
- Homa
-
-
- farsiweb
-
-
-
-
-
- Koodak
-
-
- farsiweb
-
-
-
-
-
- Nazli
-
-
- farsiweb
-
-
-
-
-
- Roya
-
-
- farsiweb
-
-
-
-
-
- Terafik
-
-
- farsiweb
-
-
-
-
-
- Titr
-
-
- farsiweb
-
-
-
-
-
-
-
-
-
- TURNED-OFF
-
-
- farsiweb
-
-
-
- roman
-
-
-
- roman
-
-
-
-
- matrix
- 1-0.2
- 01
-
-
-
-
-
- oblique
-
-
-
-
-
-
-
-
- farsiweb
-
-
- false
-
-
- false
-
-
- false
-
-
-
-
-
-
-
-
- serif
-
- Nazli
- Lotoos
- Mitra
- Ferdosi
- Badr
- Zar
-
-
-
-
-
- sans-serif
-
- Roya
- Koodak
- Terafik
-
-
-
-
-
- monospace
-
-
- Terafik
-
-
-
-
-
- fantasy
-
- Homa
- Kamran
- Fantezi
- Tabassom
-
-
-
-
-
- cursive
-
- IranNastaliq
- Nafees Nastaleeq
-
-
-
-
-
-
-
-
- serif
-
-
- 200
-
-
- 24
-
-
- Titr
-
-
-
-
-
-
- sans-serif
-
-
- 200
-
-
- 24
-
-
- Titr
-
-
-
-
-
-
- Persian_sansserif_default
-
-
- 200
-
-
- 24
-
-
- Titr
-
-
-
-
-
-
-
-
- Persian_sansserif_default
-
-
- Roya
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/65-khmer.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/65-khmer.conf
deleted file mode 100644
index f9d06f2a97..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/65-khmer.conf
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- serif
-
- Khmer OS"
-
-
-
- sans-serif
-
- Khmer OS"
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/65-nonlatin.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/65-nonlatin.conf
deleted file mode 100644
index 53ac064b0a..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/65-nonlatin.conf
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
- serif
-
- Artsounk
- BPG UTF8 M
- Kinnari
- Norasi
- Frank Ruehl
- Dror
- JG LaoTimes
- Saysettha Unicode
- Pigiarniq
- B Davat
- B Compset
- Kacst-Qr
- Urdu Nastaliq Unicode
- Raghindi
- Mukti Narrow
- malayalam
- Sampige
- padmaa
- Hapax Berbère
- MS Gothic
- UmePlus P Gothic
- SimSun
- PMingLiu
- WenQuanYi Zen Hei
- WenQuanYi Bitmap Song
- AR PL ShanHeiSun Uni
- AR PL New Sung
- ZYSong18030
- HanyiSong
- MgOpen Canonica
- Sazanami Mincho
- IPAMonaMincho
- IPAMincho
- Kochi Mincho
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- AR PL Zenkai Uni
- MS 明朝
- ZYSong18030
- UnBatang
- Baekmuk Batang
- KacstQura
- Frank Ruehl CLM
- Lohit Bengali
- Lohit Gujarati
- Lohit Hindi
- Lohit Marathi
- Lohit Maithili
- Lohit Kashmiri
- Lohit Konkani
- Lohit Nepali
- Lohit Sindhi
- Lohit Punjabi
- Lohit Tamil
- Meera
- Lohit Malayalam
- Lohit Kannada
- Lohit Telugu
- Lohit Oriya
- LKLUG
-
-
-
- sans-serif
-
- Nachlieli
- Lucida Sans Unicode
- Yudit Unicode
- Kerkis
- ArmNet Helvetica
- Artsounk
- BPG UTF8 M
- Waree
- Loma
- Garuda
- Umpush
- Saysettha Unicode
- JG Lao Old Arial
- GF Zemen Unicode
- Pigiarniq
- B Davat
- B Compset
- Kacst-Qr
- Urdu Nastaliq Unicode
- Raghindi
- Mukti Narrow
- malayalam
- Sampige
- padmaa
- Hapax Berbère
- MS Gothic
- UmePlus P Gothic
-
- SimSun
- PMingLiu
- WenQuanYi Zen Hei
- WenQuanYi Bitmap Song
- AR PL ShanHeiSun Uni
- AR PL New Sung
- MgOpen Modata
- VL Gothic
- IPAMonaGothic
- IPAGothic
- Sazanami Gothic
- Kochi Gothic
- AR PL KaitiM GB
- AR PL KaitiM Big5
- AR PL ShanHeiSun Uni
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- MS ゴシック
- ZYSong18030
- TSCu_Paranar
- UnDotum
- Baekmuk Dotum
- Baekmuk Gulim
- KacstQura
- Lohit Bengali
- Lohit Gujarati
- Lohit Hindi
- Lohit Marathi
- Lohit Maithili
- Lohit Kashmiri
- Lohit Konkani
- Lohit Nepali
- Lohit Sindhi
- Lohit Punjabi
- Lohit Tamil
- Meera
- Lohit Malayalam
- Lohit Kannada
- Lohit Telugu
- Lohit Oriya
- LKLUG
-
-
-
- monospace
-
- Miriam Mono
- VL Gothic
- IPAMonaGothic
- IPAGothic
- Sazanami Gothic
- Kochi Gothic
- AR PL KaitiM GB
- MS Gothic
- UmePlus Gothic
- NSimSun
- MingLiu
- AR PL ShanHeiSun Uni
- AR PL New Sung Mono
- HanyiSong
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- ZYSong18030
- UnBatang
- UnDotum
- Baekmuk Batang
- Baekmuk Dotum
- Baekmuk Gulim
- TlwgTypo
- TlwgTypist
- TlwgTypewriter
- TlwgMono
- Hasida
- Mitra Mono
- GF Zemen Unicode
- Hapax Berbère
- Lohit Bengali
- Lohit Gujarati
- Lohit Hindi
- Lohit Marathi
- Lohit Maithili
- Lohit Kashmiri
- Lohit Konkani
- Lohit Nepali
- Lohit Sindhi
- Lohit Punjabi
- Lohit Tamil
- Meera
- Lohit Malayalam
- Lohit Kannada
- Lohit Telugu
- Lohit Oriya
- LKLUG
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/69-unifont.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/69-unifont.conf
deleted file mode 100644
index 177dec5d4e..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/69-unifont.conf
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
- serif
-
- FreeSerif
- Code2000
- Code2001
-
-
-
- sans-serif
-
- FreeSans
- Arial Unicode MS
- Arial Unicode
- Code2000
- Code2001
-
-
-
- monospace
-
- FreeMono
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/70-no-bitmaps.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/70-no-bitmaps.conf
deleted file mode 100644
index 6b506e82a0..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/70-no-bitmaps.conf
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
- false
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/70-yes-bitmaps.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/70-yes-bitmaps.conf
deleted file mode 100644
index c153aebdca..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/70-yes-bitmaps.conf
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
- false
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/80-delicious.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/80-delicious.conf
deleted file mode 100644
index 728f50caee..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/80-delicious.conf
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
- Delicious
-
-
- Heavy
-
-
- heavy
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.avail/90-synthetic.conf b/tools/windows_packaging/mingw64/fonts/conf.avail/90-synthetic.conf
deleted file mode 100644
index b8d1e85e1f..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.avail/90-synthetic.conf
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
- roman
-
-
-
- roman
-
-
-
-
- matrix
- 10.2
- 01
-
-
-
-
-
- oblique
-
-
-
- false
-
-
-
-
-
-
-
-
- medium
-
-
-
- medium
-
-
-
- true
-
-
-
- bold
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/20-fix-globaladvance.conf b/tools/windows_packaging/mingw64/fonts/conf.d/20-fix-globaladvance.conf
deleted file mode 100644
index 2a9c063257..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/20-fix-globaladvance.conf
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
- GulimChe
- false
-
-
-
- DotumChe
- false
-
-
-
- BatangChe
- false
-
-
-
- GungsuhChe
- false
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/20-unhint-small-vera.conf b/tools/windows_packaging/mingw64/fonts/conf.d/20-unhint-small-vera.conf
deleted file mode 100644
index c4ebee9d44..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/20-unhint-small-vera.conf
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
- Bitstream Vera Sans
-
-
- 7.5
-
-
- false
-
-
-
-
-
- Bitstream Vera Serif
-
-
- 7.5
-
-
- false
-
-
-
-
-
- Bitstream Vera Sans Mono
-
-
- 7.5
-
-
- false
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/30-metric-aliases.conf b/tools/windows_packaging/mingw64/fonts/conf.d/30-metric-aliases.conf
deleted file mode 100644
index 702a495ea6..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/30-metric-aliases.conf
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Nimbus Sans L
-
- Helvetica
-
-
-
-
- Nimbus Roman No9 L
-
- Times
-
-
-
-
- Nimbus Mono L
-
- Courier
-
-
-
-
-
-
- Liberation Sans
- Albany
- Albany AMT
-
- Arial
-
-
-
-
- Liberation Serif
- Thorndale
- Thorndale AMT
-
- Times New Roman
-
-
-
-
- Liberation Mono
- Cumberland
- Cumberland AMT
-
- Courier New
-
-
-
-
-
-
-
-
-
-
- Helvetica
-
- Arial
-
-
-
-
- Times
-
- Times New Roman
-
-
-
-
- Courier
-
- Courier New
-
-
-
-
-
-
- Arial
-
- Helvetica
-
-
-
-
- Times New Roman
-
- Times
-
-
-
-
- Courier New
-
- Courier
-
-
-
-
-
-
-
-
-
-
- Helvetica
-
- Nimbus Sans L
-
-
-
-
- Times
-
- Nimbus Roman No9 L
-
-
-
-
- Courier
-
- Nimbus Mono L
-
-
-
-
-
-
- Arial
-
- Liberation Sans
- Albany
- Albany AMT
-
-
-
-
- Times New Roman
-
- Liberation Serif
- Thorndale
- Thorndale AMT
-
-
-
-
- Courier New
-
- Liberation Mono
- Cumberland
- Cumberland AMT
-
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/30-urw-aliases.conf b/tools/windows_packaging/mingw64/fonts/conf.d/30-urw-aliases.conf
deleted file mode 100644
index 9d5920306a..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/30-urw-aliases.conf
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- Avant Garde
- URW Gothic L
-
-
- Bookman
- URW Bookman L
-
-
- New Century Schoolbook
- Century Schoolbook L
-
-
- Palatino
- URW Palladio L
-
-
- Zapf Chancery
- URW Chancery L
-
-
- Zapf Dingbats
- Dingbats
-
-
-
- Symbol
-
-
- Standard Symbols L
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/40-nonlatin.conf b/tools/windows_packaging/mingw64/fonts/conf.d/40-nonlatin.conf
deleted file mode 100644
index a875db08c3..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/40-nonlatin.conf
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
- Nazli
- Lotoos
- Mitra
- Ferdosi
- Badr
- Zar
- Titr
- Jadid
- Kochi Mincho
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- MS 明朝
- UnBatang
- Baekmuk Batang
- MgOpen Canonica
- Sazanami Mincho
- AR PL ZenKai Uni
- ZYSong18030
- FreeSerif
- serif
-
-
-
- Arshia
- Elham
- Farnaz
- Nasim
- Sina
- Roya
- Koodak
- Terafik
- Kochi Gothic
- AR PL KaitiM GB
- AR PL KaitiM Big5
- MS ゴシック
- UnDotum
- Baekmuk Dotum
- SimSun
- MgOpen Modata
- Sazanami Gothic
- AR PL ShanHeiSun Uni
- ZYSong18030
- FreeSans
- sans-serif
-
-
-
- NSimSun
- ZYSong18030
- FreeMono
- monospace
-
-
-
-
- Homa
- Kamran
- Fantezi
- Tabassom
- fantasy
-
-
-
-
- IranNastaliq
- Nafees Nastaleeq
- cursive
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/45-latin.conf b/tools/windows_packaging/mingw64/fonts/conf.d/45-latin.conf
deleted file mode 100644
index 7e41264688..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/45-latin.conf
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
-
-
- Bitstream Vera Serif
- DejaVu Serif
- Liberation Serif
- Times New Roman
- Times
- Nimbus Roman No9 L
- Luxi Serif
- Thorndale AMT
- Thorndale
- serif
-
-
-
- Bitstream Vera Sans
- DejaVu Sans
- Liberation Sans
- Arial
- Helvetica
- Verdana
- Albany AMT
- Albany
- Nimbus Sans L
- Luxi Sans
- sans-serif
-
-
-
- Bitstream Vera Sans Mono
- DejaVu Sans Mono
- Liberation Mono
- Inconsolata
- Courier New
- Courier
- Andale Mono
- Luxi Mono
- Cumberland AMT
- Cumberland
- Nimbus Mono L
- monospace
-
-
-
- Impact
- Copperplate Gothic Std
- Cooper Std
- Bauhaus Std
- fantasy
-
-
-
- ITC Zapf Chancery Std
- Zapfino
- Comic Sans MS
- cursive
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/49-sansserif.conf b/tools/windows_packaging/mingw64/fonts/conf.d/49-sansserif.conf
deleted file mode 100644
index c6209a7d31..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/49-sansserif.conf
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
- sans-serif
-
-
- serif
-
-
- monospace
-
-
- sans-serif
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/50-user.conf b/tools/windows_packaging/mingw64/fonts/conf.d/50-user.conf
deleted file mode 100644
index 3f8901296b..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/50-user.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
- ~/.fonts.conf.d
- ~/.fonts.conf
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/51-local.conf b/tools/windows_packaging/mingw64/fonts/conf.d/51-local.conf
deleted file mode 100644
index ca9fbe1959..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/51-local.conf
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
- local.conf
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/60-latin.conf b/tools/windows_packaging/mingw64/fonts/conf.d/60-latin.conf
deleted file mode 100644
index 2107e31e4b..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/60-latin.conf
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
- serif
-
- Bitstream Vera Serif
- DejaVu Serif
- Times New Roman
- Thorndale AMT
- Luxi Serif
- Nimbus Roman No9 L
- Times
-
-
-
- sans-serif
-
- Bitstream Vera Sans
- DejaVu Sans
- Verdana
- Arial
- Albany AMT
- Luxi Sans
- Nimbus Sans L
- Helvetica
- Lucida Sans Unicode
- BPG Glaho International
- Tahoma
-
-
-
- monospace
-
- Bitstream Vera Sans Mono
- DejaVu Sans Mono
- Inconsolata
- Andale Mono
- Courier New
- Cumberland AMT
- Luxi Mono
- Nimbus Mono L
- Courier
-
-
-
-
- fantasy
-
- Impact
- Copperplate Gothic Std
- Cooper Std
- Bauhaus Std
-
-
-
-
- cursive
-
- ITC Zapf Chancery Std
- Zapfino
- Comic Sans MS
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/65-fonts-persian.conf b/tools/windows_packaging/mingw64/fonts/conf.d/65-fonts-persian.conf
deleted file mode 100644
index 0033675a49..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/65-fonts-persian.conf
+++ /dev/null
@@ -1,419 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- Nesf
- Nesf2
-
-
- Nesf2
- Persian_sansserif_default
-
-
-
-
-
- Nazanin
- Nazli
-
-
- Lotus
- Lotoos
-
-
- Yaqut
- Yaghoot
-
-
- Yaghut
- Yaghoot
-
-
- Traffic
- Terafik
-
-
- Ferdowsi
- Ferdosi
-
-
- Fantezy
- Fantezi
-
-
-
-
-
-
-
- Jadid
- Persian_title
-
-
- Titr
- Persian_title
-
-
-
-
- Kamran
-
- Persian_fantasy
- Homa
-
-
-
- Homa
-
- Persian_fantasy
- Kamran
-
-
-
- Fantezi
- Persian_fantasy
-
-
- Tabassom
- Persian_fantasy
-
-
-
-
- Arshia
- Persian_square
-
-
- Nasim
- Persian_square
-
-
- Elham
-
- Persian_square
- Farnaz
-
-
-
- Farnaz
-
- Persian_square
- Elham
-
-
-
- Sina
- Persian_square
-
-
-
-
-
-
- Persian_title
-
- Titr
- Jadid
- Persian_serif
-
-
-
-
-
- Persian_fantasy
-
- Homa
- Kamran
- Fantezi
- Tabassom
- Persian_square
-
-
-
-
-
- Persian_square
-
- Arshia
- Elham
- Farnaz
- Nasim
- Sina
- Persian_serif
-
-
-
-
-
-
-
- Elham
-
-
- farsiweb
-
-
-
-
-
- Homa
-
-
- farsiweb
-
-
-
-
-
- Koodak
-
-
- farsiweb
-
-
-
-
-
- Nazli
-
-
- farsiweb
-
-
-
-
-
- Roya
-
-
- farsiweb
-
-
-
-
-
- Terafik
-
-
- farsiweb
-
-
-
-
-
- Titr
-
-
- farsiweb
-
-
-
-
-
-
-
-
-
- TURNED-OFF
-
-
- farsiweb
-
-
-
- roman
-
-
-
- roman
-
-
-
-
- matrix
- 1-0.2
- 01
-
-
-
-
-
- oblique
-
-
-
-
-
-
-
-
- farsiweb
-
-
- false
-
-
- false
-
-
- false
-
-
-
-
-
-
-
-
- serif
-
- Nazli
- Lotoos
- Mitra
- Ferdosi
- Badr
- Zar
-
-
-
-
-
- sans-serif
-
- Roya
- Koodak
- Terafik
-
-
-
-
-
- monospace
-
-
- Terafik
-
-
-
-
-
- fantasy
-
- Homa
- Kamran
- Fantezi
- Tabassom
-
-
-
-
-
- cursive
-
- IranNastaliq
- Nafees Nastaleeq
-
-
-
-
-
-
-
-
- serif
-
-
- 200
-
-
- 24
-
-
- Titr
-
-
-
-
-
-
- sans-serif
-
-
- 200
-
-
- 24
-
-
- Titr
-
-
-
-
-
-
- Persian_sansserif_default
-
-
- 200
-
-
- 24
-
-
- Titr
-
-
-
-
-
-
-
-
- Persian_sansserif_default
-
-
- Roya
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/65-nonlatin.conf b/tools/windows_packaging/mingw64/fonts/conf.d/65-nonlatin.conf
deleted file mode 100644
index 53ac064b0a..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/65-nonlatin.conf
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
- serif
-
- Artsounk
- BPG UTF8 M
- Kinnari
- Norasi
- Frank Ruehl
- Dror
- JG LaoTimes
- Saysettha Unicode
- Pigiarniq
- B Davat
- B Compset
- Kacst-Qr
- Urdu Nastaliq Unicode
- Raghindi
- Mukti Narrow
- malayalam
- Sampige
- padmaa
- Hapax Berbère
- MS Gothic
- UmePlus P Gothic
- SimSun
- PMingLiu
- WenQuanYi Zen Hei
- WenQuanYi Bitmap Song
- AR PL ShanHeiSun Uni
- AR PL New Sung
- ZYSong18030
- HanyiSong
- MgOpen Canonica
- Sazanami Mincho
- IPAMonaMincho
- IPAMincho
- Kochi Mincho
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- AR PL Zenkai Uni
- MS 明朝
- ZYSong18030
- UnBatang
- Baekmuk Batang
- KacstQura
- Frank Ruehl CLM
- Lohit Bengali
- Lohit Gujarati
- Lohit Hindi
- Lohit Marathi
- Lohit Maithili
- Lohit Kashmiri
- Lohit Konkani
- Lohit Nepali
- Lohit Sindhi
- Lohit Punjabi
- Lohit Tamil
- Meera
- Lohit Malayalam
- Lohit Kannada
- Lohit Telugu
- Lohit Oriya
- LKLUG
-
-
-
- sans-serif
-
- Nachlieli
- Lucida Sans Unicode
- Yudit Unicode
- Kerkis
- ArmNet Helvetica
- Artsounk
- BPG UTF8 M
- Waree
- Loma
- Garuda
- Umpush
- Saysettha Unicode
- JG Lao Old Arial
- GF Zemen Unicode
- Pigiarniq
- B Davat
- B Compset
- Kacst-Qr
- Urdu Nastaliq Unicode
- Raghindi
- Mukti Narrow
- malayalam
- Sampige
- padmaa
- Hapax Berbère
- MS Gothic
- UmePlus P Gothic
-
- SimSun
- PMingLiu
- WenQuanYi Zen Hei
- WenQuanYi Bitmap Song
- AR PL ShanHeiSun Uni
- AR PL New Sung
- MgOpen Modata
- VL Gothic
- IPAMonaGothic
- IPAGothic
- Sazanami Gothic
- Kochi Gothic
- AR PL KaitiM GB
- AR PL KaitiM Big5
- AR PL ShanHeiSun Uni
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- MS ゴシック
- ZYSong18030
- TSCu_Paranar
- UnDotum
- Baekmuk Dotum
- Baekmuk Gulim
- KacstQura
- Lohit Bengali
- Lohit Gujarati
- Lohit Hindi
- Lohit Marathi
- Lohit Maithili
- Lohit Kashmiri
- Lohit Konkani
- Lohit Nepali
- Lohit Sindhi
- Lohit Punjabi
- Lohit Tamil
- Meera
- Lohit Malayalam
- Lohit Kannada
- Lohit Telugu
- Lohit Oriya
- LKLUG
-
-
-
- monospace
-
- Miriam Mono
- VL Gothic
- IPAMonaGothic
- IPAGothic
- Sazanami Gothic
- Kochi Gothic
- AR PL KaitiM GB
- MS Gothic
- UmePlus Gothic
- NSimSun
- MingLiu
- AR PL ShanHeiSun Uni
- AR PL New Sung Mono
- HanyiSong
- AR PL SungtiL GB
- AR PL Mingti2L Big5
- ZYSong18030
- UnBatang
- UnDotum
- Baekmuk Batang
- Baekmuk Dotum
- Baekmuk Gulim
- TlwgTypo
- TlwgTypist
- TlwgTypewriter
- TlwgMono
- Hasida
- Mitra Mono
- GF Zemen Unicode
- Hapax Berbère
- Lohit Bengali
- Lohit Gujarati
- Lohit Hindi
- Lohit Marathi
- Lohit Maithili
- Lohit Kashmiri
- Lohit Konkani
- Lohit Nepali
- Lohit Sindhi
- Lohit Punjabi
- Lohit Tamil
- Meera
- Lohit Malayalam
- Lohit Kannada
- Lohit Telugu
- Lohit Oriya
- LKLUG
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/69-unifont.conf b/tools/windows_packaging/mingw64/fonts/conf.d/69-unifont.conf
deleted file mode 100644
index 177dec5d4e..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/69-unifont.conf
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
- serif
-
- FreeSerif
- Code2000
- Code2001
-
-
-
- sans-serif
-
- FreeSans
- Arial Unicode MS
- Arial Unicode
- Code2000
- Code2001
-
-
-
- monospace
-
- FreeMono
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/80-delicious.conf b/tools/windows_packaging/mingw64/fonts/conf.d/80-delicious.conf
deleted file mode 100644
index 728f50caee..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/80-delicious.conf
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
- Delicious
-
-
- Heavy
-
-
- heavy
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/90-synthetic.conf b/tools/windows_packaging/mingw64/fonts/conf.d/90-synthetic.conf
deleted file mode 100644
index b8d1e85e1f..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/90-synthetic.conf
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
- roman
-
-
-
- roman
-
-
-
-
- matrix
- 10.2
- 01
-
-
-
-
-
- oblique
-
-
-
- false
-
-
-
-
-
-
-
-
- medium
-
-
-
- medium
-
-
-
- true
-
-
-
- bold
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/conf.d/README b/tools/windows_packaging/mingw64/fonts/conf.d/README
deleted file mode 100644
index c2fb52c3b4..0000000000
--- a/tools/windows_packaging/mingw64/fonts/conf.d/README
+++ /dev/null
@@ -1,23 +0,0 @@
-conf.d/README
-
-Each file in this directory is a fontconfig configuration file. Fontconfig
-scans this directory, loading all files of the form [0-9][0-9]*.conf.
-These files are normally installed in ../conf.avail and then symlinked here,
-allowing them to be easily installed and then enabled/disabled by adjusting
-the symlinks.
-
-The files are loaded in numeric order, the structure of the configuration
-has led to the following conventions in usage:
-
- Files begining with: Contain:
-
- 00 through 09 Font directories
- 10 through 19 system rendering defaults (AA, etc)
- 20 through 29 font rendering options
- 30 through 39 family substitution
- 40 through 49 generic identification, map family->generic
- 50 through 59 alternate config file loading
- 60 through 69 generic aliases, map generic->family
- 70 through 79 select font (adjust which fonts are available)
- 80 through 89 match target="scan" (modify scanned patterns)
- 90 through 99 font synthesis
diff --git a/tools/windows_packaging/mingw64/fonts/fonts.conf b/tools/windows_packaging/mingw64/fonts/fonts.conf
deleted file mode 100644
index 6f5fe4b0e3..0000000000
--- a/tools/windows_packaging/mingw64/fonts/fonts.conf
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-
-
-
-
-
-
-
- WINDOWSFONTDIR
-
- ~/.fonts
-
-
-
-
- mono
-
-
- monospace
-
-
-
-
-
-
- sans serif
-
-
- sans-serif
-
-
-
-
-
-
- sans
-
-
- sans-serif
-
-
-
-
- conf.d
-
-
-
- WINDOWSTEMPDIR_FONTCONFIG_CACHE
- ~/.fontconfig
-
-
-
-
- 0x0020
- 0x00A0
- 0x00AD
- 0x034F
- 0x0600
- 0x0601
- 0x0602
- 0x0603
- 0x06DD
- 0x070F
- 0x115F
- 0x1160
- 0x1680
- 0x17B4
- 0x17B5
- 0x180E
- 0x2000
- 0x2001
- 0x2002
- 0x2003
- 0x2004
- 0x2005
- 0x2006
- 0x2007
- 0x2008
- 0x2009
- 0x200A
- 0x200B
- 0x200C
- 0x200D
- 0x200E
- 0x200F
- 0x2028
- 0x2029
- 0x202A
- 0x202B
- 0x202C
- 0x202D
- 0x202E
- 0x202F
- 0x205F
- 0x2060
- 0x2061
- 0x2062
- 0x2063
- 0x206A
- 0x206B
- 0x206C
- 0x206D
- 0x206E
- 0x206F
- 0x2800
- 0x3000
- 0x3164
- 0xFEFF
- 0xFFA0
- 0xFFF9
- 0xFFFA
- 0xFFFB
-
-
-
- 30
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/fonts/fonts.dtd b/tools/windows_packaging/mingw64/fonts/fonts.dtd
deleted file mode 100644
index cbdfdab3fb..0000000000
--- a/tools/windows_packaging/mingw64/fonts/fonts.dtd
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tools/windows_packaging/mingw64/gtk-2.0/gtk.immodules b/tools/windows_packaging/mingw64/gtk-2.0/gtk.immodules
deleted file mode 100644
index 3eaf413f9d..0000000000
--- a/tools/windows_packaging/mingw64/gtk-2.0/gtk.immodules
+++ /dev/null
@@ -1,39 +0,0 @@
-# GTK+ Input Method Modules file
-# Automatically generated file, do not edit
-# Created by c:/Users/VKamyshniy/gtk/source/gtk+-2.24.18/gtk/.libs/gtk-query-immodules-2.0.exe from gtk+-2.24.18
-#
-# ModulesPath = c:\Users\VKamyshniy\.gtk-2.0\2.10.0\i686-pc-mingw32\immodules;c:\Users\VKamyshniy\.gtk-2.0\2.10.0\immodules;c:\Users\VKamyshniy\.gtk-2.0\i686-pc-mingw32\immodules;c:\Users\VKamyshniy\.gtk-2.0\immodules;c:/Users/VKamyshniy/gtk/inst/lib\gtk-2.0\2.10.0\i686-pc-mingw32\immodules;c:/Users/VKamyshniy/gtk/inst/lib\gtk-2.0\2.10.0\immodules;c:/Users/VKamyshniy/gtk/inst/lib\gtk-2.0\i686-pc-mingw32\immodules;c:/Users/VKamyshniy/gtk/inst/lib\gtk-2.0\immodules
-#
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-am-et.dll"
-"am_et" "Amharic (EZ+)" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" "am"
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-cedilla.dll"
-"cedilla" "Cedilla" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" "az:ca:co:fr:gv:oc:pt:sq:tr:wa"
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-cyrillic-translit.dll"
-"cyrillic_translit" "Cyrillic (Transliterated)" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" ""
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-ime.dll"
-"ime" "Windows IME" "gtk+" "" "ja:ko:zh"
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-inuktitut.dll"
-"inuktitut" "Inuktitut (Transliterated)" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" "iu"
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-ipa.dll"
-"ipa" "IPA" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" ""
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-multipress.dll"
-"multipress" "Multipress" "gtk20" "" ""
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-thai.dll"
-"thai" "Thai-Lao" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" "lo:th"
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-ti-er.dll"
-"ti_er" "Tigrigna-Eritrean (EZ+)" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" "ti"
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-ti-et.dll"
-"ti_et" "Tigrigna-Ethiopian (EZ+)" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" "ti"
-
-"c:/Users/VKamyshniy/gtk/inst/lib/gtk-2.0/2.10.0/immodules/im-viqr.dll"
-"viqr" "Vietnamese (VIQR)" "gtk20" "/Users/VKamyshniy/gtk/inst/share/locale" "vi"
-
diff --git a/tools/windows_packaging/mingw64/gtk-2.0/im-multipress.conf b/tools/windows_packaging/mingw64/gtk-2.0/im-multipress.conf
deleted file mode 100644
index d6c8129d90..0000000000
--- a/tools/windows_packaging/mingw64/gtk-2.0/im-multipress.conf
+++ /dev/null
@@ -1,22 +0,0 @@
-# Example configuration file for the GTK+ Multipress Input Method
-# Authored by Openismus GmbH, 2009.
-#
-# This file follows the GKeyFile format. On the left of the equal sign goes
-# the key that you press repeatedly to iterate through the text items listed
-# on the right-hand side. The list items are separated by semicolons ";" and
-# consist of one or more characters each. The backslash "\" is used to escape
-# characters; for instance "\;" for a literal semicolon.
-#
-# The example configuration below imitates the behavior of a standard mobile
-# phone by a major manufacturer, with German language setting.
-[keys]
-KP_1 = .;,;?;!;';";1;-;(;);@;/;:;_
-KP_2 = a;b;c;2;ä;à;á;ã;â;å;æ;ç
-KP_3 = d;e;f;3;è;é;ë;ê;ð
-KP_4 = g;h;i;4;ì;í;î;ï
-KP_5 = j;k;l;5;£
-KP_6 = m;n;o;6;ö;ò;ó;ô;õ;ø;ñ
-KP_7 = p;q;r;s;7;ß;$
-KP_8 = t;u;v;8;ü;ù;ú;û
-KP_9 = w;x;y;z;9;ý;þ
-KP_0 = \s;0
diff --git a/tools/windows_packaging/mingw64/pango/pango.modules b/tools/windows_packaging/mingw64/pango/pango.modules
deleted file mode 100644
index 192022961f..0000000000
--- a/tools/windows_packaging/mingw64/pango/pango.modules
+++ /dev/null
@@ -1,35 +0,0 @@
-# Pango Modules file
-# Automatically generated file, do not edit
-#
-# ModulesPath = c:/Users/VKamyshniy/gtk/inst/lib/pango\1.6.0\modules
-#
-"./lib/pango/1.6.0/modules/pango-arabic-fc.dll" ArabicScriptEngineFc PangoEngineShape PangoRenderFc arabic:* nko:*
-"./lib/pango/1.6.0/modules/pango-arabic-lang.dll" ArabicScriptEngineLang PangoEngineLang PangoRenderNone arabic:*
-"./lib/pango/1.6.0/modules/pango-basic-fc.dll" BasicScriptEngineFc PangoEngineShape PangoRenderFc latin:* cyrillic:* greek:* armenian:* georgian:* runic:* ogham:* bopomofo:* cherokee:* coptic:* deseret:* ethiopic:* gothic:* han:* hiragana:* katakana:* old-italic:* canadian-aboriginal:* yi:* braille:* cypriot:* limbu:* osmanya:* shavian:* linear-b:* ugaritic:* glagolitic:* cuneiform:* phoenician:* common:
-"./lib/pango/1.6.0/modules/pango-basic-win32.dll" BasicScriptEngineWin32 PangoEngineShape PangoRenderWin32 common:
-"./lib/pango/1.6.0/modules/pango-hangul-fc.dll" HangulScriptEngineFc PangoEngineShape PangoRenderFc hangul:*
-"./lib/pango/1.6.0/modules/pango-hebrew-fc.dll" HebrewScriptEngineFc PangoEngineShape PangoRenderFc hebrew:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" devaScriptEngineFc PangoEngineShape PangoRenderFc devanagari:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" bengScriptEngineFc PangoEngineShape PangoRenderFc bengali:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" guruScriptEngineFc PangoEngineShape PangoRenderFc gurmukhi:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" gujrScriptEngineFc PangoEngineShape PangoRenderFc gujarati:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" oryaScriptEngineFc PangoEngineShape PangoRenderFc oriya:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" tamlScriptEngineFc PangoEngineShape PangoRenderFc tamil:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" teluScriptEngineFc PangoEngineShape PangoRenderFc telugu:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" kndaScriptEngineFc PangoEngineShape PangoRenderFc kannada:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" mlymScriptEngineFc PangoEngineShape PangoRenderFc malayalam:*
-"./lib/pango/1.6.0/modules/pango-indic-fc.dll" sinhScriptEngineFc PangoEngineShape PangoRenderFc sinhala:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" devaIndicScriptEngineLang PangoEngineLang PangoRenderNone devanagari:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" bengIndicScriptEngineLang PangoEngineLang PangoRenderNone bengali:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" guruIndicScriptEngineLang PangoEngineLang PangoRenderNone gurmukhi:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" gujrIndicScriptEngineLang PangoEngineLang PangoRenderNone gujarati:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" oryaIndicScriptEngineLang PangoEngineLang PangoRenderNone oriya:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" tamlIndicScriptEngineLang PangoEngineLang PangoRenderNone tamil:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" teluIndicScriptEngineLang PangoEngineLang PangoRenderNone telugu:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" kndaIndicScriptEngineLang PangoEngineLang PangoRenderNone kannada:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" mlymIndicScriptEngineLang PangoEngineLang PangoRenderNone malayalam:*
-"./lib/pango/1.6.0/modules/pango-indic-lang.dll" sinhIndicScriptEngineLang PangoEngineLang PangoRenderNone sinhala:*
-"./lib/pango/1.6.0/modules/pango-khmer-fc.dll" KhmerScriptEngineFc PangoEngineShape PangoRenderFc khmer:*
-"./lib/pango/1.6.0/modules/pango-syriac-fc.dll" SyriacScriptEngineFc PangoEngineShape PangoRenderFc syriac:*
-"./lib/pango/1.6.0/modules/pango-thai-fc.dll" ThaiScriptEngineFc PangoEngineShape PangoRenderFc thai:* lao:*
-"./lib/pango/1.6.0/modules/pango-tibetan-fc.dll" TibetanScriptEngineFc PangoEngineShape PangoRenderFc tibetan:*
diff --git a/tools/windows_packaging/package-f19.sh b/tools/windows_packaging/package-f19.sh
deleted file mode 100755
index ba7bfd5674..0000000000
--- a/tools/windows_packaging/package-f19.sh
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/bash
-
-DLLS='
-jack-0.dll
-jackserver-0.dll
-libatk-1.0-0.dll
-libatkmm-1.6-1.dll
-libbz2-1.dll
-libcairo-2.dll
-libcairo-gobject-2.dll
-libcairomm-1.0-1.dll
-libcairo-script-interpreter-2.dll
-libcppunit-1-12-1.dll
-libcrypto-10.dll
-libcurl-4.dll
-libexpat-1.dll
-libfftw3-3.dll
-libfftw3f-3.dll
-libfontconfig-1.dll
-libfreetype-6.dll
-libgailutil-18.dll
-libgcc_s_sjlj-1.dll
-libgdkmm-2.4-1.dll
-libgdk_pixbuf-2.0-0.dll
-libgdk-win32-2.0-0.dll
-libgio-2.0-0.dll
-libgiomm-2.4-1.dll
-libglib-2.0-0.dll
-libglibmm-2.4-1.dll
-libglibmm_generate_extra_defs-2.4-1.dll
-libgmodule-2.0-0.dll
-libgnurx-0.dll
-libgobject-2.0-0.dll
-libgthread-2.0-0.dll
-libgtkmm-2.4-1.dll
-libgtk-win32-2.0-0.dll
-libharfbuzz-0.dll
-iconv.dll
-libFLAC-8.dll
-libogg-0.dll
-libvorbis-0.dll
-libvorbisenc-2.dll
-libffi-6.dll
-libidn-11.dll
-libintl-8.dll
-liblo-7.dll
-libpango-1.0-0.dll
-libpangocairo-1.0-0.dll
-libpangoft2-1.0-0.dll
-libpangomm-1.4-1.dll
-libpangowin32-1.0-0.dll
-libpixman-1-0.dll
-libpng15-15.dll
-rubberband-2.dll
-libsamplerate-0.dll
-libsigc-2.0-0.dll
-libsndfile-1.dll
-libssh2-1.dll
-libssl-10.dll
-libstdc++-6.dll
-libtag.dll
-libxml2-2.dll
-pthreadGC2.dll
-portaudio-2.dll
-vamp-hostsdk-3.dll
-vamp-sdk-2.dll
-zlib1.dll
-lilv-0.dll
-sratom-0-0.dll
-serd-0-0.dll
-sord-0-0.dll
-'
-
-WITH_JACK='TRUE'
-WITH_LV2='TRUE'
-
-. ./copydll-fedora.sh
-. ./package.sh
diff --git a/tools/windows_packaging/package-f20.sh b/tools/windows_packaging/package-f20.sh
deleted file mode 100755
index a60d53c020..0000000000
--- a/tools/windows_packaging/package-f20.sh
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/bash
-
-DLLS='
-jack-0.dll
-jackserver-0.dll
-libatk-1.0-0.dll
-libatkmm-1.6-1.dll
-libbz2-1.dll
-libcairo-2.dll
-libcairo-gobject-2.dll
-libcairomm-1.0-1.dll
-libcairo-script-interpreter-2.dll
-libcppunit-1-12-1.dll
-libcrypto-10.dll
-libcurl-4.dll
-libexpat-1.dll
-libfftw3-3.dll
-libfftw3f-3.dll
-libfontconfig-1.dll
-libfreetype-6.dll
-libgailutil-18.dll
-libgcc_s_sjlj-1.dll
-libgdkmm-2.4-1.dll
-libgdk_pixbuf-2.0-0.dll
-libgdk-win32-2.0-0.dll
-libgio-2.0-0.dll
-libgiomm-2.4-1.dll
-libglib-2.0-0.dll
-libglibmm-2.4-1.dll
-libglibmm_generate_extra_defs-2.4-1.dll
-libgmodule-2.0-0.dll
-libgnurx-0.dll
-libgobject-2.0-0.dll
-libgthread-2.0-0.dll
-libgtkmm-2.4-1.dll
-libgtk-win32-2.0-0.dll
-libharfbuzz-0.dll
-iconv.dll
-libFLAC-8.dll
-libogg-0.dll
-libvorbis-0.dll
-libvorbisenc-2.dll
-libffi-6.dll
-libidn-11.dll
-libintl-8.dll
-liblo-7.dll
-libpango-1.0-0.dll
-libpangocairo-1.0-0.dll
-libpangoft2-1.0-0.dll
-libpangomm-1.4-1.dll
-libpangowin32-1.0-0.dll
-libpixman-1-0.dll
-libpng16-16.dll
-rubberband-2.dll
-libsamplerate-0.dll
-libsigc-2.0-0.dll
-libsndfile-1.dll
-libssh2-1.dll
-libssl-10.dll
-libstdc++-6.dll
-libtag.dll
-libxml2-2.dll
-libwinpthread-1.dll
-portaudio-2.dll
-vamp-hostsdk-3.dll
-vamp-sdk-2.dll
-zlib1.dll
-lilv-0.dll
-sratom-0-0.dll
-serd-0-0.dll
-sord-0-0.dll
-'
-
-WITH_JACK='TRUE'
-WITH_LV2='TRUE'
-
-. ./copydll-fedora.sh
-. ./package.sh
diff --git a/tools/windows_packaging/package.sh b/tools/windows_packaging/package.sh
deleted file mode 100755
index c097b73603..0000000000
--- a/tools/windows_packaging/package.sh
+++ /dev/null
@@ -1,150 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-. ./print-env.sh
-
-if [ -z "$DLLS" ]; then
- echo "ERROR: DLLS variable is not defined..."
- exit 1
-fi
-
-cd $BASE || exit 1
-
-if ! test -f $BUILD_CACHE_FILE; then
- echo "ERROR: $APPNAME is not configured and built yet..."
- exit 1
-fi
-
-if [ -d $PACKAGE_DIR ]; then
- echo "Removing old package directory structure ..."
- rm -rf $PACKAGE_DIR || exit 1
-fi
-
-./waf --destdir=$PACKAGE_DIR install || exit 1
-
-echo "Moving Ardour dll's and executable to $PACKAGE_DIR ..."
-
-mv $PACKAGE_DIR/lib/ardour3/*.dll $PACKAGE_DIR || exit 1
-mv $PACKAGE_DIR/lib/ardour3/*.exe $PACKAGE_DIR || exit 1
-
-echo "Deleting import libs ..."
-
-rm $PACKAGE_DIR/lib/*dll.a
-
-# delete sh script
-rm $PACKAGE_DIR/ardour3
-
-if test x$WITH_TESTS != x ; then
- echo "Copying tests and test data to $PACKAGE_DIR ..."
- cp $BUILD_DIR/libs/pbd/run-tests.exe $PACKAGE_DIR/pbd-run-tests.exe
- cp -r $BASE/libs/pbd/test $PACKAGE_DIR/pbd_testdata
-
- cp $BUILD_DIR/libs/midi++2/run-tests.exe $PACKAGE_DIR/midipp-run-tests.exe
-
- cp $BUILD_DIR/libs/evoral/run-tests.exe $PACKAGE_DIR/evoral-run-tests.exe
- mkdir -p $PACKAGE_DIR/evoral_testdata
- cp -r $BASE/libs/evoral/test/testdata/* $PACKAGE_DIR/evoral_testdata
-
- cp -r $BASE/libs/ardour/test/data $PACKAGE_DIR/ardour_testdata
-fi
-
-echo "Copying config files to $PACKAGE_DIR ..."
-mkdir -p $PACKAGE_DIR/etc
-cp -RL $MINGW_ROOT/etc/fonts $PACKAGE_DIR/etc
-cp -RL $MINGW_ROOT/etc/gtk-2.0 $PACKAGE_DIR/etc
-cp -RL $MINGW_ROOT/etc/pango $PACKAGE_DIR/etc
-
-cp -R $MINGW_ROOT/lib/gtk-2.0 $PACKAGE_DIR/lib
-cp -R $MINGW_ROOT/lib/gdk-pixbuf-2.0 $PACKAGE_DIR/lib
-cp $TOOLS_DIR/loaders.cache $PACKAGE_DIR/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
-
-mkdir -p $PACKAGE_DIR/lib/pango/1.8.0/modules
-cp -r $MINGW_ROOT/lib/pango/1.8.0/modules/*.dll $PACKAGE_DIR/lib/pango/1.8.0/modules
-
-cp $TOOLS_DIR/pango.modules $PACKAGE_DIR/etc/pango
-
-cp $TOOLS_DIR/README $PACKAGE_DIR
-
-echo "Copying mingw shared libraries to $PACKAGE_DIR ..."
-
-for i in $DLLS;
-do
- copydll "$i" "$PACKAGE_DIR" || exit 1
-done
-
-if test x$WITH_JACK != x; then
- echo "Copying JACK server and drivers to $PACKAGE_DIR ..."
- cp $MINGW_ROOT/bin/jackd.exe $PACKAGE_DIR
- cp -r $MINGW_ROOT/bin/jack $PACKAGE_DIR
-fi
-
-if test x$WITH_LV2 != x; then
- echo "Moving Bundled LV2 $PACKAGE_DIR ..."
- mv $PACKAGE_DIR/lib/lv2 $PACKAGE_DIR/lib/ardour3/LV2
-fi
-
-SRC_DIRS='
-libs/ardour
-libs/pbd
-libs/gtkmm2ext
-libs/midi++2
-libs/evoral
-libs/panners
-libs/timecode
-libs/audiographer
-'
-
-if [ x$DEBUG = xT ]; then
-
- PACKAGE_SRC_DIR=$PACKAGE_DIR/src
- echo "Copying source files to $PACKAGE_SRC_DIR ..."
- mkdir -p $PACKAGE_SRC_DIR/libs
- cp -r $BASE/gtk2_ardour $PACKAGE_SRC_DIR
- for i in $SRC_DIRS;
- do
- cp -r -p $BASE/$i $PACKAGE_SRC_DIR/libs
- done
-
- if test x$WITH_JACK != x; then
- echo "Copying JACK utility programs to $PACKAGE_DIR ..."
- cp $MINGW_ROOT/bin/jack_*.exe $PACKAGE_DIR
- fi
-
- if test x$WITH_LV2 != x; then
- echo "Copying LV2 utility programs to $PACKAGE_DIR ..."
- cp $MINGW_ROOT/bin/lilv-bench.exe $PACKAGE_DIR
- cp $MINGW_ROOT/bin/lv2info.exe $PACKAGE_DIR
- cp $MINGW_ROOT/bin/lv2ls.exe $PACKAGE_DIR
- fi
-
- #echo "Copying any debug files to $PACKAGE_DIR ..."
- #cp $MINGW_ROOT/bin/*.debug $PACKAGE_DIR
-
- echo "Copying gdb and config files to $PACKAGE_DIR ..."
- cp $MINGW_ROOT/bin/gdb.exe $PACKAGE_DIR
- cp $TOOLS_DIR/gdbinit $PACKAGE_DIR/.gdbinit
- cp $TOOLS_DIR/gdbinit_home $PACKAGE_DIR/gdbinit_home
- cp $TOOLS_DIR/gdb.bat $PACKAGE_DIR/gdb.bat
- cp $TOOLS_DIR/gdb-ardour.bat $PACKAGE_DIR/gdb-ardour.bat
-
- echo "Copying Gtk demo to $PACKAGE_DIR ..."
- cp $MINGW_ROOT/bin/gtk-demo.exe $PACKAGE_DIR
-else
- echo "Optimized build Stripping executable ..."
- find $PACKAGE_DIR -type f -name "*.exe*" | xargs $STRIP
- echo "Stripping libraries ..."
- find $PACKAGE_DIR -type f -name "*.dll*" | xargs $STRIP
-fi
-
-if [ "$1" == "--tarball" ]; then
- echo "Creating tarball from $PACKAGE_DIR ..."
- cd $BASE || exit 1
- tar -cvJf $PACKAGE_DIR.tar.xz $PACKAGE_DIR
-fi
-
-if [ "$1" == "--zip" ]; then
- echo "Creating zip file from $PACKAGE_DIR ..."
- cd $BASE || exit 1
- zip -r $PACKAGE_DIR.zip $PACKAGE_DIR
-fi
diff --git a/tools/windows_packaging/package_win32.sh b/tools/windows_packaging/package_win32.sh
deleted file mode 100755
index 5ef6c17cf9..0000000000
--- a/tools/windows_packaging/package_win32.sh
+++ /dev/null
@@ -1,242 +0,0 @@
-#!/bin/bash
-function copydll () {
- if [ -f $GTK/bin/$1 ] ; then
- echo "cp $GTK/bin/$1 $2"
- cp $GTK/bin/$1 $2 || return 1
- return 0
- fi
-
- if [ -f $GTK/lib/$1 ] ; then
- echo "cp $GTK/lib/$1 $2"
- cp $GTK/lib/$1 $2 || return 1
- return 0
- fi
-
- if [ -f $A3/bin/$1 ] ; then
- echo "cp $A3/bin/$1 $2"
- cp $A3/bin/$1 $2 || return 1
- return 0
- fi
-
- if [ -f $A3/lib/$1 ] ; then
- echo "$A3/lib/$1 $2"
- cp $A3/lib/$1 $2 || return 1
- return 0
- fi
- if which $1 ; then
- echo "cp `which $1` $2"
- cp `which $1` $2 || return 1
- return 0
- fi
-
- echo "there is no $1"
- return 1
-}
-
-# libcrypto-10.dll -- OOPS
-# libgnomecanvasmm-2.6-1.dll -- OOPS
-# iconv.dll == libiconv-2.dll
-# libpng15-15.dll == libpng16-16.dll
-# liblo-7.dll == liblo.dll
-
-ABANDONEDDLLS='
-jack-0.dll
-jackserver-0.dll
-libbz2-1.dll
-libcppunit-1-12-1.dll
-libexpat-1.dll
-libgnurx-0.dll
-libharfbuzz-0.dll
-libFLAC-8.dll
-libvorbis-0.dll
-libvorbisenc-2.dll
-libidn-11.dll
-libssh2-1.dll
-libssl-10.dll
-pthreadGC2.dll
-'
-
-DLLS='
-libiconv-2.dll
-libpng16-16.dll
-liblo.dll
-libart_lgpl_2-2.dll
-libatk-1.0-0.dll
-libatkmm-1.6-1.dll
-libcairo-2.dll
-libcairo-gobject-2.dll
-libcairomm-1.0-1.dll
-libcairo-script-interpreter-2.dll
-libcurl-4.dll
-libfftw3-3.dll
-libfftw3f-3.dll
-libfontconfig-1.dll
-libfreetype-6.dll
-libgailutil-18.dll
-libgdkmm-2.4-1.dll
-libgdk_pixbuf-2.0-0.dll
-libgdk-win32-2.0-0.dll
-libgio-2.0-0.dll
-libgiomm-2.4-1.dll
-libglib-2.0-0.dll
-libglibmm-2.4-1.dll
-libglibmm_generate_extra_defs-2.4-1.dll
-libgmodule-2.0-0.dll
-libgnomecanvas-2-0.dll
-libgobject-2.0-0.dll
-libgthread-2.0-0.dll
-libgtkmm-2.4-1.dll
-libgtk-win32-2.0-0.dll
-libiconv-2.dll
-libogg-0.dll
-libffi-6.dll
-libintl-8.dll
-libpango-1.0-0.dll
-libpangocairo-1.0-0.dll
-libpangoft2-1.0-0.dll
-libpangomm-1.4-1.dll
-libpangowin32-1.0-0.dll
-libpixman-1-0.dll
-libsamplerate-0.dll
-libsigc-2.0-0.dll
-libsndfile-1.dll
-libxml2-2.dll
-zlib1.dll
-libstdc++-6.dll
-libgcc_s_sjlj-1.dll
-libwinpthread-1.dll
-libeay32.dll
-ssleay32.dll
-libregex-1.dll
-libportaudio-2.dll
-'
-. ./win32-env.sh
-. ./print-env.sh
-
-cd $BASE || exit 1
-
-if ! test -f $BUILD_CACHE_FILE; then
- echo "ERROR: $APPNAME is not configured and built yet..."
- exit 1
-fi
-
-if [ -d $PACKAGE_DIR ]; then
- echo "Removing old package directory structure ..."
- rm -rf $PACKAGE_DIR || exit 1
-fi
-echo "./waf --destdir=$PACKAGE_DIR install"
-
-./waf --destdir=$PACKAGE_DIR install || exit 1
-
-echo "Moving everything from $PACKAGE_DIR/msys to $PACKAGE_DIR ..."
-mv $PACKAGE_DIR/msys/* $PACKAGE_DIR || exit 1
-rmdir $PACKAGE_DIR/msys || exit 1
-
-
-echo "Moving Ardour dll's and executable to $PACKAGE_DIR ..."
-
-echo "mv $PACKAGE_DIR/lib/ardour3/*.dll $PACKAGE_DIR"
-echo "mv $PACKAGE_DIR/lib/ardour3/*.exe $PACKAGE_DIR"
-
-mv $PACKAGE_DIR/lib/ardour3/*.dll $PACKAGE_DIR || exit 1
-mv $PACKAGE_DIR/lib/ardour3/*.exe $PACKAGE_DIR || exit 1
-
-echo "Deleting import libs ..."
-
-rm $PACKAGE_DIR/lib/*dll.a || exit 1
-
-# delete sh script
-rm $PACKAGE_DIR/ardour3 || exit 1
-
-if test x$WITH_TESTS != x ; then
- echo "Copying tests and test data to $PACKAGE_DIR ..."
- cp $BUILD_DIR/libs/pbd/run-tests.exe $PACKAGE_DIR/pbd-run-tests.exe || exit 1
- cp -r $BASE/libs/pbd/test $PACKAGE_DIR/pbd_testdata || exit 1
-
- cp $BUILD_DIR/libs/evoral/run-tests.exe $PACKAGE_DIR/evoral-run-tests.exe || exit 1
- mkdir -p $PACKAGE_DIR/test/testdata || exit 1
- cp -r $BASE/libs/evoral/test/testdata/TakeFive.mid $PACKAGE_DIR/test/testdata || exit 1
-
- cp -r $BASE/libs/ardour/test/data $PACKAGE_DIR/ardour_testdata || exit 1
-fi
-
-echo "Copying mingw config files to $PACKAGE_DIR ..."
-# just copy it all for now
-cp -r $MINGW_ROOT/etc $PACKAGE_DIR || exit 1
-
-cp -r $GTK/lib/gtk-2.0 $PACKAGE_DIR/lib || exit 1
-cp -r $GTK/lib/gdk-pixbuf-2.0 $PACKAGE_DIR/lib || exit 1
-cp $TOOLS_DIR/loaders.cache $PACKAGE_DIR/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache || exit 1
-
-mkdir -p $PACKAGE_DIR/lib/pango/1.6.0/modules || exit 1
-cp -r $GTK/lib/pango/1.6.0/modules/*.dll $PACKAGE_DIR/lib/pango/1.6.0/modules || exit 1
-
-cp -r $TOOLS_DIR/mingw64/* $PACKAGE_DIR/etc || exit 1
-
-echo "Copying mingw shared libraries to $PACKAGE_DIR ..."
-
-for i in $DLLS;
-do
-copydll "$i" "$PACKAGE_DIR" || exit 1
-done
-
-echo "Copying JACK server and drivers to $PACKAGE_DIR ..."
-
-# VK: -- FIXIT cp $MINGW_ROOT/bin/jackd.exe $PACKAGE_DIR || exit 1
-# VK: -- FIXIT cp -r $MINGW_ROOT/bin/jack $PACKAGE_DIR || exit 1
-# VK: -- FIXIT cp $MINGW_ROOT/bin/libportaudio-2.dll $PACKAGE_DIR || exit 1
-
-SRC_DIRS='
-libs/ardour
-libs/pbd
-libs/gtkmm2ext
-libs/midi++2
-libs/evoral
-libs/panners
-libs/timecode
-libs/audiographer
-'
-
-if test x$DEBUG != x ; then
-
- PACKAGE_SRC_DIR=$PACKAGE_DIR/src
- echo "Copying source files to $PACKAGE_SRC_DIR ..."
- mkdir -p $PACKAGE_SRC_DIR/libs || exit 1
- cp -r $BASE/gtk2_ardour $PACKAGE_SRC_DIR || exit 1
- for i in $SRC_DIRS;
- do
- cp -r -p $BASE/$i $PACKAGE_SRC_DIR/libs || exit 1
- done
-
- echo "Copying JACK utility programs to $PACKAGE_DIR ..."
- # VK: -- FIXIT cp $MINGW_ROOT/bin/jack_*.exe $PACKAGE_DIR || exit 1
-
- echo "Copying any debug files to $PACKAGE_DIR ..."
- # VK: -- FIXIT cp $MINGW_ROOT/bin/*.debug $PACKAGE_DIR || exit 1
-
- echo "Copying gdb to $PACKAGE_DIR ..."
- cp $MINGW_ROOT/bin/gdb.exe $PACKAGE_DIR || exit 1
-
- echo "Copying .gdbinit to $PACKAGE_DIR ..."
- cp $TOOLS_DIR/gdbinit $PACKAGE_DIR/.gdbinit || exit 1
-
- echo "Copying Gtk demo to $PACKAGE_DIR ..."
- cp $GTK/bin/gtk-demo.exe $PACKAGE_DIR || exit 1
-else
- echo "Optimized build Stripping executable ..."
- $STRIP $PACKAGE_DIR/ardour-3.0.exe || exit 1
- echo "Stripping libraries ..." || exit 1
- find $PACKAGE_DIR -type f -name "*.dll*" | xargs $STRIP
-fi
-
-if [ "$1" == "--tarball" ]; then
- echo "Creating tarball from $PACKAGE_DIR ..."
- cd $BASE || exit 1
- tar -cvJf $PACKAGE_DIR.tar.xz $PACKAGE_DIR || exit 1
-fi
-
-if [ "$1" == "--zip" ]; then
- echo "Creating zip file from $PACKAGE_DIR ..."
- cd $BASE || exit 1
- zip -r $PACKAGE_DIR.zip $PACKAGE_DIR || exit 1
-fi
diff --git a/tools/windows_packaging/pango.modules b/tools/windows_packaging/pango.modules
deleted file mode 100644
index 5ea7516bd1..0000000000
--- a/tools/windows_packaging/pango.modules
+++ /dev/null
@@ -1,18 +0,0 @@
-# Pango Modules file
-# Automatically generated file, do not edit
-#
-# ModulesPath = Z:\usr\i686-w64-mingw32\sys-root\mingw\lib\pango\1.8.0\modules
-#
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-arabic-lang.dll" ArabicScriptEngineLang PangoEngineLang PangoRenderNone arabic:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-basic-fc.dll" BasicScriptEngineFc PangoEngineShape PangoRenderFc common:
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" devaIndicScriptEngineLang PangoEngineLang PangoRenderNone devanagari:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" bengIndicScriptEngineLang PangoEngineLang PangoRenderNone bengali:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" guruIndicScriptEngineLang PangoEngineLang PangoRenderNone gurmukhi:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" gujrIndicScriptEngineLang PangoEngineLang PangoRenderNone gujarati:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" oryaIndicScriptEngineLang PangoEngineLang PangoRenderNone oriya:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" tamlIndicScriptEngineLang PangoEngineLang PangoRenderNone tamil:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" teluIndicScriptEngineLang PangoEngineLang PangoRenderNone telugu:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" kndaIndicScriptEngineLang PangoEngineLang PangoRenderNone kannada:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" mlymIndicScriptEngineLang PangoEngineLang PangoRenderNone malayalam:*
-"..\\..\\lib\\pango\\1.8.0\\modules\\pango-indic-lang.dll" sinhIndicScriptEngineLang PangoEngineLang PangoRenderNone sinhala:*
-
diff --git a/tools/windows_packaging/print-env.sh b/tools/windows_packaging/print-env.sh
deleted file mode 100755
index d6f63a2e5b..0000000000
--- a/tools/windows_packaging/print-env.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-echo "Build Environment Settings...."
-echo " "
-echo " "
-echo "HOST : $HOST"
-echo "MINGW_ROOT : $MINGW_ROOT"
-echo "PKG_CONFIG_PREFIX : $PKG_CONFIG_PREFIX"
-echo "PKG_CONFIG_LIBDIR : $PKG_CONFIG_LIBDIR"
-echo "PKGCONFIG : $PKGCONFIG"
-echo "AR : $AR"
-echo "RANLIB : $RANLIB"
-echo "CC : $CC"
-echo "CPP : $CPP"
-echo "CXX : $CXX"
-echo "AS : $AS"
-echo "LINK_CC : $LINK_CC"
-echo "LINK_CXX : $LINK_CXX"
-echo "WINRC : $WINRC"
-echo "STRIP : $STRIP"
-echo " "
-echo " "
-echo "Path Environment Settings...."
-echo " "
-echo " "
-echo "BASE : $BASE"
-echo "BUILD_DIR : $BUILD_DIR"
-echo "BUILD_CACHE_FILE : $BUILD_CACHE_FILE"
-echo "TOOLS_DIR : $TOOLS_DIR"
-echo "PACKAGE_DIR : $PACKAGE_DIR"
-echo " "
-echo " "
-echo "Config Environment Settings...."
-echo " "
-echo " "
-echo "APPNAME : $APPNAME"
-echo "VERSION : $VERSION"
-echo "DEBUG : $DEBUG"
-echo "WITH_TESTS : $WITH_TESTS"
-echo "ARDOUR_DATA_DIR : $ARDOUR_DATA_DIR"
-echo " "
-echo " "
diff --git a/tools/windows_packaging/waf.sh b/tools/windows_packaging/waf.sh
deleted file mode 100755
index 5b581ba85e..0000000000
--- a/tools/windows_packaging/waf.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-cd $BASE || exit 1
-./waf "$@"
diff --git a/tools/windows_packaging/win32-env.sh b/tools/windows_packaging/win32-env.sh
deleted file mode 100755
index 5bdf4d2238..0000000000
--- a/tools/windows_packaging/win32-env.sh
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/bash
-
-BASE=$(readlink -f $0)
-BASE=$(dirname $BASE) # up one
-BASE=$(dirname $BASE) # up one more
-BASE=$(dirname $BASE) # up one more
-
-HOST=x86_64-w64-mingw32
-MINGW_ROOT=/mingw
-GTK=$HOME/gtk/inst
-A3=$HOME/A3/inst
-
-export PKG_CONFIG_PREFIX=$MINGW_ROOT
-export PKG_CONFIG_LIBDIR=$MINGW_ROOT/lib/pkgconfig
-export PKGCONFIG=pkg-config
-export AR=ar
-export RANLIB=ranlib
-export CC=gcc
-export CPP=g++
-export CXX=g++
-export AS=as
-export LINK_CC=gcc
-export LINK_CXX=g++
-export WINRC=windres
-export STRIP=strip
-
-BUILD_DIR=$BASE/build
-BUILD_CACHE_FILE=$BUILD_DIR/c4che/_cache.py
-TOOLS_DIR=$BASE/tools/windows_packaging
-
-. ../define_versions.sh
-
-APPNAME=`grep -m 1 '^APPNAME' $BASE/wscript | awk '{print $3}' | sed "s/'//g"`
-
-# These are only relevant after a build
-if test -f $BUILD_CACHE_FILE
-then
- # Figure out the Build Type
- if grep -q "DEBUG = True" $BUILD_CACHE_FILE; then
- DEBUG=1
- PACKAGE_DIR="$HOME/$APPNAME-win32-dbg"
- else
- PACKAGE_DIR="$HOME/$APPNAME-win32"
- fi
-
- if grep -q "BUILD_TESTS = True" $BUILD_CACHE_FILE; then
- WITH_TESTS=1
- fi
-
- ARDOUR_DATA_DIR=$PACKAGE_DIR/msys/share/ardour3
-fi
-
-# put this somewhere better...
-VIRT_IMAGE_PATH=$HOME/Data/virt-images/winxp.raw
diff --git a/tools/windows_packaging/wine-ardour-tests.sh b/tools/windows_packaging/wine-ardour-tests.sh
deleted file mode 100755
index a4bd033c8b..0000000000
--- a/tools/windows_packaging/wine-ardour-tests.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-. ./wine-env.sh
-
-if [ "$1" == "--list" ]; then
- TESTS='test_*'
- for test_program in `find -name "$TESTS" -type f -perm /u+x`;
- do
- echo "$test_program"
- done
- exit 0
-fi
-
-if [ "$1" == "--single" ] || [ "$2" == "--single" ]; then
- if [ "$1" == "--single" ]; then
- TESTS="test_*$2*"
- elif [ "$2" == "--single" ]; then
- TESTS="test_*$3*"
- else
- TESTS='test_*'
- fi
- for test_program in `find . -name "$TESTS" -type f -perm /u+x`;
- do
- echo "Running $test_program..."
- wine "$test_program"
- done
-else
- wine run-tests.exe
-fi
diff --git a/tools/windows_packaging/wine-ardour.sh b/tools/windows_packaging/wine-ardour.sh
deleted file mode 100755
index cb6547427e..0000000000
--- a/tools/windows_packaging/wine-ardour.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-. ./wine-env.sh
-
-wine ardour-3.3.exe
diff --git a/tools/windows_packaging/wine-env.sh b/tools/windows_packaging/wine-env.sh
deleted file mode 100755
index 95d0bf79a0..0000000000
--- a/tools/windows_packaging/wine-env.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-cd $BASE
-
-if test ! -d $PACKAGE_DIR; then
- echo "Win32 package directory does not exist"
- exit 1
-fi
-
-LIBS=$BUILD_DIR/libs
-
-export ARDOUR_PATH=$BASE/gtk2_ardour/icons:$BASE/gtk2_ardour/pixmaps:$BASE/build/default/gtk2_ardour:$BASE/gtk2_ardour:.
-export ARDOUR_SURFACES_PATH=$LIBS/surfaces/osc:$LIBS/surfaces/generic_midi:$LIBS/surfaces/tranzport:$LIBS/surfaces/powermate:$LIBS/surfaces/mackie
-export ARDOUR_PANNER_PATH=$LIBS/panners/2in2out:$LIBS/panners/1in2out:$LIBS/panners/vbap
-export ARDOUR_DATA_PATH=$BASE/gtk2_ardour:build/default/gtk2_ardour:.
-
-export VAMP_PATH=$LIBS/vamp-plugins${VAMP_PATH:+:$VAMP_PATH}
-
-export PBD_TEST_PATH=$BASE/libs/pbd/test/
-
-cd $PACKAGE_DIR
diff --git a/tools/windows_packaging/wine-evoral-tests.sh b/tools/windows_packaging/wine-evoral-tests.sh
deleted file mode 100755
index 50b77f70c8..0000000000
--- a/tools/windows_packaging/wine-evoral-tests.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-. ./wine-env.sh
-
-wine evoral-run-tests.exe
diff --git a/tools/windows_packaging/wine-pbd-tests.sh b/tools/windows_packaging/wine-pbd-tests.sh
deleted file mode 100755
index a7306caf6c..0000000000
--- a/tools/windows_packaging/wine-pbd-tests.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-. ./wine-env.sh
-
-wine pbd-run-tests.exe