diff options
author | gregory guy <gregory-tde@laposte.net> | 2021-03-02 13:57:11 +0100 |
---|---|---|
committer | gregory guy <gregory-tde@laposte.net> | 2021-03-02 14:10:10 +0100 |
commit | 95a6a36403a289814bb252cd5496e4d67d331b11 (patch) | |
tree | 2da9acd78281232d12a8a2da75d5e78b9f220df9 /mplayer_vo_x11.diff | |
parent | 1ada9e7a1182c27208d784aab9f046dd5da0d22f (diff) | |
download | kmplayer-95a6a36403a289814bb252cd5496e4d67d331b11.tar.gz kmplayer-95a6a36403a289814bb252cd5496e4d67d331b11.zip |
Drop automake build support.
Add basic cmake build instructions.
Delete empty file NEWS.
Rework of the README and the English help page files.
Update some cmake files with latest macros.
libXv and libXext are handled by cmake intern modules through X11 variables.
Few cosmetics.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'mplayer_vo_x11.diff')
-rw-r--r-- | mplayer_vo_x11.diff | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/mplayer_vo_x11.diff b/mplayer_vo_x11.diff deleted file mode 100644 index 992ce15..0000000 --- a/mplayer_vo_x11.diff +++ /dev/null @@ -1,28 +0,0 @@ ---- libvo/vo_x11.c.orig Thu Dec 26 18:18:31 2002 -+++ libvo/vo_x11.c Thu Dec 26 19:58:49 2002 -@@ -294,12 +294,12 @@ - bg=WhitePixel( mDisplay,mScreen ); - fg=BlackPixel( mDisplay,mScreen ); - -- theCmap=vo_x11_create_colormap(&vinfo); -+ //theCmap=vo_x11_create_colormap(&vinfo); - - xswa.background_pixel=0; - xswa.border_pixel=0; -- xswa.colormap=theCmap; -- xswamask=CWBackPixel | CWBorderPixel | CWColormap; -+ //xswa.colormap=theCmap; -+ xswamask=CWBackPixel | CWBorderPixel;// | CWColormap; - - #ifdef HAVE_XF86VM - if ( vm ) -@@ -321,6 +321,9 @@ - } - else - { -+ theCmap=vo_x11_create_colormap(&vinfo); -+ xswa.colormap=theCmap; -+ xswamask=CWBackPixel | CWBorderPixel | CWColormap; - if ( vo_window == None ) - { - vo_window=XCreateWindow( mDisplay,mRootWin, |