From 01d3320d06784e1a4be0264da2564a9bfc2d9359 Mon Sep 17 00:00:00 2001
From: Fons Rademakers <Fons.Rademakers@cern.ch>
Date: Mon, 3 Jul 2006 10:50:32 +0000
Subject: [PATCH] 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
---
 configure | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/configure b/configure
index 0a68ca1f4eb..e9ceefdfd53 100755
--- a/configure
+++ b/configure
@@ -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"
-- 
GitLab