diff options
author | arpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-02-27 00:23:54 +0000 |
---|---|---|
committer | arpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-02-27 00:23:54 +0000 |
commit | 8d38e85978f264087fa75ad53ca99c132839701c (patch) | |
tree | e9992a53f5c34a0e84344779d1a56a697b73f2ed /configure | |
parent | 2af837b439666f7bebdbd4396c836bd15f51f284 (diff) |
DGA support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -6,6 +6,10 @@ # # Changes in reversed order: # +# 2000/02/26 by A'rpi: +# - added DGA option: --enable-dga +# - no notify if --with-win32libdir used [Tibcu] +# # 2000/02/25 by LGB: # - TMPDIR or TEMPDIR variable is honored during tests for temporary files # - ChangeLog inside configure was reversed ;-) @@ -24,7 +28,7 @@ # - Some useless { ... } are removed # # some changes by A'rpi/ESP-team: -# - the --win32libdir patch by Aaron Hope applied +# - the --with-win32libdir patch by Aaron Hope applied # - some english bugfix again :) # - cpu type selection changed: # ( k7->k6->k5-> ) || (i686->pentiumpro-> ) pentium-> i486 -> i386 -> error! @@ -133,6 +137,7 @@ _syncfb=no _mlib=no _mpg123=no _xmga=no +_dga=no _lirc=no _x=1 @@ -383,6 +388,9 @@ do --enable-xmga) _xmga=yes ;; + --enable-dga) + _dga=yes + ;; --enable-xv) _xv=yes ;; @@ -445,6 +453,7 @@ do ;; --with-win32libdir=*) _win32libdir=`echo $ac_option | cut -d '=' -f 2` + _win32libdirnotify=no ;; --size-x=*) _x=`echo $ac_option | cut -d '=' -f 2` @@ -622,6 +631,13 @@ else _3dfx='#undef HAVE_3DFX' fi +if [ $_dga = yes ]; then + _dga='#define HAVE_DGA' + _vosrc=$_vosrc' vo_dga.c' +else + _dga='#undef HAVE_DGA' +fi + if [ $_mpg123 = yes ]; then _mpg123='#define DEFAULT_MPG123' else @@ -690,6 +706,7 @@ $_ssem // only define if you have SSE (Intel Pentium III or Celeron II) $_x11 $_xv $_gl +$_dga $_sdldef $_3dfx $_mga |