diff options
author | Neel Chauhan <nc@FreeBSD.org> | 2021-05-23 10:52:07 -0700 |
---|---|---|
committer | Neel Chauhan <nc@FreeBSD.org> | 2021-05-23 18:46:39 -0700 |
commit | 7bee8c2eaf8b8179aa2ef2d3bd9967287bba70d1 (patch) | |
tree | 60cbe0258e25f1ac7a4a1d37d320d27e308afcf6 /databases/evolution-data-server/files/patch-cmake_modules_PrintableOptions.cmake | |
parent | audio/wolf-shaper-lv2: New port: Waveshaper plugin with a graph editor (diff) |
databases/evolution-data-server: Update to 3.40.1
Diffstat (limited to 'databases/evolution-data-server/files/patch-cmake_modules_PrintableOptions.cmake')
-rw-r--r-- | databases/evolution-data-server/files/patch-cmake_modules_PrintableOptions.cmake | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/databases/evolution-data-server/files/patch-cmake_modules_PrintableOptions.cmake b/databases/evolution-data-server/files/patch-cmake_modules_PrintableOptions.cmake deleted file mode 100644 index 3652dc21274c..000000000000 --- a/databases/evolution-data-server/files/patch-cmake_modules_PrintableOptions.cmake +++ /dev/null @@ -1,53 +0,0 @@ ---- cmake/modules/PrintableOptions.cmake.orig 2021-04-22 19:58:13 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() - 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() - 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() - 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() - 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() - set(${_name} ${_default_value} CACHE FILEPATH ${_description}) - add_printable_variable_bare(${_name}) - endmacro() |