diff options
| author | Tupone Alfredo <tupone@gentoo.org> | 2019-05-31 20:26:22 +0200 |
|---|---|---|
| committer | Tupone Alfredo <tupone@gentoo.org> | 2019-05-31 20:26:22 +0200 |
| commit | b7a0e12e3ab2f75eb96bc96e7351eb59b1ee3a9d (patch) | |
| tree | 1c50c4b8676eb3002cb8744d2b0e22cd4cf4594d /dev-ada/aws/files | |
| parent | 31a48c5e4568f62715165f3048fac1771b71b6be (diff) | |
| download | gentoo-b7a0e12e3ab2f75eb96bc96e7351eb59b1ee3a9d.tar.gz gentoo-b7a0e12e3ab2f75eb96bc96e7351eb59b1ee3a9d.tar.bz2 gentoo-b7a0e12e3ab2f75eb96bc96e7351eb59b1ee3a9d.zip | |
dev-ada/aws: enable build with gnat-gpl-2019
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Diffstat (limited to 'dev-ada/aws/files')
| -rw-r--r-- | dev-ada/aws/files/aws-2018-gentoo.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-ada/aws/files/aws-2018-gentoo.patch b/dev-ada/aws/files/aws-2018-gentoo.patch new file mode 100644 index 000000000000..5c615d32dba0 --- /dev/null +++ b/dev-ada/aws/files/aws-2018-gentoo.patch @@ -0,0 +1,56 @@ +--- a/config/src/aws-net-std__gnat.adb 2019-05-31 19:03:42.565961279 +0200 ++++ b/config/src/aws-net-std__gnat.adb 2019-05-31 19:05:23.895245892 +0200 +@@ -132,7 +132,7 @@ + + if Reuse_Address then + Sockets.Set_Socket_Option +- (Socket.S.FD, Option => (Sockets.Reuse_Address, Enabled => True)); ++ (Socket.S.FD, Sockets.Socket_Level, (Sockets.Reuse_Address, Enabled => True)); + end if; + + Sockets.Bind_Socket +@@ -263,7 +263,7 @@ + package SC renames OS_Lib; + + Option : constant Option_Type := +- Get_Socket_Option (Socket.S.FD, Name => Error); ++ Get_Socket_Option (Socket.S.FD, Socket_Level, Error); + begin + case Option.Error is + when Success => +@@ -439,7 +439,7 @@ + is + use Sockets; + begin +- return Get_Socket_Option (Socket.S.FD, Name => Receive_Buffer).Size; ++ return Get_Socket_Option (Socket.S.FD, Socket_Level, Receive_Buffer).Size; + exception + when E : Sockets.Socket_Error => + Raise_Exception (E, "Get_Receive_Buffer_Size", Socket); +@@ -454,7 +454,7 @@ + is + use Sockets; + begin +- return Get_Socket_Option (Socket.S.FD, Name => Send_Buffer).Size; ++ return Get_Socket_Option (Socket.S.FD, Socket_Level, Send_Buffer).Size; + exception + when E : Sockets.Socket_Error => + Raise_Exception (E, "Get_Send_Buffer_Size", Socket); +@@ -709,7 +709,7 @@ + is + use Sockets; + begin +- Set_Socket_Option (Socket.S.FD, Option => (Receive_Buffer, Size)); ++ Set_Socket_Option (Socket.S.FD, Socket_Level, (Receive_Buffer, Size)); + exception + when E : Sockets.Socket_Error => + Raise_Exception (E, "Set_Receive_Buffer_Size", Socket); +@@ -725,7 +725,7 @@ + is + use Sockets; + begin +- Set_Socket_Option (Socket.S.FD, Option => (Send_Buffer, Size)); ++ Set_Socket_Option (Socket.S.FD, Socket_Level, (Send_Buffer, Size)); + exception + when E : Sockets.Socket_Error => + Raise_Exception (E, "Set_Send_Buffer_Size", Socket); |
