Commit 4c270ec5 authored by Pavlov Konstantin's avatar Pavlov Konstantin

Remove glide video output module.

parent 20a560c6
...@@ -46,7 +46,6 @@ DIRECTX directx ...@@ -46,7 +46,6 @@ DIRECTX directx
WINGDI wingdi WINGDI wingdi
SVGALIB svgalib SVGALIB svgalib
GGI ggi GGI ggi
GLIDE glide
AA aa AA aa
CACA caca CACA caca
OSS oss OSS oss
...@@ -111,7 +110,6 @@ WITHFRIBIDICONFIGPATH fribidi-config-path ...@@ -111,7 +110,6 @@ WITHFRIBIDICONFIGPATH fribidi-config-path
WITHQTE qte WITHQTE qte
WITHDIRECTX directx WITHDIRECTX directx
WITHGGI ggi WITHGGI ggi
WITHGLIDE glide
WITHCACACONFIGPATH caca-config-path WITHCACACONFIGPATH caca-config-path
WITHMAD mad WITHMAD mad
WITHMADTREE mad-tree WITHMADTREE mad-tree
......
...@@ -127,10 +127,6 @@ bool 'GGI support' CONFIG_GGI ...@@ -127,10 +127,6 @@ bool 'GGI support' CONFIG_GGI
if [ "$CONFIG_GGI" = "y" ]; then if [ "$CONFIG_GGI" = "y" ]; then
string ' Path to libggi' CONFIG_WITHGGI "" string ' Path to libggi' CONFIG_WITHGGI ""
fi fi
bool 'Glide (3dfx) support' CONFIG_GLIDE
if [ "$CONFIG_GLIDE" = "y" ]; then
string ' Path to libglide' CONFIG_WITHGLIDE ""
fi
bool 'aalib output' CONFIG_AA bool 'aalib output' CONFIG_AA
bool 'cacalib output' CONFIG_CACA bool 'cacalib output' CONFIG_CACA
if [ "$CONFIG_CACA" = "y" ]; then if [ "$CONFIG_CACA" = "y" ]; then
......
...@@ -4411,33 +4411,6 @@ then ...@@ -4411,33 +4411,6 @@ then
fi ]) fi ])
fi fi
dnl
dnl Glide module
dnl
AC_ARG_ENABLE(glide,
[ --enable-glide Glide (3dfx) support (default disabled)])
if test "${enable_glide}" = "yes"
then
CFLAGS_save="${CFLAGS}"
AC_ARG_WITH(glide,
[ --with-glide=PATH path to libglide],
[ if test "${with_glide}" != "no" -a -n "${with_glide}"
then
VLC_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
VLC_ADD_LIBS([glide],[-L${with_glide}/lib])
CFLAGS="$CFLAGS -I${with_glide}/include"
fi ])
CFLAGS="$CFLAGS -I/usr/include/glide"
AC_CHECK_HEADER(glide.h,[
VLC_ADD_PLUGIN([glide])
VLC_ADD_LIBS([glide],[-lglide2x -lm])
VLC_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
],[
AC_MSG_ERROR([You don't have libglide. Install it or do not use --enable-glide])
])
CFLAGS="${CFLAGS_save}"
fi
dnl dnl
dnl AA plugin dnl AA plugin
dnl dnl
......
...@@ -119,7 +119,6 @@ $Id$ ...@@ -119,7 +119,6 @@ $Id$
* gaussianblur: gaussian blur video filter * gaussianblur: gaussian blur video filter
* gestures: mouse gestures control plugin * gestures: mouse gestures control plugin
* ggi: video output module using the GGI API. * ggi: video output module using the GGI API.
* glide: video output module using the Glide API.
* glwin32: a opengl provider using DirectX OpenGL * glwin32: a opengl provider using DirectX OpenGL
* glx: a opengl provider using X11 OpenGL * glx: a opengl provider using X11 OpenGL
* gme: game music files demuxer * gme: game music files demuxer
......
...@@ -8,7 +8,6 @@ SOURCES_aa = aa.c ...@@ -8,7 +8,6 @@ SOURCES_aa = aa.c
SOURCES_caca = caca.c SOURCES_caca = caca.c
SOURCES_fb = fb.c SOURCES_fb = fb.c
SOURCES_ggi = ggi.c SOURCES_ggi = ggi.c
SOURCES_glide = glide.c
SOURCES_vout_sdl = sdl.c SOURCES_vout_sdl = sdl.c
SOURCES_svgalib = svgalib.c SOURCES_svgalib = svgalib.c
SOURCES_mga = mga.c SOURCES_mga = mga.c
......
This diff is collapsed.
...@@ -1228,7 +1228,6 @@ modules/video_output/caca.c ...@@ -1228,7 +1228,6 @@ modules/video_output/caca.c
modules/video_output/directfb.c modules/video_output/directfb.c
modules/video_output/fb.c modules/video_output/fb.c
modules/video_output/ggi.c modules/video_output/ggi.c
modules/video_output/glide.c
modules/video_output/hd1000v.cpp modules/video_output/hd1000v.cpp
modules/video_output/image.c modules/video_output/image.c
modules/video_output/mga.c modules/video_output/mga.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment