Commit abd8a376 authored by Sam Hocevar's avatar Sam Hocevar

  * 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).
parent db648a57
...@@ -8355,7 +8355,6 @@ chmod +x $CONFIG_STATUS ...@@ -8355,7 +8355,6 @@ chmod +x $CONFIG_STATUS
rm -fr confdefs* $ac_clean_files rm -fr confdefs* $ac_clean_files
test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 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 " echo "
global configuration global configuration
......
...@@ -1292,7 +1292,6 @@ AC_SUBST(OBJ_LIBDVDCSS) ...@@ -1292,7 +1292,6 @@ AC_SUBST(OBJ_LIBDVDCSS)
AC_SUBST(NEED_LIBDVDCSS) AC_SUBST(NEED_LIBDVDCSS)
AC_OUTPUT([Makefile.opts include/config.h po/Makefile.in]) AC_OUTPUT([Makefile.opts include/config.h po/Makefile.in])
#AC_OUTPUT([Makefile.opts include/config.h intl/Makefile po/Makefile.in])
echo " echo "
global configuration global configuration
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions * Collection of useful common types and macros definitions
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN * 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> * Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr> * Vincent Seguin <seguin@via.ecp.fr>
...@@ -410,7 +410,7 @@ typedef __int64 off_t; ...@@ -410,7 +410,7 @@ typedef __int64 off_t;
/***************************************************************************** /*****************************************************************************
* I18n stuff * I18n stuff
*****************************************************************************/ *****************************************************************************/
#ifdef ENABLE_NLS #if defined( ENABLE_NLS ) && defined ( HAVE_GETTEXT )
# include <libintl.h> # include <libintl.h>
#else #else
# define _(String) (String) # define _(String) (String)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment