summaryrefslogtreecommitdiff
path: root/games/tnl/files/patch-src-sound.cc
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2011-06-01 21:55:13 +0000
committerRene Ladan <rene@FreeBSD.org>2011-06-01 21:55:13 +0000
commitb8408f8dd2628e1ccf0783bd9f4c236beaea867f (patch)
treeff830f5f6c5873d2bcb3ead8a218f02302658eff /games/tnl/files/patch-src-sound.cc
parent- update to 4.8.0 (diff)
Remove expired ports:
2011-05-01 german/citrix_xenapp: "crashes with f10" 2011-05-01 japanese/citrix_xenapp: "crashes with f10" 2011-05-01 net/citrix_xenapp: "crashes with f10" 2011-05-11 comms/gammu-python: since version 1.29.0 comms/gammu uses python by default 2011-05-01 java/gj: Upstream disapear and distfile is no more available 2011-05-09 net/ipv6socket_scrub: Upstream disapear and distfile is no more available 2011-05-13 graphics/lodju: depends on rep-gtk, which doesn't build anymore. 2011-05-01 www/mod_pubcookie: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now 2011-05-01 ftp/prozilla: Upstream disapear and distfile is no more available 2011-05-01 www/py-django11: Unsupported (no longer receive security updates or bugfixes) 2011-05-13 x11-toolkits/rep-gtk: missing rep-config from librep port broke the build. 2011-05-01 games/tnl: Upstream development has ceased, it doesn't work with newer CEGUI and is generally broken 2011-06-01 net/vnc2swf: Development is now superseded by deskutils/vnc2flv
Notes
Notes: svn path=/head/; revision=274947
Diffstat (limited to 'games/tnl/files/patch-src-sound.cc')
-rw-r--r--games/tnl/files/patch-src-sound.cc29
1 files changed, 0 insertions, 29 deletions
diff --git a/games/tnl/files/patch-src-sound.cc b/games/tnl/files/patch-src-sound.cc
deleted file mode 100644
index 196acb263c51..000000000000
--- a/games/tnl/files/patch-src-sound.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/sound.cc.orig 2010-04-07 17:42:43.000000000 +0400
-+++ src/sound.cc 2010-04-07 17:44:00.000000000 +0400
-@@ -31,7 +31,7 @@
- ALenum error = alGetError();
- if (error != AL_NO_ERROR) {
- ls_error("OpenAL Error %d", error);
-- const ALbyte * errtxt = alGetString(error);
-+ const ALchar * errtxt = alGetString(error);
- error = alGetError();
- if (error == AL_NO_ERROR) {
- ls_error(": %s \n", errtxt);
-@@ -318,7 +318,7 @@
- ALCenum error = alcGetError(dev);
- if (error != ALC_NO_ERROR) {
- ls_error("OpenAL (ALC) Error %d", error);
-- const ALbyte * errtxt = alcGetString(NULL,error);
-+ const ALCchar * errtxt = alcGetString(NULL,error);
- error = alcGetError(dev);
- if (error == ALC_NO_ERROR) {
- ls_error(": %s \n", errtxt);
-@@ -340,7 +340,7 @@
- if (device == NULL ) {
- throw std::runtime_error("SoundMan: Failed to initialize Sound subsystem.");
- } else {
-- const ALCbyte * device_specifier =
-+ const ALCchar * device_specifier =
- alcGetString(device, ALC_DEVICE_SPECIFIER);
- check(device);
- ls_message(" Using device \"%s\"\n", device_specifier);