git: 8e6f26eaaf42 - main - mail/evolution: Fix build with CMake 3.20.1 and modern compilers
Dima Panov
fluffy at FreeBSD.org
Sat Apr 24 09:32:51 UTC 2021
The branch main has been updated by fluffy:
URL: https://cgit.FreeBSD.org/ports/commit/?id=8e6f26eaaf4271ad963a88eb3fbca3dd08e5373b
commit 8e6f26eaaf4271ad963a88eb3fbca3dd08e5373b
Author: Dima Panov <fluffy at FreeBSD.org>
AuthorDate: 2021-04-24 09:28:42 +0000
Commit: Dima Panov <fluffy at FreeBSD.org>
CommitDate: 2021-04-24 09:28:42 +0000
mail/evolution: Fix build with CMake 3.20.1 and modern compilers
* PrintableOptions.cmake: Correct variable name comparison (CMake 3.20.1 issue)
* SetupBuildFlags.cmake: Correct testing of two compiler/linker build flags
(fix build with clang11+/gcc10+)
Regen patches by 'make makepatch'
Obtained from: gitlab.gnome.org repository
Approved by: portmgr blanket (trivial build fix)
---
mail/evolution/files/patch-CMakeLists.txt | 6 +--
.../patch-cmake_modules_PrintableOptions.cmake | 53 ++++++++++++++++++++++
.../patch-cmake_modules_SetupBuildFlags.cmake | 20 ++++++++
3 files changed, 76 insertions(+), 3 deletions(-)
diff --git a/mail/evolution/files/patch-CMakeLists.txt b/mail/evolution/files/patch-CMakeLists.txt
index 990927751b35..d38a5b4f155b 100644
--- a/mail/evolution/files/patch-CMakeLists.txt
+++ b/mail/evolution/files/patch-CMakeLists.txt
@@ -1,6 +1,6 @@
---- CMakeLists.txt.orig 2017-06-08 20:52:16.741243000 +0200
-+++ CMakeLists.txt 2017-06-08 20:52:25.747544000 +0200
-@@ -329,6 +329,7 @@
+--- CMakeLists.txt.orig 2021-04-23 14:06:10 UTC
++++ CMakeLists.txt
+@@ -356,6 +356,7 @@ endif(WITH_HELP)
# ******************************
set(CMAKE_REQUIRED_LIBRARIES "-liconv")
diff --git a/mail/evolution/files/patch-cmake_modules_PrintableOptions.cmake b/mail/evolution/files/patch-cmake_modules_PrintableOptions.cmake
new file mode 100644
index 000000000000..f9287b27e8ce
--- /dev/null
+++ b/mail/evolution/files/patch-cmake_modules_PrintableOptions.cmake
@@ -0,0 +1,53 @@
+--- cmake/modules/PrintableOptions.cmake.orig 2021-03-19 06:41:05 UTC
++++ cmake/modules/PrintableOptions.cmake
+@@ -19,40 +19,40 @@
+ # prints all the build options previously added with the above functions
+
+ macro(add_printable_variable_bare _name)
+- if(_name STREQUAL "")
++ if("${_name}" STREQUAL "")
+ message(FATAL_ERROR "variable name cannot be empty")
+- endif(_name STREQUAL "")
++ endif("${_name}" STREQUAL "")
+ list(APPEND _printable_options ${_name})
+ endmacro()
+
+ macro(add_printable_option _name _description _default_value)
+- if(_name STREQUAL "")
++ if("${_name}" STREQUAL "")
+ message(FATAL_ERROR "option name cannot be empty")
+- endif(_name STREQUAL "")
++ endif("${_name}" STREQUAL "")
+ option(${_name} ${_description} ${_default_value})
+ add_printable_variable_bare(${_name})
+ endmacro()
+
+ macro(add_printable_variable _name _description _default_value)
+- if(_name STREQUAL "")
++ if("${_name}" STREQUAL "")
+ message(FATAL_ERROR "variable name cannot be empty")
+- endif(_name STREQUAL "")
++ endif("${_name}" STREQUAL "")
+ set(${_name} ${_default_value} CACHE STRING ${_description})
+ add_printable_variable_bare(${_name})
+ endmacro()
+
+ macro(add_printable_variable_path _name _description _default_value)
+- if(_name STREQUAL "")
++ if("${_name}" STREQUAL "")
+ message(FATAL_ERROR "path variable name cannot be empty")
+- endif(_name STREQUAL "")
++ endif("${_name}" STREQUAL "")
+ set(${_name} ${_default_value} CACHE PATH ${_description})
+ add_printable_variable_bare(${_name})
+ endmacro()
+
+ macro(add_printable_variable_filepath _name _description _default_value)
+- if(_name STREQUAL "")
++ if("${_name}" STREQUAL "")
+ message(FATAL_ERROR "filepath variable name cannot be empty")
+- endif(_name STREQUAL "")
++ endif("${_name}" STREQUAL "")
+ set(${_name} ${_default_value} CACHE FILEPATH ${_description})
+ add_printable_variable_bare(${_name})
+ endmacro()
diff --git a/mail/evolution/files/patch-cmake_modules_SetupBuildFlags.cmake b/mail/evolution/files/patch-cmake_modules_SetupBuildFlags.cmake
new file mode 100644
index 000000000000..f3fc4a82a8b0
--- /dev/null
+++ b/mail/evolution/files/patch-cmake_modules_SetupBuildFlags.cmake
@@ -0,0 +1,20 @@
+--- cmake/modules/SetupBuildFlags.cmake.orig 2021-03-19 06:41:05 UTC
++++ cmake/modules/SetupBuildFlags.cmake
+@@ -20,7 +20,7 @@ macro(setup_build_flags _maintainer_mode)
+ -Wundef
+ -Wwrite-strings
+ -Wno-cast-function-type
+- -no-undefined
++ -Wl,--no-undefined
+ -fno-strict-aliasing
+ )
+
+@@ -34,7 +34,7 @@ macro(setup_build_flags _maintainer_mode)
+ else(${_maintainer_mode})
+ list(APPEND proposed_flags
+ -Wno-deprecated-declarations
+- -Wno-missing-include-dir)
++ -Wno-missing-include-dirs)
+ endif(${_maintainer_mode})
+
+ list(APPEND proposed_c_flags
More information about the dev-commits-ports-all
mailing list