diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/xineintl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-engine/xineintl.h b/src/xine-engine/xineintl.h index 33f6694d6..14413dcd8 100644 --- a/src/xine-engine/xineintl.h +++ b/src/xine-engine/xineintl.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineintl.h,v 1.3 2002/07/31 07:06:04 f1rmb Exp $ + * $Id: xineintl.h,v 1.4 2002/07/31 22:36:35 f1rmb Exp $ * */ @@ -38,6 +38,9 @@ extern "C" { # else # define N_(String) (String) # endif +# ifndef HAVE_NGETTEXT +# define ngettext(Singular, Plural, IsPlural) (Singular) +# endif #else /* Stubs that do something close enough. */ # define textdomain(String) (String) |