diff options
| author | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-03-06 21:59:28 +0000 |
|---|---|---|
| committer | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-03-06 21:59:28 +0000 |
| commit | e6f87e34ee65c805bde5805f89ac362095e9df4c (patch) | |
| tree | 4b54ac93a7a57ed34e6a929fb244954303dadc5e /include/xine/video_decoder.h | |
| parent | e36ec56897903031273ce381738f72140840ed66 (diff) | |
| download | xine-lib-e6f87e34ee65c805bde5805f89ac362095e9df4c.tar.gz xine-lib-e6f87e34ee65c805bde5805f89ac362095e9df4c.tar.bz2 | |
Fix compilation for installed libintl.h in include paths
Compilation of xine-lib-1.2 hg failed for me as libintl.h does this:
#define textdomain libintl_textdomain
This causes trouble accessing fields in structures which are
accidentally named "textdomain".
The patch renames textdomain to text_domain in xine headers and xine-
engine/xine.c and xine/load_plugins.c
Diffstat (limited to 'include/xine/video_decoder.h')
| -rw-r--r-- | include/xine/video_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xine/video_decoder.h b/include/xine/video_decoder.h index 916cfe68b..022c2af33 100644 --- a/include/xine/video_decoder.h +++ b/include/xine/video_decoder.h @@ -62,7 +62,7 @@ struct video_decoder_class_s { /** * @brief Optional non-standard catalog to use with dgettext() for description. */ - const char *textdomain; + const char *text_domain; /* * free all class-related resources |
