]> git.sesse.net Git - vlc/blob - include/vlc_fixups.h
Support for pgettext
[vlc] / include / vlc_fixups.h
1 /*****************************************************************************
2  * fixups.h: portability fixups included from config.h
3  *****************************************************************************
4  * Copyright © 1998-2008 the VideoLAN project
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 /**
22  * \file
23  * This file is a collection of portability fixes
24  */
25
26 #ifndef LIBVLC_FIXUPS_H
27 # define LIBVLC_FIXUPS_H 1
28
29 #ifdef __MINGW32_VERSION
30 # if __MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION < 14
31 #  error This mingw-runtime is too old, it has a broken vsnprintf
32 # endif
33 /* mingw-runtime provides the whole printf family in a c99 compliant way. */
34 /* the way to enable this is to define __USE_MINGW_ANSI_STDIO, or something
35  * such as _ISOC99_SOURCE; the former is done by configure.ac */
36 /* This isn't done here, since some modules don't include config.h and
37  * therefore this as the first include file */
38 #elif defined UNDER_CE
39 # error Window CE support for *printf needs fixing.
40 #endif
41
42 #if !defined (HAVE_GMTIME_R) || !defined (HAVE_LOCALTIME_R)
43 # include <time.h> /* time_t */
44 #endif
45
46 #ifndef HAVE_LLDIV
47 typedef struct
48 {
49     long long quot; /* Quotient. */
50     long long rem;  /* Remainder. */
51 } lldiv_t;
52 #endif
53
54 #ifndef HAVE_REWIND
55 # include <stdio.h> /* FILE */
56 #endif
57
58 #if !defined (HAVE_STRLCPY) || \
59     !defined (HAVE_STRNDUP) || \
60     !defined (HAVE_STRNLEN)
61 # include <stddef.h> /* size_t */
62 #endif
63
64 #ifndef HAVE_VASPRINTF
65 # include <stdarg.h> /* va_list */
66 #endif
67
68 #ifdef __cplusplus
69 extern "C" {
70 #endif
71
72 #ifndef HAVE_STRDUP
73 char *strdup (const char *);
74 #endif
75
76 #ifndef HAVE_VASPRINTF
77 int vasprintf (char **, const char *, va_list);
78 #endif
79
80 #ifndef HAVE_ASPRINTF
81 int asprintf (char **, const char *, ...);
82 #endif
83
84 #ifndef HAVE_STRNLEN
85 size_t strnlen (const char *, size_t);
86 #endif
87
88 #ifndef HAVE_STRNDUP
89 char *strndup (const char *, size_t);
90 #endif
91
92 #ifndef HAVE_STRLCPY
93 size_t strlcpy (char *, const char *, size_t);
94 #endif
95
96 #ifndef HAVE_STRTOF
97 float strtof (const char *, char **);
98 #endif
99
100 #ifndef HAVE_ATOF
101 double atof (const char *);
102 #endif
103
104 #ifndef HAVE_STRTOLL
105 long long int strtoll (const char *, char **, int);
106 #endif
107
108 #ifndef HAVE_STRSEP
109 char *strsep (char **, const char *);
110 #endif
111
112 #ifndef HAVE_ATOLL
113 long long atoll (const char *);
114 #endif
115
116 #ifndef HAVE_LLDIV
117 lldiv_t lldiv (long long, long long);
118 #endif
119
120 #ifndef HAVE_STRCASECMP
121 int strcasecmp (const char *, const char *);
122 #endif
123
124 #ifndef HAVE_STRNCASECMP
125 int strncasecmp (const char *, const char *, size_t);
126 #endif
127
128 #ifndef HAVE_STRCASESTR
129 char *strcasestr (const char *, const char *);
130 #endif
131
132 #ifndef HAVE_GMTIME_R
133 struct tm *gmtime_r (const time_t *, struct tm *);
134 #endif
135
136 #ifndef HAVE_LOCALTIME_R
137 struct tm *localtime_r (const time_t *, struct tm *);
138 #endif
139
140 #ifndef HAVE_REWIND
141 void rewind (FILE *);
142 #endif
143
144 #ifdef __cplusplus
145 } /* extern "C" */
146 #endif
147
148 #ifndef HAVE_GETENV
149 static inline char *getenv (const char *name)
150 {
151     (void)name;
152     return NULL;
153 }
154 #endif
155
156 /* Alignment of critical static data structures */
157 #ifdef ATTRIBUTE_ALIGNED_MAX
158 #   define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
159 #else
160 #   define ATTR_ALIGN(align)
161 #endif
162
163 #ifndef HAVE_USELOCALE
164 typedef void *locale_t;
165 # define newlocale( a, b, c ) ((locale_t)0)
166 # define uselocale( a ) ((locale_t)0)
167 # define freelocale( a ) (void)0
168 #endif
169
170 #ifdef WIN32
171 # include <dirent.h>
172 # define opendir Use_utf8_opendir_or_vlc_wopendir_instead!
173 # define readdir Use_utf8_readdir_or_vlc_wreaddir_instead!
174 # define closedir vlc_wclosedir
175 #endif
176
177 /* libintl support */
178 #define _(str)           gettext(str)
179 #define gettext(str)     vlc_gettext (str)
180 #define pgettext(ctx,id) vlc_pgettext(ctx,id)
181
182 #if defined (ENABLE_NLS)
183 # include <libintl.h>
184 #endif
185
186 #define N_(str) gettext_noop (str)
187 #define gettext_noop(str) (str)
188
189 #ifndef HAVE_SWAB
190 void swab (const void *, void *, ssize_t);
191 #endif
192
193 #endif /* !LIBVLC_FIXUPS_H */