comparison configure @ 19605:8c5212c50e87

cosmetics: Fix ugly one-space indentation in radio check.
author diego
date Thu, 31 Aug 2006 18:35:32 +0000
parents 0d42130331b2
children 18a538908577
comparison
equal deleted inserted replaced
19604:26e22fbcf4c0 19605:8c5212c50e87
6681 echocheck "Capture for Radio interface" 6681 echocheck "Capture for Radio interface"
6682 echores "$_radio_capture" 6682 echores "$_radio_capture"
6683 6683
6684 echocheck "Video 4 Linux 2 Radio interface" 6684 echocheck "Video 4 Linux 2 Radio interface"
6685 if test "$_radio_v4l2" = auto ; then 6685 if test "$_radio_v4l2" = auto ; then
6686 _radio_v4l2=no 6686 _radio_v4l2=no
6687 if test "$_radio" = yes && linux ; then 6687 if test "$_radio" = yes && linux ; then
6688 cat > $TMPC <<EOF 6688 cat > $TMPC <<EOF
6689 #include <stdlib.h> 6689 #include <stdlib.h>
6690 #include <linux/types.h> 6690 #include <linux/types.h>
6691 #include <linux/videodev2.h> 6691 #include <linux/videodev2.h>
6692 int main(void) { return 0; } 6692 int main(void) { return 0; }
6693 EOF 6693 EOF
6694 cc_check && _radio_v4l2=yes 6694 cc_check && _radio_v4l2=yes
6695 fi 6695 fi
6696 fi 6696 fi
6697 if test "$_radio_v4l2" = yes ; then 6697 if test "$_radio_v4l2" = yes ; then
6698 _def_radio_v4l2='#define HAVE_RADIO_V4L2 1' 6698 _def_radio_v4l2='#define HAVE_RADIO_V4L2 1'
6699 else 6699 else
6700 _def_radio_v4l2='#undef HAVE_RADIO_V4L2' 6700 _def_radio_v4l2='#undef HAVE_RADIO_V4L2'
6701 fi 6701 fi
6702 echores "$_radio_v4l2" 6702 echores "$_radio_v4l2"
6703 6703
6704 echocheck "Video 4 Linux Radio interface" 6704 echocheck "Video 4 Linux Radio interface"
6705 if test "$_radio_v4l" = auto ; then 6705 if test "$_radio_v4l" = auto ; then
6706 _radio_v4l=no 6706 _radio_v4l=no
6707 if test "$_radio" = yes && linux ; then 6707 if test "$_radio" = yes && linux ; then
6708 cat > $TMPC <<EOF 6708 cat > $TMPC <<EOF
6709 #include <stdlib.h> 6709 #include <stdlib.h>
6710 #include <linux/videodev.h> 6710 #include <linux/videodev.h>
6711 int main(void) { return 0; } 6711 int main(void) { return 0; }
6712 EOF 6712 EOF
6713 cc_check && _radio_v4l=yes 6713 cc_check && _radio_v4l=yes
6714 fi 6714 fi
6715 fi 6715 fi
6716 if test "$_radio_v4l" = yes ; then 6716 if test "$_radio_v4l" = yes ; then
6717 _def_radio_v4l='#define HAVE_RADIO_V4L 1' 6717 _def_radio_v4l='#define HAVE_RADIO_V4L 1'
6718 else 6718 else
6719 _def_radio_v4l='#undef HAVE_RADIO_V4L' 6719 _def_radio_v4l='#undef HAVE_RADIO_V4L'