diff options
author | Yasuhiro Kimura <yasu@FreeBSD.org> | 2022-08-29 06:41:43 +0000 |
---|---|---|
committer | Yasuhiro Kimura <yasu@FreeBSD.org> | 2022-08-29 06:49:09 +0000 |
commit | 69b26290832651ec6e3fc480619d604f311e10c9 (patch) | |
tree | 99691f27c5dd308a7bd81f661abdc1becb50df19 | |
parent | d80456c2c370781c2acd06055ac566389a27e3bf (diff) |
devel/boehm-gc-redirect: Remove port
There is no consumer in ports tree.
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/boehm-gc-redirect/Makefile | 8 | ||||
-rw-r--r-- | devel/boehm-gc-redirect/pkg-descr | 19 | ||||
-rw-r--r-- | devel/boehm-gc/Makefile | 4 |
5 files changed, 1 insertions, 32 deletions
@@ -17540,3 +17540,4 @@ print/py-pdf2|print/py-pypdf2|2022-08-27|Rename to match upstream naming textproc/py-Chameleon|textproc/py-chameleon|2022-08-27|Rename to match upstream naming print/py-pdf|print/py-pypdf|2022-08-27|Rename to match upstream naming shells/ksh93-devel|shells/ksh-devel|2022-08-28|Development has resumed under a new GH account +devel/boehm-gc-redirect||2022-08-29|No consumer in ports tree diff --git a/devel/Makefile b/devel/Makefile index a90e485f7477..f40922e78074 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -283,7 +283,6 @@ SUBDIR += bmkdep SUBDIR += bnf SUBDIR += boehm-gc - SUBDIR += boehm-gc-redirect SUBDIR += boehm-gc-threaded SUBDIR += boost-all SUBDIR += boost-docs diff --git a/devel/boehm-gc-redirect/Makefile b/devel/boehm-gc-redirect/Makefile deleted file mode 100644 index 6a2039800e2e..000000000000 --- a/devel/boehm-gc-redirect/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -COMMENT= Garbage collection and memory leak detection for C and C++ with malloc redirection - -MASTERDIR= ${.CURDIR}/../boehm-gc -DESCR= ${.CURDIR}/pkg-descr - -GC_VARIANT= redirect - -.include "${MASTERDIR}/Makefile" diff --git a/devel/boehm-gc-redirect/pkg-descr b/devel/boehm-gc-redirect/pkg-descr deleted file mode 100644 index cb6a98e24e38..000000000000 --- a/devel/boehm-gc-redirect/pkg-descr +++ /dev/null @@ -1,19 +0,0 @@ -The Boehm-Weiser garbage collection package, for C and C++ - -garbage collection and memory leak detection libraries. - -A garbage collector is something which automatically frees malloc'd -memory for you by working out what parts of memory your program -no longer has pointers to. As a result, garbage collectors can also -inform you of memory leaks (if they find memory they can free, it means -you have lost all of your pointers to it, but you didn't free it). - -C programs may be linked against either of these, and should run (with -GC or leak detection) without change. C++ programs must include a header -to use garbage collection, though leak detection should work without -such source code modifications. See the man page and header files. - -This package only brings Boehm-GC libraries with malloc redirection. - -ps: garbage collection is addictive. - -WWW: https://www.hboehm.info/gc/ diff --git a/devel/boehm-gc/Makefile b/devel/boehm-gc/Makefile index 86444937a8c7..8fa836564389 100644 --- a/devel/boehm-gc/Makefile +++ b/devel/boehm-gc/Makefile @@ -62,10 +62,6 @@ PLIST_FILES= ${CORDLIBS:S,^,lib/lib,:S,$,-${GC_VARIANT}.a,} \ ${GCTBALIBS:S,^,lib/lib,:S,$,-${GC_VARIANT}.so.1.5.0,} \ libdata/pkgconfig/bdw-gc-${GC_VARIANT}.pc RUN_DEPENDS+= ${LOCALBASE}/include/gc/gc.h:devel/boehm-gc -. if ${GC_VARIANT} == "redirect" -CONFIGURE_ARGS+= --disable-threads \ - --enable-redirect-malloc -. endif . if ${GC_VARIANT} == "threaded" CONFIGURE_ARGS+= --disable-redirect-malloc \ --enable-threads=posix |