summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRod Kay2017-06-14 21:38:40 +1000
committerRod Kay2017-06-14 21:38:40 +1000
commit84e6c797ffa8e4e62dd9f50f0a10e92754d186c0 (patch)
tree7e419174ac0454a67fd1d05541451070024c1670
parentad86c9b3393547e98e97c1558f4ee0773b66c7fc (diff)
downloadaur-84e6c797ffa8e4e62dd9f50f0a10e92754d186c0.tar.gz
Fix patch
-rw-r--r--.SRCINFO2
-rw-r--r--use_fpic_for_libadalang.patch14
2 files changed, 8 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c6557d221e25..2e4d8b24cbb2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Wed Jun 14 11:10:19 UTC 2017
+# Wed Jun 14 11:38:09 UTC 2017
pkgbase = libadalang
pkgdesc = A high performance semantic engine for the Ada programming language.
pkgver = 1
diff --git a/use_fpic_for_libadalang.patch b/use_fpic_for_libadalang.patch
index 073144918193..7b5a9fb07196 100644
--- a/use_fpic_for_libadalang.patch
+++ b/use_fpic_for_libadalang.patch
@@ -1,18 +1,18 @@
---- build/lib/gnat/libadalang.gpr 2017-06-05 11:38:11.357910001 +1000
-+++ build/lib/gnat/libadalang.gpr-new 2017-06-05 11:37:33.665740000 +1000
-@@ -90,9 +90,9 @@
+--- build/lib/gnat/libadalang.gpr 2017-06-14 20:38:02.947741666 +1000
++++ build/lib/gnat/libadalang.gpr-new 2017-06-14 20:39:57.568356667 +1000
+@@ -88,9 +88,9 @@
+ for Default_Switches ("Ada") use
Common_Ada_Cargs & ("-g", "-O0", "-gnatwe", "-gnata");
- for Default_Switches ("C") use
-- Common_C_Cargs & ("-g3", "-O0", "-DDEBUG=1");
-+ Common_C_Cargs & ("-g3", "-O0", "-DDEBUG=1", "-fPIC");
+- for Default_Switches ("C") use Common_C_Cargs & ("-g3", "-O0");
++ for Default_Switches ("C") use Common_C_Cargs & ("-g3", "-O0", "-fPIC");
- for Switches ("quex_lexer.c") use Common_C_Cargs & ("-g0", "-O0");
+ for Switches ("quex_lexer.c") use Common_C_Cargs & ("-g0", "-O0", "-fPIC");
-- This file is *huge* and the debugging information for it harms
-- Valgrind runs. We almost never have to debug this file so
-- this is acceptable.
-@@ -103,13 +103,13 @@
+@@ -101,13 +101,13 @@
for Default_Switches ("Ada") use
Common_Ada_Cargs & ("-g", "-Ofast", "-gnatp", "-gnatn2");