1 /*****************************************************************************
2 * fixups.h: portability fixups included from config.h
3 *****************************************************************************
4 * Copyright © 1998-2008 the VideoLAN project
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.
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.
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 *****************************************************************************/
23 * This file is a collection of portability fixes
26 #ifndef LIBVLC_FIXUPS_H
27 # define LIBVLC_FIXUPS_H 1
29 #if !defined (HAVE_GMTIME_R) || !defined (HAVE_LOCALTIME_R)
30 # include <time.h> /* time_t */
36 long long quot
; /* Quotient. */
37 long long rem
; /* Remainder. */
41 #if !defined(HAVE_GETENV) || \
42 !defined(HAVE_USELOCALE)
43 # include <stddef.h> /* NULL */
46 #if !defined (HAVE_REWIND) || \
47 !defined (HAVE_GETDELIM)
48 # include <stdio.h> /* FILE */
51 #if !defined (HAVE_STRLCPY) || \
52 !defined (HAVE_STRNDUP) || \
53 !defined (HAVE_STRNLEN) || \
54 !defined (HAVE_GETCWD)
55 # include <stddef.h> /* size_t */
58 #ifndef HAVE_VASPRINTF
59 # include <stdarg.h> /* va_list */
62 #if !defined (HAVE_GETDELIM) || \
63 !defined (HAVE_GETPID) || \
65 # include <sys/types.h> /* ssize_t, pid_t */
78 int asprintf (char **, const char *, ...);
81 #ifndef HAVE_FLOCKFILE
82 void flockfile (FILE *);
83 int ftrylockfile (FILE *);
84 void funlockfile (FILE *);
85 int getc_unlocked (FILE *);
86 int getchar_unlocked (void);
87 int putc_unlocked (int, FILE *);
88 int putchar_unlocked (int);
92 ssize_t
getdelim (char **, size_t *, int, FILE *);
93 ssize_t
getline (char **, size_t *, FILE *);
100 #ifndef HAVE_VASPRINTF
101 int vasprintf (char **, const char *, va_list);
105 #ifndef HAVE_STRCASECMP
106 int strcasecmp (const char *, const char *);
109 #ifndef HAVE_STRCASESTR
110 char *strcasestr (const char *, const char *);
114 char *strdup (const char *);
117 #ifndef HAVE_STRNCASECMP
118 int strncasecmp (const char *, const char *, size_t);
122 size_t strnlen (const char *, size_t);
126 char *strndup (const char *, size_t);
130 size_t strlcpy (char *, const char *, size_t);
134 char *strsep (char **, const char *);
137 #ifndef HAVE_STRTOK_R
138 char *strtok_r(char *, const char *, char **);
144 double atof (const char *);
149 long long atoll (const char *);
153 lldiv_t
lldiv (long long, long long);
158 float strtof (const char *, char **);
163 long long int strtoll (const char *, char **, int);
167 #ifndef HAVE_GMTIME_R
168 struct tm
*gmtime_r (const time_t *, struct tm
*);
171 #ifndef HAVE_LOCALTIME_R
172 struct tm
*localtime_r (const time_t *, struct tm
*);
177 char *getcwd (char *buf
, size_t size
);
198 static inline char *getenv (const char *name
)
206 int setenv (const char *, const char *, int);
207 int unsetenv (const char *);
211 #ifndef HAVE_USELOCALE
212 #define LC_NUMERIC_MASK 0
213 #define LC_MESSAGES_MASK 0
214 typedef void *locale_t
;
215 static inline locale_t
uselocale(locale_t loc
)
220 static inline void freelocale(locale_t loc
)
224 static inline locale_t
newlocale(int mask
, const char * locale
, locale_t base
)
226 (void)mask
; (void)locale
; (void)base
;
231 /* Alignment of critical static data structures */
232 #ifdef ATTRIBUTE_ALIGNED_MAX
233 # define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
235 # define ATTR_ALIGN(align)
238 /* libintl support */
239 #define _(str) vlc_gettext (str)
240 #define N_(str) gettext_noop (str)
241 #define gettext_noop(str) (str)
244 void swab (const void *, void *, ssize_t
);
248 #ifndef HAVE_INET_PTON
249 # define inet_pton vlc_inet_pton
252 #ifndef HAVE_INET_NTOP
253 # define inet_ntop vlc_inet_ntop
262 POLLERR
=8, // unsupported stub
263 POLLHUP
=16, // unsupported stub
264 POLLNVAL
=32 // unsupported stub
274 # define poll(a, b, c) vlc_poll(a, b, c)
275 #elif defined (HAVE_MAEMO)
277 # define poll(a, b, c) vlc_poll(a, b, c)
278 int vlc_poll (struct pollfd
*, unsigned, int);
282 #ifndef HAVE_SEARCH_H
283 typedef struct entry
{
299 void *tsearch( const void *key
, void **rootp
, int(*cmp
)(const void *, const void *) );
300 void *tfind( const void *key
, const void **rootp
, int(*cmp
)(const void *, const void *) );
301 void *tdelete( const void *key
, void **rootp
, int(*cmp
)(const void *, const void *) );
302 void twalk( const void *root
, void(*action
)(const void *nodep
, VISIT which
, int depth
) );
303 void tdestroy( void *root
, void (*free_node
)(void *nodep
) );
304 #else // HAVE_SEARCH_H
305 # ifndef HAVE_TDESTROY
306 # define tdestroy vlc_tdestroy
312 double erand48 (unsigned short subi
[3]);
313 long jrand48 (unsigned short subi
[3]);
314 long nrand48 (unsigned short subi
[3]);
320 # define __cplusplus 0
322 # include <pthread.h>
323 # if __cplusplus == 0
326 char *tempnam(const char *, const char *);
330 # undef HAVE_FORK /* Implementation of fork() is imperfect on OS/2 */
333 #endif /* !LIBVLC_FIXUPS_H */