diff options
author | 2009-01-16 21:09:50 +0000 | |
---|---|---|
committer | 2009-01-16 21:09:50 +0000 | |
commit | 389e960d6cac9e7c5a3a0b846014dec0955ac4b0 (patch) | |
tree | c899c6d07b495986ee437c17306c18f66cc971e3 /media-gfx/povray/files | |
parent | Updating homepage and SRC_URI, as noted by Todd Partridge in bug 255187. (diff) | |
download | historical-389e960d6cac9e7c5a3a0b846014dec0955ac4b0.tar.gz historical-389e960d6cac9e7c5a3a0b846014dec0955ac4b0.tar.bz2 historical-389e960d6cac9e7c5a3a0b846014dec0955ac4b0.zip |
Fix expiration date issue (bug #255176)
Package-Manager: portage-2.1.6.6/cvs/Linux 2.6.29-rc1-git6 i686
Diffstat (limited to 'media-gfx/povray/files')
-rw-r--r-- | media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch b/media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch new file mode 100644 index 000000000000..2da0056750b5 --- /dev/null +++ b/media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch @@ -0,0 +1,15 @@ +--- vfe/vfe.cpp 2008-09-06 00:14:57.000000000 +0200 ++++ vfe/vfe.cpp 2009-01-16 12:48:13.646808534 +0100 +@@ -747,9 +747,9 @@ + + // this code may not be removed or modified unless the compilation is for personal + // use and the binary is not distributed to anyone else. +- xtime_get(&t, TIME_UTC); +- if (t.sec > 1230760800) +- throw POV_EXCEPTION(kCannotHandleRequestErr, "Please obtain an updated version of this application."); ++ // xtime_get(&t, TIME_UTC); ++ // if (t.sec > 1230760800) ++ // throw POV_EXCEPTION(kCannotHandleRequestErr, "Please obtain an updated version of this application."); + + state = kStarting; + |