diff options
author | 2004-07-03 01:08:10 +0000 | |
---|---|---|
committer | 2004-07-03 01:08:10 +0000 | |
commit | 4bf3a949ba47cd745c4ce4ea3bf87056ce97b1b7 (patch) | |
tree | 7042f1cd84d1590abf77403ca4bcc42773717d30 /app-text/sword/files | |
parent | virtual/xemacs fix + use.local fixo (Manifest recommit) (diff) | |
download | gentoo-2-4bf3a949ba47cd745c4ce4ea3bf87056ce97b1b7.tar.gz gentoo-2-4bf3a949ba47cd745c4ce4ea3bf87056ce97b1b7.tar.bz2 gentoo-2-4bf3a949ba47cd745c4ce4ea3bf87056ce97b1b7.zip |
early version bump to fix stable x86 compile errors; removing broken ebuilds
Diffstat (limited to 'app-text/sword/files')
-rw-r--r-- | app-text/sword/files/digest-sword-1.5.6 | 1 | ||||
-rw-r--r-- | app-text/sword/files/digest-sword-1.5.7 | 1 | ||||
-rw-r--r-- | app-text/sword/files/sword-gcc34-gentoo.patch | 19 | ||||
-rw-r--r-- | app-text/sword/files/sword-installmgr-gentoo.patch | 12 |
4 files changed, 0 insertions, 33 deletions
diff --git a/app-text/sword/files/digest-sword-1.5.6 b/app-text/sword/files/digest-sword-1.5.6 deleted file mode 100644 index 5a445bad1c70..000000000000 --- a/app-text/sword/files/digest-sword-1.5.6 +++ /dev/null @@ -1 +0,0 @@ -MD5 4a374e78edc8a8d8801955faf989007e sword-1.5.6.tar.gz 3427634 diff --git a/app-text/sword/files/digest-sword-1.5.7 b/app-text/sword/files/digest-sword-1.5.7 deleted file mode 100644 index 4a9e5e6da2e7..000000000000 --- a/app-text/sword/files/digest-sword-1.5.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 369f09068839c646aeab691c63a40d67 sword-1.5.7.tar.gz 1482711 diff --git a/app-text/sword/files/sword-gcc34-gentoo.patch b/app-text/sword/files/sword-gcc34-gentoo.patch deleted file mode 100644 index bf0869f9cb20..000000000000 --- a/app-text/sword/files/sword-gcc34-gentoo.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- include/multimapwdef.h.old 2004-04-29 04:22:07.516715976 +0100 -+++ include/multimapwdef.h 2004-04-29 04:22:20.051810352 +0100 -@@ -12,14 +12,14 @@ - public: - typedef std::pair<const Key, T> value_type; - T& getWithDefault(const Key& k, const T& defaultValue) { -- if (find(k) == end()) { -+ if (find(k) == this->end()) { - insert(value_type(k, defaultValue)); - } - return (*(find(k))).second; - } - - T& operator[](const Key& k) { -- if (find(k) == end()) { -+ if (find(k) == this->end()) { - insert(value_type(k, T())); - } - return (*(find(k))).second; diff --git a/app-text/sword/files/sword-installmgr-gentoo.patch b/app-text/sword/files/sword-installmgr-gentoo.patch deleted file mode 100644 index 90d664dcdbbf..000000000000 --- a/app-text/sword/files/sword-installmgr-gentoo.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur sword-1.5.7.vanilla/src/mgr/installmgr.cpp sword-1.5.7/src/mgr/installmgr.cpp ---- src/mgr/installmgr.cpp 2003-11-25 13:11:13.000000000 -0600 -+++ src/mgr/installmgr.cpp 2004-04-08 15:51:34.933586760 -0500 -@@ -150,7 +150,7 @@ - curl_easy_setopt(curl, CURLOPT_FILE, &ftpfile); - - /* Switch on full protocol/debug output */ -- curl_easy_setopt(curl, CURLOPT_VERBOSE, TRUE); -+ curl_easy_setopt(curl, CURLOPT_VERBOSE, true); - - res = curl_easy_perform(curl); - |