git: da93bb8d3cb9 - main - archivers/stormlib: remove bogus file
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 23 Jan 2023 11:40:39 UTC
The branch main has been updated by amdmi3: URL: https://cgit.FreeBSD.org/ports/commit/?id=da93bb8d3cb94c8906bee3375f54ff1f614e2d1b commit da93bb8d3cb94c8906bee3375f54ff1f614e2d1b Author: Dmitry Marakasov <amdmi3@FreeBSD.org> AuthorDate: 2023-01-23 11:38:32 +0000 Commit: Dmitry Marakasov <amdmi3@FreeBSD.org> CommitDate: 2023-01-23 11:40:27 +0000 archivers/stormlib: remove bogus file Reported by: ak --- archivers/stormlib/patch-CMakeLists.txt | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/archivers/stormlib/patch-CMakeLists.txt b/archivers/stormlib/patch-CMakeLists.txt deleted file mode 100644 index 28fb3b2141fd..000000000000 --- a/archivers/stormlib/patch-CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ ---- CMakeLists.txt.orig 2020-11-21 03:27:09 UTC -+++ CMakeLists.txt -@@ -293,7 +293,12 @@ else() - - option(WITH_LIBTOMCRYPT "Use system LibTomCrypt library" OFF) - if(WITH_LIBTOMCRYPT) -- set(LINK_LIBS ${LINK_LIBS} tomcrypt) -+ include(FindPkgConfig) -+ pkg_check_modules(PC_LIBTOMCRYPT libtomcrypt REQUIRED) -+ find_path(LIBTOMCRYPT_INCLUDE_DIR NAMES tomcrypt.h HINTS ${PC_LIBTOMCRYPT_INCLUDE_DIRS} REQUIRED) -+ find_library(LIBTOMCRYPT_LIBRARY NAMES tomcrypt HINTS ${PC_LIBTOMCRYPT_LIBRARY_DIRS} REQUIRED) -+ set(LINK_LIBS ${LINK_LIBS} ${LIBTOMCRYPT_LIBRARY}) -+ include_directories(${LIBTOMCRYPT_INCLUDE_DIR}) - else() - set(SRC_ADDITIONAL_FILES ${TOMCRYPT_FILES} ${TOMMATH_FILES}) - endif()