pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

codelite: update ctags/CMakeLists.txt patch to be NetBSD specific.



Module Name:	pkgsrc-wip
Committed By:	Andrius Varanavicius <vezhlys%netscape.net@localhost>
Pushed By:	vezhlys
Date:		Sat Oct 15 13:20:20 2022 +0300
Changeset:	f8e326b55c40a36b8a1179d54b8eb768d32888a0

Modified Files:
	codelite/distinfo
	codelite/patches/patch-ctagsd_CMakeLists.txt

Log Message:
codelite: update ctags/CMakeLists.txt patch to be NetBSD specific.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=f8e326b55c40a36b8a1179d54b8eb768d32888a0

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 codelite/distinfo                            |  2 +-
 codelite/patches/patch-ctagsd_CMakeLists.txt | 11 ++++++++---
 2 files changed, 9 insertions(+), 4 deletions(-)

diffs:
diff --git a/codelite/distinfo b/codelite/distinfo
index a1a3fb6c63..44f2e74ebe 100644
--- a/codelite/distinfo
+++ b/codelite/distinfo
@@ -7,7 +7,7 @@ SHA1 (patch-CodeLite_tags_storage_sqlite3.h) = 89ba11011c33a4de82f246c1ba198ab61
 SHA1 (patch-LanguageServer_UI.h) = 8a40c5cc65bb210bb5f7e6b198580694503a4d95
 SHA1 (patch-Plugin_DiffSideBySidePanel.h) = a62fd170d51bc6ba650d5d7862d5c9633d5dcedb
 SHA1 (patch-Runtime_codelite-remote) = a77124761f844ace5a25c327ebf5bf2e7e4ed80b
-SHA1 (patch-ctagsd_CMakeLists.txt) = 43d488040d834f077b4cebf8b47b7299c4ef2f15
+SHA1 (patch-ctagsd_CMakeLists.txt) = 4b7f216ae9384f4e4293463a3dbbd588d1e907f1
 SHA1 (patch-sdk_asio-1.12.1_asio_detail_impl_kqueue__reactor.ipp) = bdbcf78c6198da9ceb123373fd6b99419ae94896
 SHA1 (patch-svgs_svgs-dark_create-logo.sh) = d794ca7bb16a248a7aead3ca30e6c9f16073e1a3
 SHA1 (patch-svgs_svgs-light_create-logo.sh) = 4b0d06911baf89636311cc10e7042f3a2b4f22b3
diff --git a/codelite/patches/patch-ctagsd_CMakeLists.txt b/codelite/patches/patch-ctagsd_CMakeLists.txt
index abfec3ed8c..d617b38bc4 100644
--- a/codelite/patches/patch-ctagsd_CMakeLists.txt
+++ b/codelite/patches/patch-ctagsd_CMakeLists.txt
@@ -1,12 +1,17 @@
+$NetBSD$
 
---- ctagsd/CMakeLists.txt.orig	2022-10-15 00:18:53.670224875 +0300
+--- ctagsd/CMakeLists.txt.orig	2022-04-18 08:09:00.000000000 +0300
 +++ ctagsd/CMakeLists.txt
-@@ -42,7 +42,7 @@ include_directories("${CL_SRC_ROOT}/Plug
+@@ -42,7 +42,11 @@ include_directories("${CL_SRC_ROOT}/Plug
  
  set(UTIL_LIB "")
  if(UNIX)
 -    set(UTIL_LIB "-lutil -ldl")
-+    set(UTIL_LIB "-lutil")
++    if ( IS_NETBSD )
++        set(UTIL_LIB "-lutil")
++    else ( )
++        set(UTIL_LIB "-lutil -ldl")
++    endif ( )
  endif(UNIX)
  
  FILE(GLOB LIBSRC "lib/*.cpp")


Home | Main Index | Thread Index | Old Index