diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-07-23 03:38:00 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-07-23 03:38:00 +0000 |
commit | f81fe4ce7a18bf6a026235942d59d286f137b6ea (patch) | |
tree | 9266682098fb89c910c2e505bd1173e860bcb449 /games-sports/trigger/files | |
parent | patch to fix use of latest sdl-image (bug #141072), patch from Tristan Heaven (diff) | |
download | gentoo-2-f81fe4ce7a18bf6a026235942d59d286f137b6ea.tar.gz gentoo-2-f81fe4ce7a18bf6a026235942d59d286f137b6ea.tar.bz2 gentoo-2-f81fe4ce7a18bf6a026235942d59d286f137b6ea.zip |
old
(Portage version: 2.1.1_pre3-r1)
Diffstat (limited to 'games-sports/trigger/files')
-rw-r--r-- | games-sports/trigger/files/digest-trigger-0.5.1c | 2 | ||||
-rw-r--r-- | games-sports/trigger/files/trigger-0.5.1c-glx-check.patch | 22 |
2 files changed, 0 insertions, 24 deletions
diff --git a/games-sports/trigger/files/digest-trigger-0.5.1c b/games-sports/trigger/files/digest-trigger-0.5.1c deleted file mode 100644 index 83916b5efeb6..000000000000 --- a/games-sports/trigger/files/digest-trigger-0.5.1c +++ /dev/null @@ -1,2 +0,0 @@ -MD5 8d4747f7af55f867866dfbf34333c962 trigger-0.5.1c-src.tar.bz2 259508 -MD5 ae4f7358c2af98daacb6881bcc159d40 trigger-0.5.1c-data.tar.bz2 6165837 diff --git a/games-sports/trigger/files/trigger-0.5.1c-glx-check.patch b/games-sports/trigger/files/trigger-0.5.1c-glx-check.patch deleted file mode 100644 index 185a407b0fb7..000000000000 --- a/games-sports/trigger/files/trigger-0.5.1c-glx-check.patch +++ /dev/null @@ -1,22 +0,0 @@ -Make sure strings like 2.0 aren't misdetected as 0.0 or 1.0. - -http://bugs.gentoo.org/100374 - ---- src/pengine/glew.c -+++ src/pengine/glew.c -@@ -5737,13 +5737,13 @@ - s = glGetString(GL_VERSION); - if (!s) return GLEW_ERROR_NO_GL_VERSION; - i = _glewStrCLen(s, '.')+1; -- if (s+i-1 == NULL || s+i == NULL || s[i] < '1') -+ if (s+i-1 == NULL || s+i == NULL || (s[0] < '2' && s[i] < '1')) - { - return GLEW_ERROR_GL_VERSION_10_ONLY; - } - else - { -- if (s[i] >= '5') -+ if (s[0] >= '2' || s[i] >= '5') - { - GLEW_VERSION_1_1 = GL_TRUE; - GLEW_VERSION_1_2 = GL_TRUE; |