From fe2ca66d7eb6937f8c5e4a401d67b806b7efd714 Mon Sep 17 00:00:00 2001 From: Karl Semich <0xloem@gmail.com> Date: Mon, 18 Feb 2019 17:10:31 +0000 Subject: [PATCH] config: fix platform check for dataframe to match source --- config/root-config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/root-config.in b/config/root-config.in index 178d16a056f..de4fa1bda8f 100755 --- a/config/root-config.in +++ b/config/root-config.in @@ -75,7 +75,7 @@ rootlibs="-lCore -lImt -lRIO -lNet -lHist -lGraf -lGraf3d -lGpad -lROOTVecOps -l -lRint -lPostscript -lMatrix -lPhysics -lMathCore -lThread\ -lMultiProc" -if [ `uname -m` != 'i686' ]; then +if [ "@UNIX@" != "1" ] || [ "@CMAKE_SIZEOF_VOID_P@" != "4" ]; then rootlibs="$rootlibs -lROOTDataFrame" fi -- GitLab