From 4c772629f26122b687680489bdf7305513e0c000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Tue, 12 Jan 2021 18:59:52 +0100 Subject: [PATCH] Remove support for OPTLINK builds. This didn't link anyway and since 64-bit compilation is the default for DMD nowadays, there is no reason whatsoever to keep supporting it. --- dub.sdl | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/dub.sdl b/dub.sdl index 40d503a..aae914f 100644 --- a/dub.sdl +++ b/dub.sdl @@ -36,27 +36,15 @@ configuration "kqueue" { } configuration "winapi" { - platforms "windows-x86_64" "windows-x86_mscoff" "windows-ldc" "windows-gdc" + platforms "windows" versions "EventcoreWinAPIDriver" } configuration "select" { - platforms "posix" "windows-x86_64" "windows-x86_mscoff" + platforms "posix" "windows" versions "EventcoreSelectDriver" } -configuration "winapi-optlink" { - platforms "windows-x86-dmd" - versions "EventcoreWinAPIDriver" - sourceFiles "lib/ws2_32.lib" "lib/kernel32.lib" -} - -configuration "select-optlink" { - platforms "windows-x86-dmd" - versions "EventcoreSelectDriver" - sourceFiles "lib/ws2_32.lib" "lib/kernel32.lib" -} - configuration "libasync" { dependency "libasync" version="~>0.8.2" versions "EventcoreLibasyncDriver"