The flags /D_STATIC_CPPLIB and /D_DISABLE_DEPRECATE_STATIC_CPPLIB were required on Visual Studio 2010 to avoid bundling msvcp*.dll. These flags do not work since Visual Studio 2012.
These flags are initially added to common set of Visual Studio compiler flags when JavaFX is built. Before JDK-8289174, these flags were then removed if JavaFX is built on Visual Studio 2010. After JDK-8289174, these flags are always removed when JavaFX is built. As the addition and removal of these flags are now effectively no-op, references to these flags can be removed. ------------- Commit messages: - Remove redundant flags /D_STATIC_CPPLIB and /D_DISABLE_DEPRECATE_STATIC_CPPLIB Changes: https://git.openjdk.org/jfx/pull/2083/files Webrev: https://webrevs.openjdk.org/?repo=jfx&pr=2083&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8342733 Stats: 4 lines in 1 file changed: 0 ins; 3 del; 1 mod Patch: https://git.openjdk.org/jfx/pull/2083.diff Fetch: git fetch https://git.openjdk.org/jfx.git pull/2083/head:pull/2083 PR: https://git.openjdk.org/jfx/pull/2083
