aboutsummaryrefslogtreecommitdiff
path: root/ports/ode/0001-add-static-runtime-option.patch
diff options
context:
space:
mode:
authorJonas Karlsson <jonaskarlsson@fripost.org>2019-09-30 20:22:01 +0200
committerJonas Karlsson <jonaskarlsson@fripost.org>2019-10-08 10:44:14 +0200
commitf75fdd0050ab2c1ece21ff512c671d4c267ee0c7 (patch)
treeef2ba7c1d854c797c8a90ef024d9ecfea97485fa /ports/ode/0001-add-static-runtime-option.patch
parent9f26ae8bf0888c8a5b6a92c792859dde044d005f (diff)
downloadvcpkg-f75fdd0050ab2c1ece21ff512c671d4c267ee0c7.tar.gz
vcpkg-f75fdd0050ab2c1ece21ff512c671d4c267ee0c7.zip
[ode] Upgrade to 0.16
Diffstat (limited to 'ports/ode/0001-add-static-runtime-option.patch')
-rw-r--r--ports/ode/0001-add-static-runtime-option.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/ports/ode/0001-add-static-runtime-option.patch b/ports/ode/0001-add-static-runtime-option.patch
deleted file mode 100644
index 1f0d15b56..000000000
--- a/ports/ode/0001-add-static-runtime-option.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/build/premake4.lua b/build/premake4.lua
-index c39b9b7..d1559f7 100644
---- a/build/premake4.lua
-+++ b/build/premake4.lua
-@@ -150,7 +150,12 @@
- trigger = "only-double",
- description = "Only use double-precision math"
- }
--
-+
-+ newoption {
-+ trigger = "static-runtime",
-+ description = "Perform a static link against the standard runtime libraries"
-+ }
-+
- -- always clean all of the optional components and toolsets
- if _ACTION == "clean" then
- _OPTIONS["with-demos"] = ""
-@@ -253,7 +258,11 @@
- configuration { "vs2002 or vs2003", "*Lib" }
- flags { "StaticRuntime" }
-
--
-+ -- optionally enable StaticRuntime
-+ if _OPTIONS["static-runtime"] then
-+ configuration { "*" }
-+ flags { "StaticRuntime" }
-+ end
-
- ----------------------------------------------------------------------
- -- The demo projects, automated from list above. These go first so