Modified version number.

master
Johann George 2009-06-25 08:32:57 -07:00
parent 18e1c1e8af
commit f2e53352c5
4 changed files with 9 additions and 6 deletions

7
README
View File

@ -5,8 +5,11 @@ To build
make
Changing version
* Change VER_MAJ, VER_MIN and VER_INC as appropriate in src/qperf.c
* Change version also in qperf.spec and configure.in
* src/qperf.c: Change VER_MAJ, VER_MIN and VER_INC.
* configure.in: Change in AC_INIT and AM_INIT_AUTOMAKE
* qperf.spec: Change line beginning with Version:
* Note ensure that qperf.spec is modified last so that cleanup does not
delete it.
Notes
* If the library ibverbs is not found, a version of qperf is built that

View File

@ -1,5 +1,5 @@
AC_INIT(qperf, 0.4.4, general@lists.openfabrics.org)
AM_INIT_AUTOMAKE(qperf, 0.4.4)
AC_INIT(qperf, 0.4.5, general@lists.openfabrics.org)
AM_INIT_AUTOMAKE(qperf, 0.4.5)
AC_PROG_CC
AC_CHECK_LIB(ibverbs, ibv_open_device, RDMA=1)
AC_CHECK_LIB(rdmacm, rdma_create_id)

View File

@ -1,6 +1,6 @@
Name: qperf
Summary: Measure socket and RDMA performance
Version: 0.4.4
Version: 0.4.5
Release: 1
License: BSD 3-Clause, GPL v2
Group: Networking/Diagnostic

View File

@ -62,7 +62,7 @@
*/
#define VER_MAJ 0 /* Major version */
#define VER_MIN 4 /* Minor version */
#define VER_INC 4 /* Incremental version */
#define VER_INC 5 /* Incremental version */
#define LISTENQ 5 /* Size of listen queue */
#define BUFSIZE 1024 /* Size of buffers */