Skip to content
Snippets Groups Projects
Commit 01d3320d authored by Fons Rademakers's avatar Fons Rademakers
Browse files

From Lorenzo:

work around a problem with gsl-config on Solaris.


git-svn-id: http://root.cern.ch/svn/root/trunk@15659 27541ba8-7e3a-0410-8455-c3a389f83636
parent c24b73f7
No related branches found
No related tags found
No related merge requests found
......@@ -3353,7 +3353,17 @@ if test ! "x$enable_mathmore" = "xno"; then
fi
fi
#
# if gslincdir not specified look for gsl-config
#
# gsl-config check does not work on Solaris so lets skip it
if test "x$platform" = "xsolaris"; then
if (test "x$gslincdir" = "x" || test "x$gsllibs" = "x"); then
gslskip="skip"
enable_mathmore="no"
fi
fi
if (test "x$gslincdir" = "x" || test "x$gsllibs" = "x") && \
test ! "x$gslskip" = "xskip"; then
checking_msg "gsl-config"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment