Browse Source

We need to include "config.h" somehow before we can use the HAVE_* defines

pull/2/head
Rémi Denis-Courmont 20 years ago
parent
commit
f49dc31491
  1. 12
      modules/misc/svg.c

12
modules/misc/svg.c

@ -27,6 +27,12 @@
#include <stdlib.h> /* malloc( ), free( ) */
#include <string.h>
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include "vlc_osd.h"
#include "vlc_block.h"
#include "vlc_filter.h"
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
@ -38,12 +44,6 @@
# include <io.h>
#endif
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include "vlc_osd.h"
#include "vlc_block.h"
#include "vlc_filter.h"
#include <glib-object.h> /* g_object_unref( ) */
#include <librsvg-2/librsvg/rsvg.h>

Loading…
Cancel
Save