From f69e1e96091fdafb1b75602723fcbcc4aa77e3e9 Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Mon, 14 Feb 2011 19:57:17 +0100 Subject: [PATCH] Use proper library/abi for qt on linux. --- src/QtBindings/Libs.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/QtBindings/Libs.cs b/src/QtBindings/Libs.cs index dd2bd516..a7c9cd32 100644 --- a/src/QtBindings/Libs.cs +++ b/src/QtBindings/Libs.cs @@ -13,7 +13,10 @@ namespace Qt { { string lib; CppAbi abi; - if (Environment.OSVersion.Platform == PlatformID.Win32NT) + if (Environment.OSVersion.Platform == PlatformID.Unix) { + lib = "{0}.so"; + abi = new ItaniumAbi (); + } else if (Environment.OSVersion.Platform == PlatformID.Win32NT) { // for Windows... lib = "{0}d4.dll"; abi = new MsvcAbi ();