]> git.sesse.net Git - vlc/blobdiff - include/vlc_fixups.h
osx dialog provider: make sure we can actually quit VLC
[vlc] / include / vlc_fixups.h
index 4c241d59dd74d2ae34d607cf544008a2a2b59887..c14152fbca399bef23c53a2f5421a89e7d43ab6a 100644 (file)
@@ -40,7 +40,7 @@ typedef struct
 
 #if !defined(HAVE_GETENV) || \
     !defined(HAVE_USELOCALE)
-# include <stdlib.h> /* NULL */
+# include <stddef.h> /* NULL */
 #endif
 
 #ifndef HAVE_REWIND
@@ -146,6 +146,10 @@ char *getcwd (char *buf, size_t size);
 pid_t getpid (void);
 #endif
 
+#ifndef HAVE_STRTOK_R
+char *strtok_r(char *, const char *, char **);
+#endif
+
 #ifdef __cplusplus
 } /* extern "C" */
 #endif
@@ -200,4 +204,39 @@ static inline locale_t newlocale(int mask, const char * locale, locale_t base)
 void swab (const void *, void *, ssize_t);
 #endif
 
+#ifndef HAVE_TDESTROY
+typedef void (*__free_fn_t) (void *__nodep);
+void tdestroy (void *vroot, __free_fn_t freefct);
+#endif
+
+/* Socket stuff */
+#ifndef HAVE_INET_PTON
+# define inet_pton vlc_inet_pton
+#endif
+
+#ifndef HAVE_INET_NTOP
+# define inet_ntop vlc_inet_ntop
+#endif
+
+#ifndef HAVE_POLL
+enum
+{
+    POLLIN=1,
+    POLLOUT=2,
+    POLLPRI=4,
+    POLLERR=8,  // unsupported stub
+    POLLHUP=16, // unsupported stub
+    POLLNVAL=32 // unsupported stub
+};
+
+struct pollfd
+{
+    int fd;
+    unsigned events;
+    unsigned revents;
+};
+
+# define poll(a, b, c) vlc_poll(a, b, c)
+#endif
+
 #endif /* !LIBVLC_FIXUPS_H */