summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-31 18:35:32 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-31 18:35:32 +0000
commit490175e71bc7a0f46beb049a8b9106190de3071b (patch)
tree99e2911e1cee98f60b006665542fa95ef29d31e8 /configure
parent6ebaa50721ed2d3ddaa5d442c23333c82bc12219 (diff)
downloadmpv-490175e71bc7a0f46beb049a8b9106190de3071b.tar.bz2
mpv-490175e71bc7a0f46beb049a8b9106190de3071b.tar.xz
cosmetics: Fix ugly one-space indentation in radio check.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19611 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 10 insertions, 10 deletions
diff --git a/configure b/configure
index 3151946137..eceaaf2b29 100755
--- a/configure
+++ b/configure
@@ -6683,16 +6683,16 @@ echores "$_radio_capture"
echocheck "Video 4 Linux 2 Radio interface"
if test "$_radio_v4l2" = auto ; then
- _radio_v4l2=no
- if test "$_radio" = yes && linux ; then
- cat > $TMPC <<EOF
+ _radio_v4l2=no
+ if test "$_radio" = yes && linux ; then
+ cat > $TMPC <<EOF
#include <stdlib.h>
#include <linux/types.h>
#include <linux/videodev2.h>
int main(void) { return 0; }
EOF
- cc_check && _radio_v4l2=yes
- fi
+ cc_check && _radio_v4l2=yes
+ fi
fi
if test "$_radio_v4l2" = yes ; then
_def_radio_v4l2='#define HAVE_RADIO_V4L2 1'
@@ -6703,15 +6703,15 @@ echores "$_radio_v4l2"
echocheck "Video 4 Linux Radio interface"
if test "$_radio_v4l" = auto ; then
- _radio_v4l=no
- if test "$_radio" = yes && linux ; then
- cat > $TMPC <<EOF
+ _radio_v4l=no
+ if test "$_radio" = yes && linux ; then
+ cat > $TMPC <<EOF
#include <stdlib.h>
#include <linux/videodev.h>
int main(void) { return 0; }
EOF
- cc_check && _radio_v4l=yes
- fi
+ cc_check && _radio_v4l=yes
+ fi
fi
if test "$_radio_v4l" = yes ; then
_def_radio_v4l='#define HAVE_RADIO_V4L 1'