Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
Change case of oniguruma in package_deps
Browse files Browse the repository at this point in the history
Oniguruma exports cmake config file with name "oniguruma", so
"Oniguruma" will work only on case insensitive file systems.

Co-authored-by: Krzysztof Pszeniczny <krzysztof.pszeniczny@gmail.com>
  • Loading branch information
prazek and amharc committed May 10, 2018
1 parent b7df3fc commit b8ff92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if(NOT EVHTP_DISABLE_REGEX)
if(ONIGURUMA_FOUND)
list(APPEND LIBEVHTP_EXTERNAL_LIBS ${ONIGURUMA_LIBRARIES})
list(APPEND LIBEVHTP_EXTERNAL_INCLUDES ${ONIGURUMA_INCLUDE_DIRS})
list(APPEND package_deps Oniguruma)
list(APPEND package_deps oniguruma)
else()
message(STATUS "${BoldRed}${CMAKE_BUILD_TYPE}ONIGURUMA NOT FOUND, DISABLING REGEX SUPPORT${ColourReset}")
set(EVHTP_DISABLE_REGEX ON)
Expand Down

0 comments on commit b8ff92b

Please sign in to comment.