Prepare for tag

This commit is contained in:
persan 2018-04-10 06:28:41 +02:00
parent 7f6d9043ba
commit c14b6beda7
5 changed files with 16 additions and 14 deletions

1
.gitignore vendored
View File

@ -21,3 +21,4 @@ temp.out
_temp.sed
libzmq.gpr
libsodium.gpr
_

View File

@ -1,17 +1,15 @@
zeromq-Ada
provides an Ada-binding the 0MQ library
provides an Ada-binding the 0MQ library
Prerequisits:
zeromq 4.x installed (Works with zeromq 3.x as well but will warn)
zeromq 4.x installed (Works with zeromq 3.x as well but will warn)
a modern GCC (4.3 or better) with Ada enabled
Install:
$ ./configure
$ make
$ sudo make install
Tested on
Fedora 23 /native
Tested on
Fedora 27 /native
GNATPro 19.0w

View File

@ -51,10 +51,13 @@ package ZMQ.Sockets is
XPUB,
XSUB,
STREAM);
XREQ : constant Socket_Type := DEALER;
pragma Obsolescent (XREQ, "use DEALER");
XREP : constant Socket_Type := ROUTER;
pragma Obsolescent (XREP, "use ROUTER");
XREQ : constant Socket_Type := DEALER with
Obsolescent => "use DEALER";
XREP : constant Socket_Type := ROUTER with
Obsolescent => "use DEALER";
type Socket is
new Ada.Finalization.Limited_Controlled with private;
type Any_Socket is access all Socket'Class;

View File

@ -43,7 +43,7 @@ package ZMQ is
Patch : aliased Natural;
end record;
Binding_Version : constant Version_Type := (4, 1, 4);
Binding_Version : constant Version_Type := (4, 1, 5);
function Library_Version return Version_Type;
function Image (Item : Version_Type) return String;

View File

@ -35,7 +35,7 @@ project ZMQ is
type ZMQ_Kind_Type is ("static", "relocatable");
ZMQ_Kind : ZMQ_Kind_Type := external ("LIBRARY_TYPE", "static");
Version := "4.1.4";
Version := "4.1.5";
for Library_Name use "zmqAda";
for Library_Version use "lib" & project'Library_Name & ".so." & Version;