mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
Fix for ENABLE_NLS being undefined for -Wundef
This commit is contained in:
parent
3bd4aa26ff
commit
19900b481a
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
#define _LIBGETTEXT_H 1
|
||||
|
||||
/* NLS can be disabled through the configure --disable-nls option. */
|
||||
#if ENABLE_NLS
|
||||
#if defined (ENABLE_NLS) && ENABLE_NLS
|
||||
|
||||
/* Get declarations of GNU message catalog functions. */
|
||||
# include <libintl.h>
|
||||
|
|
Loading…
Reference in a new issue