From 9ef3391b26ea17b82c384708c4a9cd5bce87cf58 Mon Sep 17 00:00:00 2001 From: paulb Date: Fri, 18 Jul 2008 20:07:15 +0000 Subject: [PATCH] Added major version to load the shared library according to rules of ldconfig and the like on other OSs. git-svn-id: https://svn.origo.ethz.ch/eiffelstudio/trunk/Src/library/cURL@74121 8089f293-4706-0410-a29e-feb5c42a2edf --- curl_utility.e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curl_utility.e b/curl_utility.e index 19841255..b272be3b 100644 --- a/curl_utility.e +++ b/curl_utility.e @@ -18,9 +18,9 @@ feature -- Query if {PLATFORM}.is_windows then Result := "libcurl.dll" elseif {PLATFORM}.is_mac then - Result := "libcurl.dylib" + Result := "libcurl.3.dylib" else - Result := "libcurl.so" + Result := "libcurl.so.3" end ensure not_void: Result /= Void