summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-01 20:28:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-01 20:28:58 +0000
commitd17f9943af8aeeca65b327ad22475b4df36a3b2d (patch)
tree2e92c593409a4e3222d2524460178cf133af8f86 /configure
parent95c0b67d60690dfca422eab3d28bdac9a3e46921 (diff)
downloadmpv-d17f9943af8aeeca65b327ad22475b4df36a3b2d.tar.bz2
mpv-d17f9943af8aeeca65b327ad22475b4df36a3b2d.tar.xz
Rename some preprocessor directives from CONFIG_* to HAVE_* where appropriate;
CONFIG_ prefix for configurable options, HAVE_ for system-dependent stuff. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27391 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 dcfc9314ca..2bd6c80bb3 100755
--- a/configure
+++ b/configure
@@ -2598,9 +2598,9 @@ EOF
cc_check && _langinfo=yes
fi
if test "$_langinfo" = yes ; then
- _def_langinfo='#define CONFIG_LANGINFO 1'
+ _def_langinfo='#define HAVE_LANGINFO 1'
else
- _def_langinfo='#undef CONFIG_LANGINFO'
+ _def_langinfo='#undef HAVE_LANGINFO'
fi
echores "$_langinfo"
@@ -2859,9 +2859,9 @@ EOF
echores "$_use_aton"
fi
-_def_use_aton='#undef CONFIG_ATON'
+_def_use_aton='#undef HAVE_ATON'
if test "$_use_aton" = yes; then
- _def_use_aton='#define CONFIG_ATON 1'
+ _def_use_aton='#define HAVE_ATON 1'
fi
@@ -3169,9 +3169,9 @@ EOF
done
fi
if test "$_iconv" = yes ; then
- _def_iconv='#define CONFIG_ICONV 1'
+ _def_iconv='#define HAVE_ICONV 1'
else
- _def_iconv='#undef CONFIG_ICONV'
+ _def_iconv='#undef HAVE_ICONV'
fi
echores "$_iconv"
@@ -3330,10 +3330,10 @@ EOF
done
fi
if test "$_termcap" = yes ; then
- _def_termcap='#define CONFIG_TERMCAP 1'
+ _def_termcap='#define HAVE_TERMCAP 1'
_res_comment="using $_ld_tmp"
else
- _def_termcap='#undef CONFIG_TERMCAP'
+ _def_termcap='#undef HAVE_TERMCAP'
fi
echores "$_termcap"
@@ -5725,11 +5725,11 @@ EOF
fi
fi
if test "$_fribidi" = yes ; then
- _def_fribidi='#define CONFIG_FRIBIDI'
+ _def_fribidi='#define HAVE_FRIBIDI'
_inc_extra="$_inc_extra `$_fribidiconfig --cflags`"
_ld_extra="$_ld_extra `$_fribidiconfig --libs`"
else
- _def_fribidi='#undef CONFIG_FRIBIDI'
+ _def_fribidi='#undef HAVE_FRIBIDI'
fi
echores "$_fribidi"