diff options
author | 2006-04-03 17:34:09 +0000 | |
---|---|---|
committer | 2006-04-03 17:34:09 +0000 | |
commit | a6d0dee871133bd0fb7f976bb8cb7695613ab4eb (patch) | |
tree | 84f5e0a83f041025d112a3aace529b03bb240d04 /games-misc/yadex/files | |
parent | Fixed typo in ChangeLog (diff) | |
download | historical-a6d0dee871133bd0fb7f976bb8cb7695613ab4eb.tar.gz historical-a6d0dee871133bd0fb7f976bb8cb7695613ab4eb.tar.bz2 historical-a6d0dee871133bd0fb7f976bb8cb7695613ab4eb.zip |
gcc-4 patch, bug #120866
Package-Manager: portage-2.1_pre7-r3
Diffstat (limited to 'games-misc/yadex/files')
-rw-r--r-- | games-misc/yadex/files/digest-yadex-1.7.0 | 2 | ||||
-rw-r--r-- | games-misc/yadex/files/yadex-1.7.0-NULL-is-not-zero.patch | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/games-misc/yadex/files/digest-yadex-1.7.0 b/games-misc/yadex/files/digest-yadex-1.7.0 index 402f0738fc72..55d5abe1c59c 100644 --- a/games-misc/yadex/files/digest-yadex-1.7.0 +++ b/games-misc/yadex/files/digest-yadex-1.7.0 @@ -1 +1,3 @@ MD5 d341abe066525394082edfd520af86ae yadex-1.7.0.tar.gz 551318 +RMD160 6f86e6aa1fd9c9241a883f03fd9567eac8d83887 yadex-1.7.0.tar.gz 551318 +SHA256 316aca295b647b45d6d0d359fd7bba0448e7e114d295347add7ac0e87aa0f446 yadex-1.7.0.tar.gz 551318 diff --git a/games-misc/yadex/files/yadex-1.7.0-NULL-is-not-zero.patch b/games-misc/yadex/files/yadex-1.7.0-NULL-is-not-zero.patch new file mode 100644 index 000000000000..7ceb7a558873 --- /dev/null +++ b/games-misc/yadex/files/yadex-1.7.0-NULL-is-not-zero.patch @@ -0,0 +1,11 @@ +--- yadex-1.7.0/src/wadlist.cc.old 2003-01-29 14:45:19.000000000 -0700 ++++ yadex-1.7.0/src/wadlist.cc 2003-01-29 14:45:56.000000000 -0700 +@@ -175,7 +175,7 @@ + priv->iter = priv->list.erase (i); + if (priv->iter == priv->list.begin ()) + { +- priv->iter = 0; // Catch bugs ++ priv->iter = (std::_List_iterator<boost::shared_ptr<Wad_file> >)NULL; // Catch bugs + priv->rewound = true; + } + } |