Skip to content

Commit

Permalink
Modified version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann George committed Jun 25, 2009
1 parent 18e1c1e commit f2e5335
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion qperf.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/qperf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand Down

0 comments on commit f2e5335

Please sign in to comment.