diff options
author | Tupone Alfredo <tupone@gentoo.org> | 2017-04-30 20:36:39 +0000 |
---|---|---|
committer | Tupone Alfredo <tupone@gentoo.org> | 2017-04-30 20:36:39 +0000 |
commit | 1526c880d203a63112bf22b72c97449befdcc0a1 (patch) | |
tree | 356dfdcdf0b3ba7570e3d1b7eb5d34717c5ae646 /dev-ada/aws/files | |
parent | sys-apps/systemd: rename meson helpers (diff) | |
download | gentoo-1526c880d203a63112bf22b72c97449befdcc0a1.tar.gz gentoo-1526c880d203a63112bf22b72c97449befdcc0a1.tar.bz2 gentoo-1526c880d203a63112bf22b72c97449befdcc0a1.zip |
dev-ada/aws: Add dev-ada/aws-2016
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-ada/aws/files')
-rw-r--r-- | dev-ada/aws/files/aws-2016-gentoo.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-ada/aws/files/aws-2016-gentoo.patch b/dev-ada/aws/files/aws-2016-gentoo.patch new file mode 100644 index 000000000000..bf82f8138775 --- /dev/null +++ b/dev-ada/aws/files/aws-2016-gentoo.patch @@ -0,0 +1,36 @@ +--- aws-gpl-2016-src/shared.gpr.old 2017-01-30 20:00:39.022743691 +0100 ++++ aws-gpl-2016-src/shared.gpr 2017-01-30 20:01:20.524985069 +0100 +@@ -130,6 +130,7 @@ + package Compiler is + + for Driver ("Makefile") use ""; ++ for Driver ("C") use External ("CC", "gcc"); + + case Build is + when "Debug" => +@@ -151,11 +151,11 @@ + end case; + + for Switches ("aws-attachments.adb") +- use Common_Options & Debug_Options & ("-gnatVn"); ++ use Common_Options & Debug_Options & ("-gnatVn") & Adaflags; + for Switches ("aws-session.adb") +- use Common_Options & Debug_Options & ("-gnatVn"); ++ use Common_Options & Debug_Options & ("-gnatVn") & Adaflags; + for Switches ("templates_parser.adb") +- use Common_Options & Debug_Options & ("-gnatVn"); ++ use Common_Options & Debug_Options & ("-gnatVn") & Adaflags; + -- Disable validity check on this unit to work-around N728-028 + + -- ADAFLAGS and CFLAGS should come last so that command line +--- aws-gpl-2016-src/include/include.gpr.old 2017-02-17 22:09:14.361695926 +0100 ++++ aws-gpl-2016-src/include/include.gpr 2017-02-17 22:11:36.497215517 +0100 +@@ -54,7 +54,7 @@ + + when "Release" => + for Default_Switches ("Ada") use +- ("-gnat2012", "-O2", "-gnatws", "-gnatn") & Shared.Global_Options; ++ ("-gnat2012", "-O2", "-gnatws", "-gnatn") & Shared.Adaflags & Shared.Global_Options; + end case; + + case Shared.S_Target is |