summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-30 22:14:44 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-30 22:14:44 +0000
commit8445dc1e96f8de00ff89b728a9f6cf749cc2c2b0 (patch)
treea5a1cfab79200d894e1479a82ebbfd2d2c152892 /configure
parentfdac1e19a4a17a6496e5355a524c4ff34dfaf231 (diff)
downloadmpv-8445dc1e96f8de00ff89b728a9f6cf749cc2c2b0.tar.bz2
mpv-8445dc1e96f8de00ff89b728a9f6cf749cc2c2b0.tar.xz
remove deprecated, never-used gnu gettext cruft.
proper runtime message catalogs will be added with catgets in the (near?) future. this resolves complaints about mp_msg printing crap at startup when gettext was (stupidly) enabled by default even though it was not useful. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17999 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure31
1 files changed, 0 insertions, 31 deletions
diff --git a/configure b/configure
index 742a6358e9..04a4177be5 100755
--- a/configure
+++ b/configure
@@ -1587,7 +1587,6 @@ _largefiles=no
_shm=auto
_linux_devfs=no
#_charset=utf8
-_i18n=auto
_dynamic_plugins=no
_crash_debug=auto
_sighandler=yes
@@ -1635,8 +1634,6 @@ for ac_option do
# Real 2nd pass
--enable-mencoder) _mencoder=yes ;;
--disable-mencoder) _mencoder=no ;;
- --enable-i18n) _i18n=yes ;;
- --disable-i18n) _i18n=no ;;
--enable-dynamic-plugins) _dynamic_plugins=yes ;;
--disable-dynamic-plugins) _dynamic_plugins=no ;;
--enable-x11) _x11=yes ;;
@@ -2390,34 +2387,6 @@ else
echores "no"
fi
-# Checking for localization ...
-# CSAK EGY MARADHAT - A HEGYLAKO
-echocheck "i18n"
-if test "$_i18n" != no ; then
- cat > $TMPC <<EOF
-#include <libintl.h>
-int main(void) { gettext("test"); return 0; }
-EOF
- _i18n=no
- _i18n_libs=""
- if test "$_i18n" = auto ; then
- cc_check && _i18n=yes
- else
- for i18n_lib in "" "-lintl"; do
- cc_check $i18n_lib && _i18n=yes && _i18n_libs=$i18n_lib && break
- done
- fi
-fi
-if test "$_i18n" = yes ; then
- _def_i18n='#define USE_I18N 1'
-else
- _def_i18n='#undef USE_I18N'
-fi
-if test "$_i18n_libs" ; then
- _res_comment="using $_i18n_libs"
-fi
-echores "$_i18n"
-
echocheck "langinfo"
if test "$_langinfo" = auto ; then