diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-05-24 11:45:26 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-05-24 13:46:03 +0200 |
commit | cb7a39ac64253a6d0e11cfe1837ad3da2465c38e (patch) | |
tree | 300c05bf767b1e1bf6bd8b0f95911fb79054c2b5 /external/boost | |
parent | d6865e5cec34f5f521e0f9ec4ef3c7ad04503cfe (diff) |
disable warnings in external libs
As in, really disable, so that they do not even show. This moreover
avoids tons of D9025 warnings from MSVC about overriding -W4 with -w.
Change-Id: Ia2e72fd72d883d91bdd89e467ee42f259e2ae033
Reviewed-on: https://gerrit.libreoffice.org/72899
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'external/boost')
-rw-r--r-- | external/boost/StaticLibrary_boost_date_time.mk | 2 | ||||
-rw-r--r-- | external/boost/StaticLibrary_boost_filesystem.mk | 2 | ||||
-rw-r--r-- | external/boost/StaticLibrary_boost_iostreams.mk | 2 | ||||
-rw-r--r-- | external/boost/StaticLibrary_boost_locale.mk | 2 | ||||
-rw-r--r-- | external/boost/StaticLibrary_boost_system.mk | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/external/boost/StaticLibrary_boost_date_time.mk b/external/boost/StaticLibrary_boost_date_time.mk index 9f871ee164fe..573947fd71ee 100644 --- a/external/boost/StaticLibrary_boost_date_time.mk +++ b/external/boost/StaticLibrary_boost_date_time.mk @@ -11,7 +11,7 @@ $(eval $(call gb_StaticLibrary_StaticLibrary,boost_date_time)) $(eval $(call gb_StaticLibrary_use_unpacked,boost_date_time,boost)) -$(eval $(call gb_StaticLibrary_set_warnings_not_errors,boost_date_time)) +$(eval $(call gb_StaticLibrary_set_warnings_disabled,boost_date_time)) # disable "auto link" "feature" on MSVC $(eval $(call gb_StaticLibrary_add_defs,boost_date_time,\ diff --git a/external/boost/StaticLibrary_boost_filesystem.mk b/external/boost/StaticLibrary_boost_filesystem.mk index 024308abd320..a49f06b6dba5 100644 --- a/external/boost/StaticLibrary_boost_filesystem.mk +++ b/external/boost/StaticLibrary_boost_filesystem.mk @@ -11,7 +11,7 @@ $(eval $(call gb_StaticLibrary_StaticLibrary,boost_filesystem)) $(eval $(call gb_StaticLibrary_use_unpacked,boost_filesystem,boost)) -$(eval $(call gb_StaticLibrary_set_warnings_not_errors,boost_filesystem)) +$(eval $(call gb_StaticLibrary_set_warnings_disabled,boost_filesystem)) # disable "auto link" "feature" on MSVC $(eval $(call gb_StaticLibrary_add_defs,boost_filesystem,\ diff --git a/external/boost/StaticLibrary_boost_iostreams.mk b/external/boost/StaticLibrary_boost_iostreams.mk index f3049ba2570e..0884a5aee2cd 100644 --- a/external/boost/StaticLibrary_boost_iostreams.mk +++ b/external/boost/StaticLibrary_boost_iostreams.mk @@ -9,7 +9,7 @@ $(eval $(call gb_StaticLibrary_StaticLibrary,boost_iostreams)) -$(eval $(call gb_StaticLibrary_set_warnings_not_errors,boost_iostreams)) +$(eval $(call gb_StaticLibrary_set_warnings_disabled,boost_iostreams)) # disable "auto link" "feature" on MSVC $(eval $(call gb_StaticLibrary_add_defs,boost_iostreams,\ diff --git a/external/boost/StaticLibrary_boost_locale.mk b/external/boost/StaticLibrary_boost_locale.mk index 520131fb9174..5481097728bd 100644 --- a/external/boost/StaticLibrary_boost_locale.mk +++ b/external/boost/StaticLibrary_boost_locale.mk @@ -11,7 +11,7 @@ $(eval $(call gb_StaticLibrary_StaticLibrary,boost_locale)) $(eval $(call gb_StaticLibrary_use_unpacked,boost_locale,boost)) -$(eval $(call gb_StaticLibrary_set_warnings_not_errors,boost_locale)) +$(eval $(call gb_StaticLibrary_set_warnings_disabled,boost_locale)) # disable "auto link" "feature" on MSVC $(eval $(call gb_StaticLibrary_add_defs,boost_locale,\ diff --git a/external/boost/StaticLibrary_boost_system.mk b/external/boost/StaticLibrary_boost_system.mk index 03970afa41d3..e4b05d7b5cde 100644 --- a/external/boost/StaticLibrary_boost_system.mk +++ b/external/boost/StaticLibrary_boost_system.mk @@ -11,7 +11,7 @@ $(eval $(call gb_StaticLibrary_StaticLibrary,boost_system)) $(eval $(call gb_StaticLibrary_use_unpacked,boost_system,boost)) -$(eval $(call gb_StaticLibrary_set_warnings_not_errors,boost_system)) +$(eval $(call gb_StaticLibrary_set_warnings_disabled,boost_system)) # disable "auto link" "feature" on MSVC $(eval $(call gb_StaticLibrary_add_defs,boost_system,\ |