1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-25 09:41:30 +02:00

* Don't try to use gettext if we don't have GNU gettext. This may change

in the future though (most GNU software seems to include a local copy of
    gettext in case the operating system doesn't provide it).
This commit is contained in:
Sam Hocevar 2001-12-11 23:53:20 +00:00
parent db648a570b
commit abd8a37641
3 changed files with 2 additions and 4 deletions

1
configure vendored
View File

@ -8355,7 +8355,6 @@ chmod +x $CONFIG_STATUS
rm -fr confdefs* $ac_clean_files
test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
#AC_OUTPUT([Makefile.opts include/config.h intl/Makefile po/Makefile.in])
echo "
global configuration

View File

@ -1292,7 +1292,6 @@ AC_SUBST(OBJ_LIBDVDCSS)
AC_SUBST(NEED_LIBDVDCSS)
AC_OUTPUT([Makefile.opts include/config.h po/Makefile.in])
#AC_OUTPUT([Makefile.opts include/config.h intl/Makefile po/Makefile.in])
echo "
global configuration

View File

@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: common.h,v 1.55 2001/12/10 04:53:10 sam Exp $
* $Id: common.h,v 1.56 2001/12/11 23:53:20 sam Exp $
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
@ -410,7 +410,7 @@ typedef __int64 off_t;
/*****************************************************************************
* I18n stuff
*****************************************************************************/
#ifdef ENABLE_NLS
#if defined( ENABLE_NLS ) && defined ( HAVE_GETTEXT )
# include <libintl.h>
#else
# define _(String) (String)