Commit bfaade68 authored by Antoine Cellerier's avatar Antoine Cellerier

* add missing includes (trying to fix compilation errors in buildbot :D)

parent 1a0773f8
......@@ -34,6 +34,7 @@
extern "C"
{
#include <vlc/vlc.h>
#include "../libvlc.h"
}
/*****************************************************************************
......
......@@ -27,6 +27,7 @@
#include <dirent.h> /* *dir() */
#include <vlc/vlc.h>
#include "../libvlc.h"
#include <CoreFoundation/CoreFoundation.h>
......
......@@ -25,6 +25,7 @@
#include <stdlib.h> /* free() */
#include <vlc/vlc.h>
#include "../libvlc.h"
#include <vlc_playlist.h>
#include <vlc_charset.h>
......
......@@ -22,6 +22,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include "../libvlc.h"
#include "vlc_keys.h"
#include "vlc_charset.h"
......
......@@ -23,6 +23,7 @@
#include "modules/modules.h"
#include "libvlc.h"
#include "../libvlc.h"
static const char default_name[] = "unnamed";
......@@ -35,7 +36,7 @@ module_t *vlc_module_create (vlc_object_t *obj)
return NULL;
#ifndef HAVE_SHARED_LIBVLC
module->p_symbols = &obj->p_libvlc_global->p_module_bank->symbols;
module->p_symbols = &vlc_global( obj )->p_module_bank->symbols;
#endif
module->b_reentrant = module->b_unloadable = VLC_TRUE;
module->psz_object_name = module->psz_longname = default_name;
......
......@@ -25,6 +25,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include "../libvlc.h"
/* Some faulty libcs have a broken struct dirent when _FILE_OFFSET_BITS
* is set to 64. Don't try to be cleverer. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment