summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorjaf <jaf@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-13 12:44:32 +0000
committerjaf <jaf@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-13 12:44:32 +0000
commit19801d51c9bc0dbf3cc66ad7f12e34637a25a53e (patch)
tree7097fcfb32d72889db31bcc57e434d4e0d8a2bce /configure
parent4d76cfb7393de5a0de96ff6b44d89b8dc486f290 (diff)
downloadmpv-19801d51c9bc0dbf3cc66ad7f12e34637a25a53e.tar.bz2
mpv-19801d51c9bc0dbf3cc66ad7f12e34637a25a53e.tar.xz
why not autodetecting lirc?
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2864 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 12 insertions, 4 deletions
diff --git a/configure b/configure
index 08d89f9b2d..923408d244 100755
--- a/configure
+++ b/configure
@@ -166,7 +166,7 @@ Optional features:
--enable-largefiles enable support for files >2^32 bytes long [disable]
--enable-termcap use termcap database for key codes [disable]
--enable-xmmp use XMMP audio drivers [disable]
- --enable-lirc enable LIRC (remote control) support [disable]
+ --enable-lirc enable LIRC (remote control) support [autodetect]
--enable-gui enable GUI [disable]
--enable-tv enable TV Interface (tv/dvb grabbers) [disable]
--disable-win32 disable Win32 DLL support [autodetect]
@@ -689,6 +689,10 @@ if test -c /dev/ost/video ; then
_dvb=yes
fi
+if test -c /dev/lirc ; then
+ _lirc=yes
+fi
+
cat > $TMPC << EOF
int main( void ) { return 0; }
EOF
@@ -1385,6 +1389,9 @@ for ac_option do
--enable-fbdev)
_fbdev=yes
;;
+ --enable-dvb)
+ _dvb=yes
+ ;;
--enable-dxr3)
_dxr3=yes
;;
@@ -1510,12 +1517,12 @@ for ac_option do
--disable-dxr3)
_dxr3=no
;;
- --enable-dvb)
- _dvb=yes
- ;;
--disable-dvb)
_dvb=no
;;
+ --disable-lirc)
+ _lirc=no
+ ;;
--disable-iconv)
_iconv=no
;;
@@ -1799,6 +1806,7 @@ echo "Checking for ESD Audio ... $_esd"
echo "Checking for Sun Audio ... $_sun_audio"
echo "Checking for Sun mediaLib ... $_mlib"
echo "Checking for SGI Audio ... $_sgi_audio"
+echo "Checking for LIRC ... $_lirc"
echo "Checking for DeCSS support ... $_css"
echo "Checking for DVDread support ... $_dvdread"
echo "Checking for PNG support ... $_png"