Index | Thread | Search

From:
"Kirill Bychkov" <kirby@linklevel.net>
Subject:
Re: UPDATE textproc/cmark to 0.31.1
To:
"Jan Klemkow" <jan@openbsd.org>
Cc:
ports@openbsd.org
Date:
Thu, 29 May 2025 01:02:42 +0300

Download raw body.

Thread
On Wed, May 28, 2025 19:03, Jan Klemkow wrote:
> On Wed, May 28, 2025 at 05:01:06PM GMT, Kirill Bychkov wrote:
>> This update is required for new version of games/naev.
>> Regression test is passing successfully, all consumers are building fine.
>
> Thanks for the version upgrade.
>
>> OK?
>
> Why do you remove the static library build?
>
>
forgot about this comment and code in CMakeFiles:

# Backwards Compatibility
# TODO: remove this once there has been a period to enable people to migrate
set(_CMARK_BUILD_SHARED_LIBS_DEFAULT NO)
if(DEFINED CMARK_SHARED)
  message(AUTHOR_WARNING [=[
'CMARK_SHARED' has been replaced with the standard 'BUILD_SHARED_LIBS' to
control the library type.
]=])
  set(_CMARK_BUILD_SHARED_LIBS_DEFAULT ${CMARK_SHARED})
endif()
if(DEFINED CMARK_STATIC)
  message(AUTHOR_WARNING [=[
'CMARK_STATIC' has been replaced with the standard 'BUILD_SHARED_LIBS' to
control the library type.
]=])
  if(NOT CMARK_STATIC)
    set(_CMARK_BUILD_SHARED_LIBS_DEFAULT YES)
  else()
    set(_CMARK_BUILD_SHARED_LIBS_DEFAULT NO)
  endif()
endif()