Package: wvstreams Version: 4.2.2-2.2 Severity: normal Tags: patch Attached is the NMU diff for wvstreams 4.2.2-2.3, which has been uploaded to DELAYED/7-day.
-- Robert Edmonds [EMAIL PROTECTED]
diff -u wvstreams-4.2.2/debian/changelog wvstreams-4.2.2/debian/changelog
--- wvstreams-4.2.2/debian/changelog
+++ wvstreams-4.2.2/debian/changelog
@@ -1,3 +1,10 @@
+wvstreams (4.2.2-2.3) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Apply brian m. carlson's FTBFS patch. (Closes: Bug#387989).
+
+ -- Robert S. Edmonds <[EMAIL PROTECTED]> Thu, 30 Aug 2007 15:52:19 -0400
+
wvstreams (4.2.2-2.2) unstable; urgency=medium
* Non-maintainer upload.
--- wvstreams-4.2.2.orig/include/wvvector.h
+++ wvstreams-4.2.2/include/wvvector.h
@@ -358,7 +358,7 @@
/** Returns a pointer to the current element */
T *ptr() const
{
- return static_cast<T *>(cur()->data);
+ return static_cast<T *>(this->cur()->data);
}
WvIterStuff(T);
@@ -368,7 +368,7 @@
*/
bool get_autofree() const
{
- return link->get_autofree();
+ return this->link->get_autofree();
}
/**
@@ -376,7 +376,7 @@
*/
void set_autofree(bool autofree)
{
- link->set_autofree(autofree);
+ this->link->set_autofree(autofree);
}
/**
@@ -386,7 +386,7 @@
*/
void remove(bool destroy = true)
{
- WvVector::vec.remove(i, destroy);
+ WvVector::vec.remove(this->i, destroy);
}
/**
@@ -404,8 +404,8 @@
*/
void xremove(bool destroy = true)
{
- WvVector::vec.remove(i, destroy);
- prev();
+ WvVector::vec.remove(this->i, destroy);
+ this->prev();
}
};
};
signature.asc
Description: Digital signature

