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:
authorLluis Sanchez <lluis@novell.com>2009-10-08 16:51:12 +0400
committerLluis Sanchez <lluis@novell.com>2009-10-08 16:51:12 +0400
commitee64a880834b8bf5fd7d59ae8ed450f886f4cc3e (patch)
tree7fa642b61b548d2010bef641347a250346fa569f /main/src/addins/MonoDevelop.Autotools
parent2113430c11833deef5abcdb44b936fbbea55cebe (diff)
* MonoDevelop.Autotools.addin.xml: Disabled autotools and makefile
generation on windows. svn path=/trunk/monodevelop/; revision=143768
Diffstat (limited to 'main/src/addins/MonoDevelop.Autotools')
-rw-r--r--main/src/addins/MonoDevelop.Autotools/ChangeLog5
-rw-r--r--main/src/addins/MonoDevelop.Autotools/MonoDevelop.Autotools.addin.xml36
2 files changed, 28 insertions, 13 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/ChangeLog b/main/src/addins/MonoDevelop.Autotools/ChangeLog
index 872cb52f22..75a94abd8f 100644
--- a/main/src/addins/MonoDevelop.Autotools/ChangeLog
+++ b/main/src/addins/MonoDevelop.Autotools/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-08 Lluis Sanchez Gual <lluis@novell.com>
+
+ * MonoDevelop.Autotools.addin.xml: Disabled autotools and
+ makefile generation on windows.
+
2009-10-07 Lluis Sanchez Gual <lluis@novell.com>
* AssemblyInfo.cs:
diff --git a/main/src/addins/MonoDevelop.Autotools/MonoDevelop.Autotools.addin.xml b/main/src/addins/MonoDevelop.Autotools/MonoDevelop.Autotools.addin.xml
index 6b261449d4..0554ca49b0 100644
--- a/main/src/addins/MonoDevelop.Autotools/MonoDevelop.Autotools.addin.xml
+++ b/main/src/addins/MonoDevelop.Autotools/MonoDevelop.Autotools.addin.xml
@@ -47,19 +47,23 @@
</Extension>
<Extension path = "/MonoDevelop/Ide/Commands">
- <Category _name = "Autotools" id = "Autotools">
- <Command id = "MonoDevelop.Autotools.Commands.GenerateFiles"
- _label = "Generate Makefiles..."
- description="Generate Makefiles for a solution"/>
- <Command id = "MonoDevelop.Autotools.Commands.SynchWithMakefile"
- type="check"
- _label = "Include in Synchronized Makefile" />
- </Category>
+ <Condition id="Platform" value="!windows">
+ <Category _name = "Autotools" id = "Autotools">
+ <Command id = "MonoDevelop.Autotools.Commands.GenerateFiles"
+ _label = "Generate Makefiles..."
+ description="Generate Makefiles for a solution"/>
+ <Command id = "MonoDevelop.Autotools.Commands.SynchWithMakefile"
+ type="check"
+ _label = "Include in Synchronized Makefile" />
+ </Category>
+ </Condition>
</Extension>
<Extension path = "/MonoDevelop/Ide/ContextMenu/ProjectPad/Tools">
<Condition id="ItemType" value="Solution|Project">
- <CommandItem id = "MonoDevelop.Autotools.Commands.GenerateFiles" insertafter="ExportListSeparator"/>
+ <Condition id="Platform" value="!windows">
+ <CommandItem id = "MonoDevelop.Autotools.Commands.GenerateFiles" insertafter="ExportListSeparator"/>
+ </Condition>
</Condition>
</Extension>
@@ -78,11 +82,15 @@
</Extension>
<Extension path = "/MonoDevelop/DeployService/PackageBuilders">
- <Class class="MonoDevelop.Autotools.TarballDeployTarget" />
+ <Condition id="Platform" value="!windows">
+ <Class class="MonoDevelop.Autotools.TarballDeployTarget" />
+ </Condition>
</Extension>
-
+
<Extension path = "/MonoDevelop/Deployment/PackageBuilderEditors">
- <Class class="MonoDevelop.Autotools.TarballTargetEditor" />
+ <Condition id="Platform" value="!windows">
+ <Class class="MonoDevelop.Autotools.TarballTargetEditor" />
+ </Condition>
</Extension>
<Extension path = "/MonoDevelop/ProjectModel/SerializableClasses">
@@ -106,7 +114,9 @@
</Extension>
<Extension path = "/MonoDevelop/Core/Applications">
- <Application id = "generate-makefiles" class = "MonoDevelop.Autotools.MakefileGeneratorTool" description = "Makefile generator tool"/>
+ <Condition id="Platform" value="!windows">
+ <Application id = "generate-makefiles" class = "MonoDevelop.Autotools.MakefileGeneratorTool" description = "Makefile generator tool"/>
+ </Condition>
</Extension>
<Extension path = "/MonoDevelop/Autotools/MakefileHandlers">