Commit e7467eba authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

include/vlc_common.h: Define gettext() as a no-op when --disable-nls is used....

include/vlc_common.h: Define gettext() as a no-op when --disable-nls is used. (Fix compilation with --disable-nls).
parent 96495216
...@@ -1208,6 +1208,7 @@ VLC_EXPORT( unsigned, vlc_CPU, ( void ) ); ...@@ -1208,6 +1208,7 @@ VLC_EXPORT( unsigned, vlc_CPU, ( void ) );
#else #else
# define _(String) (String) # define _(String) (String)
# define N_(String) (String) # define N_(String) (String)
# define gettext(String) (String)
#endif #endif
/***************************************************************************** /*****************************************************************************
......
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