diff options
author | Tristan Heaven <tristan@gentoo.org> | 2006-12-12 02:53:14 +0000 |
---|---|---|
committer | Tristan Heaven <tristan@gentoo.org> | 2006-12-12 02:53:14 +0000 |
commit | 0c8c6d941068ab547ac60b24f801ff2074094e35 (patch) | |
tree | b101fec2f7ff115d2e9b1aec09c4e44c4db97525 /games-action/chromium/files | |
parent | Pruned old versions with new versions with same or better keywords. (diff) | |
download | historical-0c8c6d941068ab547ac60b24f801ff2074094e35.tar.gz historical-0c8c6d941068ab547ac60b24f801ff2074094e35.tar.bz2 historical-0c8c6d941068ab547ac60b24f801ff2074094e35.zip |
waste of space
Package-Manager: portage-2.1.2_rc3-r2
Diffstat (limited to 'games-action/chromium/files')
-rw-r--r-- | games-action/chromium/files/0.9.12-proper-options.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/games-action/chromium/files/0.9.12-proper-options.patch b/games-action/chromium/files/0.9.12-proper-options.patch deleted file mode 100644 index 75643b930c41..000000000000 --- a/games-action/chromium/files/0.9.12-proper-options.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- configure.orig 2003-11-19 19:33:19.947616192 -0500 -+++ configure 2003-11-19 19:35:31.510615576 -0500 -@@ -7,10 +7,6 @@ - - ## Defaults - ################################### --ENABLE_SDL="yes" --ENABLE_SMPEG="yes" --ENABLE_VORBIS="no" --ENABLE_SETUP="yes" - - ## Where do we look for stuff? - ################################### -@@ -158,8 +154,8 @@ - ## set up other config.mak variables - ###################################################################### - GL_LIBS="-lglpng -lGL -lGLU -lm" --AL_LIBS="-L../support/openal/lib -lopenal -ldl" --AL_CFLAGS="-I../support/openal/linux/include -I../support/openal/include" -+AL_LIBS="-lopenal -ldl" -+AL_CFLAGS="" - - ## write out config.mak - ###################################################################### ---- scripts/Makefile.all.orig 2003-11-19 19:41:22.502256736 -0500 -+++ scripts/Makefile.all 2003-11-19 19:41:25.414813960 -0500 -@@ -1,5 +1,4 @@ - SUPPORT_DIRS = \ -- ./support/openal/ \ - ./support/glpng/src - - CHROMIUM_DIRS = \ ---- scripts/Makefile.no-setup.orig 2003-11-19 19:41:22.502256736 -0500 -+++ scripts/Makefile.no-setup 2003-11-19 19:41:25.414813960 -0500 -@@ -1,5 +1,4 @@ - SUPPORT_DIRS = \ -- ./support/openal/ \ - ./support/glpng/src - - CHROMIUM_DIRS = \ ---- src-setup/Audio.cpp.orig 2003-11-19 20:03:23.237474464 -0500 -+++ src-setup/Audio.cpp 2003-11-19 20:03:49.838430504 -0500 -@@ -71,7 +71,14 @@ - if(!initialized) - { - fprintf(stderr, "starting OpenAL..."); -+#ifdef OLD_OPENAL - context_id = alcCreateContext(NULL); -+#else -+ ALCdevice *dev; -+ dev = alcOpenDevice( NULL ); -+ context_id = alcCreateContext(dev, NULL); -+ alcMakeContextCurrent(context_id); -+#endif - initialized = (bool)context_id; - fprintf(stderr, "done.\n"); - |