diff options
author | Stanislav Sedov <stas@FreeBSD.org> | 2007-04-10 21:51:45 +0000 |
---|---|---|
committer | Stanislav Sedov <stas@FreeBSD.org> | 2007-04-10 21:51:45 +0000 |
commit | 4ca0bd748b9685bd1bf48569db32192986780875 (patch) | |
tree | 436e3dbadafed5443a4c42457bb72397d03d6376 /sysutils | |
parent | dd3107a162543317a6a270b97a3436ebc3cee557 (diff) | |
download | ports-4ca0bd748b9685bd1bf48569db32192986780875.tar.gz ports-4ca0bd748b9685bd1bf48569db32192986780875.zip |
Notes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/lavaps/Makefile | 2 | ||||
-rw-r--r-- | sysutils/lavaps/files/patch-src_blob.cc | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/sysutils/lavaps/Makefile b/sysutils/lavaps/Makefile index 60f3f167d0d3..5d2f3f0307f3 100644 --- a/sysutils/lavaps/Makefile +++ b/sysutils/lavaps/Makefile @@ -7,7 +7,7 @@ PORTNAME= lavaps PORTVERSION= 2.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/LAVAPS/ diff --git a/sysutils/lavaps/files/patch-src_blob.cc b/sysutils/lavaps/files/patch-src_blob.cc new file mode 100644 index 000000000000..847d6907fded --- /dev/null +++ b/sysutils/lavaps/files/patch-src_blob.cc @@ -0,0 +1,11 @@ +--- src/blob.cc.orig Wed Apr 11 01:47:27 2007 ++++ src/blob.cc Wed Apr 11 01:48:10 2007 +@@ -503,7 +503,7 @@ + blob::print() + { + ENTRY_TRACE(__FILE__,__LINE__); +- cout << O_("blob: ") << (unsigned)this << O_(" x=") << x_ << O_(" step=") << x_step_ << O_(" num=") << num_ << O_(":"); ++ cout << O_("blob: ") << (uintptr_t)this << O_(" x=") << x_ << O_(" step=") << x_step_ << O_(" num=") << num_ << O_(":"); + for (int i = 0; i < num_; i++) { + cout << O_(" ") << y_lows_[i] << O_("-") << y_highs_[i]; + }; |