Mercurial > mplayer.hg
comparison configure @ 10215:dd32fe16a36c
lirccd support by Fredrik Tolf <fredrik@dolda2000.cjb.net>
author | alex |
---|---|
date | Fri, 30 May 2003 18:23:55 +0000 |
parents | e2c83c931fa6 |
children | d275152390ee |
comparison
equal
deleted
inserted
replaced
10214:e2c83c931fa6 | 10215:dd32fe16a36c |
---|---|
145 --enable-linux-devfs set default devices to devfs ones [disable] | 145 --enable-linux-devfs set default devices to devfs ones [disable] |
146 --enable-termcap use termcap database for key codes [autodetect] | 146 --enable-termcap use termcap database for key codes [autodetect] |
147 --disable-iconv do not use iconv(3) function [autodetect] | 147 --disable-iconv do not use iconv(3) function [autodetect] |
148 --disable-setlocale disable setlocale using in mplayer [autodetect] | 148 --disable-setlocale disable setlocale using in mplayer [autodetect] |
149 --enable-lirc enable LIRC (remote control) support [autodetect] | 149 --enable-lirc enable LIRC (remote control) support [autodetect] |
150 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect] | |
150 --enable-joystick enable joystick support [disable] | 151 --enable-joystick enable joystick support [disable] |
151 --disable-tv disable TV Interface (tv/dvb grabbers) [enable] | 152 --disable-tv disable TV Interface (tv/dvb grabbers) [enable] |
152 --disable-tv-v4l disable Video4Linux TV Interface support [autodetect] | 153 --disable-tv-v4l disable Video4Linux TV Interface support [autodetect] |
153 --disable-tv-bsdbt848 disable BSD BT848 Interface support [autodetect] | 154 --disable-tv-bsdbt848 disable BSD BT848 Interface support [autodetect] |
154 --disable-edl disable EDL (edit decision list) support [enable] | 155 --disable-edl disable EDL (edit decision list) support [enable] |
1062 _joystick=no | 1063 _joystick=no |
1063 _xvid=auto | 1064 _xvid=auto |
1064 _divx4linux=auto | 1065 _divx4linux=auto |
1065 _opendivx=no | 1066 _opendivx=no |
1066 _lirc=auto | 1067 _lirc=auto |
1068 _lircc=auto | |
1067 _gui=no | 1069 _gui=no |
1068 _termcap=auto | 1070 _termcap=auto |
1069 _termios=auto | 1071 _termios=auto |
1070 _3dfx=no | 1072 _3dfx=no |
1071 _tdfxfb=no | 1073 _tdfxfb=no |
1247 --disable-libavcodec) _libavcodec=no ;; | 1249 --disable-libavcodec) _libavcodec=no ;; |
1248 --enable-libfame) _fame=yes ;; | 1250 --enable-libfame) _fame=yes ;; |
1249 --disable-libfame) _fame=no ;; | 1251 --disable-libfame) _fame=no ;; |
1250 --enable-lirc) _lirc=yes ;; | 1252 --enable-lirc) _lirc=yes ;; |
1251 --disable-lirc) _lirc=no ;; | 1253 --disable-lirc) _lirc=no ;; |
1254 --enable-lircc) _lircc=yes ;; | |
1255 --disable-lircc) _lircc=no ;; | |
1252 --enable-gui) _gui=yes ;; | 1256 --enable-gui) _gui=yes ;; |
1253 --disable-gui) _gui=no ;; | 1257 --disable-gui) _gui=no ;; |
1254 --enable-termcap) _termcap=yes ;; | 1258 --enable-termcap) _termcap=yes ;; |
1255 --disable-termcap) _termcap=no ;; | 1259 --disable-termcap) _termcap=no ;; |
1256 --enable-termios) _termios=yes ;; | 1260 --enable-termios) _termios=yes ;; |
5193 else | 5197 else |
5194 _def_lirc='#undef HAVE_LIRC' | 5198 _def_lirc='#undef HAVE_LIRC' |
5195 fi | 5199 fi |
5196 echores "$_lirc" | 5200 echores "$_lirc" |
5197 | 5201 |
5202 echocheck "lircc" | |
5203 if test "$_lircc" = auto ; then | |
5204 _lircc=no | |
5205 cat > $TMPC <<EOF | |
5206 #include <lirc/lircc.h> | |
5207 int main(void) { return 0; } | |
5208 EOF | |
5209 cc_check -llircc && _lircc=yes | |
5210 fi | |
5211 if test "$_lircc" = yes ; then | |
5212 _def_lircc='#define HAVE_LIRCC 1' | |
5213 _ld_lircc='-llircc' | |
5214 else | |
5215 _def_lircc='#undef HAVE_LIRCC' | |
5216 fi | |
5217 echores "$_lircc" | |
5198 | 5218 |
5199 ############################################################################# | 5219 ############################################################################# |
5200 echo "Creating config.mak" | 5220 echo "Creating config.mak" |
5201 cat > config.mak << EOF | 5221 cat > config.mak << EOF |
5202 # -------- Generated by configure ----------- | 5222 # -------- Generated by configure ----------- |
5280 SGIAUDIO_LIB = $_ld_sgiaudio | 5300 SGIAUDIO_LIB = $_ld_sgiaudio |
5281 | 5301 |
5282 # input/demuxer/codecs | 5302 # input/demuxer/codecs |
5283 TERMCAP_LIB = $_ld_termcap | 5303 TERMCAP_LIB = $_ld_termcap |
5284 LIRC_LIB = $_ld_lirc | 5304 LIRC_LIB = $_ld_lirc |
5305 LIRCC_LIB = $_ld_lircc | |
5285 CSS_USE = $_css | 5306 CSS_USE = $_css |
5286 CSS_LIB = $_ld_css | 5307 CSS_LIB = $_ld_css |
5287 DVDKIT = $_dvdkit | 5308 DVDKIT = $_dvdkit |
5288 DVDKIT2 = $_dvdkit2 | 5309 DVDKIT2 = $_dvdkit2 |
5289 DVDKIT_SHARED = no | 5310 DVDKIT_SHARED = no |
5532 $_def_glob | 5553 $_def_glob |
5533 | 5554 |
5534 /* LIRC (remote control, see www.lirc.org) support: */ | 5555 /* LIRC (remote control, see www.lirc.org) support: */ |
5535 $_def_lirc | 5556 $_def_lirc |
5536 | 5557 |
5558 /* | |
5559 * LIRCCD (LIRC client daemon) | |
5560 * See http://www.dolda2000.cjb.net/~fredrik/lirccd/ | |
5561 */ | |
5562 $_def_lircc | |
5563 | |
5537 /* DeCSS support using libcss */ | 5564 /* DeCSS support using libcss */ |
5538 $_def_css | 5565 $_def_css |
5539 | 5566 |
5540 /* DVD navigation support using libdvdnav */ | 5567 /* DVD navigation support using libdvdnav */ |
5541 $_def_dvdnav | 5568 $_def_dvdnav |