diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2004-03-11 14:28:27 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2004-03-11 14:28:27 +0000 |
commit | 017e1d05cd598838a5f6f5a7f69485c0d0479423 (patch) | |
tree | 92505e85892c6eb3bed9462540bbdb2b87de99f1 | |
parent | try 2 (Manifest recommit) (diff) | |
download | gentoo-2-017e1d05cd598838a5f6f5a7f69485c0d0479423.tar.gz gentoo-2-017e1d05cd598838a5f6f5a7f69485c0d0479423.tar.bz2 gentoo-2-017e1d05cd598838a5f6f5a7f69485c0d0479423.zip |
missing patch
-rw-r--r-- | media-video/ati-drivers-extra/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/ati-drivers-extra/files/fglrx-3.7.0-fix-fglrx_panel-includes.patch | 72 |
2 files changed, 77 insertions, 1 deletions
diff --git a/media-video/ati-drivers-extra/ChangeLog b/media-video/ati-drivers-extra/ChangeLog index b0bcfbed1e21..5a2c62f34029 100644 --- a/media-video/ati-drivers-extra/ChangeLog +++ b/media-video/ati-drivers-extra/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/ati-drivers-extra # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ati-drivers-extra/ChangeLog,v 1.2 2004/03/10 23:35:42 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ati-drivers-extra/ChangeLog,v 1.3 2004/03/11 14:28:27 lu_zero Exp $ + + 11 Mar 2004; Luca Barbato <lu_zero@gentoo.org> + files/fglrx-3.7.0-fix-fglrx_panel-includes.patch: + Missing patch added *ati-drivers-extra-3.7.6 (11 Mar 2004) diff --git a/media-video/ati-drivers-extra/files/fglrx-3.7.0-fix-fglrx_panel-includes.patch b/media-video/ati-drivers-extra/files/fglrx-3.7.0-fix-fglrx_panel-includes.patch new file mode 100644 index 000000000000..93bea6c049bb --- /dev/null +++ b/media-video/ati-drivers-extra/files/fglrx-3.7.0-fix-fglrx_panel-includes.patch @@ -0,0 +1,72 @@ +--- ATITVOExtensions.c.orig 2003-11-11 17:32:14.000000000 +0000 ++++ ATITVOExtensions.c 2003-12-29 19:09:46.790701616 +0000 +@@ -33,68 +33,15 @@ + #include <stdlib.h> + + #include "ATITVOExtensions.h" +-#include "Radeon_extension_tvout.h" ++#include "TVOExt.h" + + static XExtensionInfo _atitvo_info_data; +-static XExtensionInfo *atitvo_info = &_atitvo_info_data; +-static char *atitvo_extension_name = ATITVOUT_EXTENSION_NAME; +- + + ////////////////////////////////////////////////////////////////////////////// + // private functions + + XExtDisplayInfo *info; + +-// X shutdown hook function that will cleanup the opened extension +-static XEXT_GENERATE_CLOSE_DISPLAY (close_display_atitvo, +- atitvo_info) +- +-// table with X hooks +-static /* const */ XExtensionHooks atitvo_extension_hooks = { +- NULL, /* create_gc */ +- NULL, /* copy_gc */ +- NULL, /* flush_gc */ +- NULL, /* free_gc */ +- NULL, /* create_font */ +- NULL, /* free_font */ +- close_display_atitvo, /* close_display */ +- NULL, /* wire_to_event */ +- NULL, /* event_to_wire */ +- NULL, /* error */ +- NULL, /* error_string */ +-}; +- +-// find_display_atitvo - get the display info block for atitvo extension +-static XEXT_GENERATE_FIND_DISPLAY (find_display_atitvo, +- atitvo_info, +- atitvo_extension_name, +- &atitvo_extension_hooks, +- ATITVOUT_NUMBER_EVENTS, +- NULL) +- +- +- +-static int +-answerisyes(char *s) +-{ +- if (s[0] == '\'') /* For fools that type the ' literally. */ +- return tolower(s[1]) == 'y'; +- return tolower(s[0]) == 'y'; +-} +- +- +-static void +-getstring(char *s) +-{ +- char *cp; +- fgets(s, 80, stdin); +- cp = strchr(s, '\n'); +- if (cp) +- *cp=0; +-} +- +- +- + ////////////////////////////////////////////////////////////////////////////// + // type defines + |