]> git.pld-linux.org Git - packages/wvstreams.git/commitdiff
- no longer required
authorwrobell <wrobell@pld-linux.org>
Tue, 6 Jan 2009 13:40:27 +0000 (13:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    wvstreams-gcc4.patch -> 1.6

wvstreams-gcc4.patch [deleted file]

diff --git a/wvstreams-gcc4.patch b/wvstreams-gcc4.patch
deleted file mode 100644 (file)
index 95a48d1..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
---- wvstreams-4.0.2/include/unilistgen.h       2005-03-24 03:01:23.000000000 +0100
-+++ wvstreams-4.0.2.gcc4/include/unilistgen.h  2006-01-18 21:22:04.000000000 +0100
-@@ -31,7 +31,7 @@
- {
- public:
-     UniListGen(UniConfGenList *_l);
--    virtual UniListGen::~UniListGen() { delete l; }
-+    virtual ~UniListGen() { delete l; }
-     UniConfGenList *l;
-     UniConfGenList::Iter i;
---- wvstreams-4.0.2/include/wvhttppool.h       2005-03-24 03:01:23.000000000 +0100
-+++ wvstreams-4.0.2.gcc4/include/wvhttppool.h  2006-01-18 21:22:20.000000000 +0100
-@@ -57,7 +57,7 @@
-     WvString linkname;
-     WvUrl url;
--    WvUrlLink::WvUrlLink(WvStringParm _linkname, WvStringParm _url)
-+    WvUrlLink(WvStringParm _linkname, WvStringParm _url)
-       : linkname(_linkname), url(_url)
-     {}
- };
---- wvstreams-4.0.2/xplc/include/xplc/IObject.h        2005-03-24 03:01:23.000000000 +0100
-+++ wvstreams-4.0.2.gcc4/xplc/include/xplc/IObject.h   2006-07-27 10:56:07.470497750 +0200
-@@ -61,6 +61,8 @@
- class IObject {
-   UNSTABLE_INTERFACE
- public:
-+  virtual ~IObject() { }
-+
-   /**
-    * Indicate you are using this object.  This increases the reference
-    * count of the object by one.  Usually, when the reference count
---- wvstreams-4.0.2/crypto/wvtripledes.cc      2005-03-24 02:01:23.000000000 +0000
-+++ wvstreams-4.0.2.gcc4/crypto/wvtripledes.cc 2006-07-27 20:08:31.000000000 +0000
-@@ -102,7 +102,7 @@
-       // ECB works 64bits at a time
-       while (len >= 8)
-       {
--#if OPENSSL_VERSION_NUMBER >= 0x0090705FL
-+#if (OPENSSL_VERSION_NUMBER >= 0x0090705FL) && (OPENSSL_VERSION_NUMBER < 0x0090800FL)
-           DES_ecb3_encrypt(data, crypt,
-                            &deskey1, &deskey2, &deskey3,
-                            mode == ECBEncrypt ? DES_ENCRYPT : DES_DECRYPT);
---- wvstreams-4.0.2/crypto/wvx509.cc   2006-07-28 12:50:53.000000000 +0000
-+++ wvstreams-4.0.2.gcc4/crypto/wvx509.cc      2006-07-28 12:50:14.000000000 +0000
-@@ -1162,6 +1162,17 @@
-               else
-               {
-                   void *ext_data = NULL;
-+#if OPENSSL_VERSION_NUMBER >= 0x0090800FL
-+                  if (method->it) 
-+                      ext_data = ASN1_item_d2i(NULL, 
-+                              (const unsigned char**) &ext->value->data, 
-+                                              ext->value->length, 
-+                                              ASN1_ITEM_ptr(method->it));
-+                  else
-+                      ext_data = method->d2i(NULL,
-+                              (const unsigned char**) &ext->value->data, 
-+                                            ext->value->length);
-+#else
-                   if (method->it) 
-                       ext_data = ASN1_item_d2i(NULL, &ext->value->data, 
-                                               ext->value->length, 
-@@ -1169,6 +1180,7 @@
-                   else
-                       ext_data = method->d2i(NULL, &ext->value->data, 
-                                             ext->value->length);
-+#endif
-                   
-                   if (method->i2s)
-                   {
This page took 0.116042 seconds and 4 git commands to generate.