From b17a3ef12038de50228bade1f05502c74e135321 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 2 Sep 2020 14:09:07 +0100 Subject: gentoo resync : 02.09.2020 --- .../files/root-6.16.00-disable-header-search.patch | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 sci-physics/root/files/root-6.16.00-disable-header-search.patch (limited to 'sci-physics/root/files') diff --git a/sci-physics/root/files/root-6.16.00-disable-header-search.patch b/sci-physics/root/files/root-6.16.00-disable-header-search.patch deleted file mode 100644 index 06748eb64312..000000000000 --- a/sci-physics/root/files/root-6.16.00-disable-header-search.patch +++ /dev/null @@ -1,38 +0,0 @@ -From: Benda Xu -Date: 2019-03-23 -Subject: Remove header expansion logic from module cmake helper. - -Description: ROOT module cmake helper by default expands header inclusion to -absolute path. In Gentoo, that will capture PORTAGE_TMPDIR resulting in various -runtime bugs. By removing this convolved logic, headers are untouched and become -more predictible for rootcling at runtime. - -Typical bug it solves: - - Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState: - Missing FileEntry for /var/tmp/portage/sci-physics/JSAP-479/work/JSAP-479/DataType/JPSimOutput.hh - requested to autoload type JPSimTruthTree_t - Error in cling::AutoloadingVisitor::InsertIntoAutoloadingState: - Missing FileEntry for /var/tmp/portage/sci-physics/JSAP-479/work/JSAP-479/DataType/JPSimOutput.hh - requested to autoload type JPSimTriggerInfoTree_t - -Forwarded: No need. Gentoo specific. - ---- a/cmake/modules/RootNewMacros.cmake 2019-01-23 16:23:37.000000000 +0800 -+++ b/cmake/modules/RootNewMacros.cmake 2019-02-25 00:18:04.000000000 +0800 -@@ -250,14 +250,7 @@ function(ROOT_GENERATE_DICTIONARY dictio - list(APPEND headerfiles ${fp}) - list(APPEND _list_of_header_dependencies ${fp}) - else() -- find_file(headerFile ${fp} HINTS ${localinclude} ${incdirs} NO_DEFAULT_PATH) -- find_file(headerFile ${fp} NO_SYSTEM_ENVIRONMENT_PATH) -- if(headerFile) -- list(APPEND headerfiles ${headerFile}) -- list(APPEND _list_of_header_dependencies ${headerFile}) -- else() -- list(APPEND headerfiles ${fp}) -- endif() -+ list(APPEND headerfiles ${fp}) - unset(headerFile CACHE) - endif() - endforeach() -- cgit v1.2.3