You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2020/06/22 22:02:08 UTC

[GitHub] [arrow] kou commented on pull request #7449: ARROW-9133: [C++] Add utf8_upper and utf8_lower

kou commented on pull request #7449:
URL: https://github.com/apache/arrow/pull/7449#issuecomment-647791287


   Ah, we need the `UTF8PROC_STATIC` definition.
   
   Does this work?
   
   ```diff
   diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake b/cpp/cmake_modules/ThirdpartyToolchain.cmake
   index 5ab29cf2c..aa2bbf0dd 100644
   --- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
   +++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
   @@ -2060,7 +2060,9 @@ macro(build_utf8proc)
      set_target_properties(utf8proc::utf8proc
                            PROPERTIES IMPORTED_LOCATION "${UTF8PROC_STATIC_LIB}"
                                       INTERFACE_INCLUDE_DIRECTORIES
   -                                   "${UTF8PROC_PREFIX}/include")
   +                                   "${UTF8PROC_PREFIX}/include"
   +                                   INTERFACE_COMPILER_DEFINITIONS
   +                                   "UTF8PROC_STATIC")
    
      add_dependencies(toolchain utf8proc_ep)
      add_dependencies(utf8proc::utf8proc utf8proc_ep)
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org