Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTak <levi@unity3d.com>2010-10-30 13:57:12 +0400
committerLluis Sanchez <slluis.devel@gmail.com>2010-11-02 13:32:56 +0300
commita446d56a189b65d66c9f3039ccbbd679783831b8 (patch)
tree8afe36e7cf434665c8ffcfbae7571bcafa32e532 /extras/ValaBinding
parent3a9542208943a95ea01c75b71294c8d2959edc68 (diff)
Update error message for Vala >= 0.10.
Diffstat (limited to 'extras/ValaBinding')
-rw-r--r--extras/ValaBinding/Parser/ProjectInformation.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/extras/ValaBinding/Parser/ProjectInformation.cs b/extras/ValaBinding/Parser/ProjectInformation.cs
index e4fd621257..596e416680 100644
--- a/extras/ValaBinding/Parser/ProjectInformation.cs
+++ b/extras/ValaBinding/Parser/ProjectInformation.cs
@@ -73,8 +73,9 @@ namespace MonoDevelop.ValaBinding.Parser
Afrodite.Utils.GetPackagePaths ("glib-2.0");
return (vtgInstalled = true);
} catch (DllNotFoundException) {
- LoggingService.LogWarning ("Cannot update Vala parser database because libafrodite (VTG) is not installed: {0}{1}",
- Environment.NewLine, "http://code.google.com/p/vtg/");
+ LoggingService.LogWarning ("Cannot update Vala parser database because libafrodite (VTG) is not installed: {0}{1}{2}{3}",
+ Environment.NewLine, "http://code.google.com/p/vtg/",
+ Environment.NewLine, "Note: If you're using Vala 0.10 or higher, you may need to symlink libvala-YOUR_VERSION.so to libvala.so");
} catch (Exception ex) {
LoggingService.LogError ("ValaBinding: Error while checking for libafrodite", ex);
}