mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
|
From 5392b7bab3db0373ca81ee9c541291d7ce05d45d Mon Sep 17 00:00:00 2001
|
||
|
From: Christian Hergert <chergert@redhat.com>
|
||
|
Date: Thu, 15 Oct 2015 08:37:20 -0700
|
||
|
Subject: vala: remove in-tree hack for builder deps
|
||
|
|
||
|
---
|
||
|
plugins/vala-pack/ide-vala-index.vala | 11 ++---------
|
||
|
1 file changed, 2 insertions(+), 9 deletions(-)
|
||
|
|
||
|
diff --git a/plugins/vala-pack/ide-vala-index.vala b/plugins/vala-pack/ide-vala-index.vala
|
||
|
index 56f9b34..093b5e9 100644
|
||
|
--- a/plugins/vala-pack/ide-vala-index.vala
|
||
|
+++ b/plugins/vala-pack/ide-vala-index.vala
|
||
|
@@ -90,16 +90,9 @@ namespace Ide
|
||
|
this.code_context.add_external_package ("glib-2.0");
|
||
|
this.code_context.add_external_package ("gobject-2.0");
|
||
|
|
||
|
- /* TODO: find packages from build system
|
||
|
- * the following is just to help us while writing vala in builder
|
||
|
- * until the build system works.
|
||
|
- */
|
||
|
- this.code_context.vapi_directories = new string[] { "libide", "src" };
|
||
|
+ /* TODO: find packages from build system */
|
||
|
this.code_context.add_external_package ("gio-2.0");
|
||
|
- this.code_context.add_external_package ("libvala-0.30");
|
||
|
- this.code_context.add_external_package ("libide-1.0");
|
||
|
- this.code_context.add_external_package ("gtksourceview-3.0");
|
||
|
- this.code_context.add_external_package ("gnome-builder-1.0");
|
||
|
+ this.code_context.add_external_package ("gtk+-3.0");
|
||
|
|
||
|
this.report = new Ide.ValaDiagnostics ();
|
||
|
this.code_context.report = this.report;
|
||
|
--
|
||
|
cgit v0.11.2
|
||
|
|