summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2020-03-23 15:12:38 +0200
committerJoonas Niilola <juippis@gentoo.org>2020-03-23 15:13:50 +0200
commitd3efafeaa44070379d2c8d68ae976e061d921c8b (patch)
treeabad267b7f9ed40e384e4a3c332ca6b35c853c19 /dev-libs/check/files
parentdev-libs/check: update subunit logic, fix pkgconfig file (diff)
downloadgentoo-d3efafeaa44070379d2c8d68ae976e061d921c8b.tar.gz
gentoo-d3efafeaa44070379d2c8d68ae976e061d921c8b.tar.bz2
gentoo-d3efafeaa44070379d2c8d68ae976e061d921c8b.zip
dev-libs/check: remove faulty 0.14.0-r1
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-libs/check/files')
-rw-r--r--dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch b/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch
deleted file mode 100644
index a79a7bcccddb..000000000000
--- a/dev-libs/check/files/check-0.14.0-r1-disable-automagic-dep.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/CMakeLists.txt 2020-03-21 09:42:30.411037664 +0200
-+++ b/CMakeLists.txt 2020-03-21 09:49:12.358161439 +0200
-@@ -365,15 +365,16 @@
- ADD_DEFINITIONS(-DHAVE_LIBRT=1)
- endif (HAVE_LIBRT)
-
--check_library_exists(subunit subunit_test_start "" HAVE_SUBUNIT)
--if (HAVE_SUBUNIT)
-+option(CHECK_ENABLE_SUBUNIT "Enable subunit support" ON)
-+if (CHECK_ENABLE_SUBUNIT EQUAL 1)
- set(SUBUNIT "subunit")
- set(ENABLE_SUBUNIT 1)
-+ set(HAVE_SUBUNIT 1)
- add_definitions(-DENABLE_SUBUNIT=1)
--else(HAVE_SUBUNIT)
-+else(CHECK_ENABLE_SUBUNIT EQUAL 0)
- set(ENABLE_SUBUNIT 0)
- add_definitions(-DENABLE_SUBUNIT=0)
--endif (HAVE_SUBUNIT)
-+endif (CHECK_ENABLE_SUBUNIT)
-
- ###############################################################################
- # Generate "config.h" from "cmake/config.h.in"