0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Unify include paths, -I.. is in CFLAGS.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16861 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-10-25 21:23:45 +00:00
parent 59eed1b45d
commit c67ccd1e8a
3 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
#include "../config.h"
#include "config.h"
#include <stdlib.h>
#include <string.h>
@ -17,13 +17,13 @@
#ifdef MP_DEBUG
#include <assert.h>
#endif
#include "../osdep/getch2.h"
#include "../osdep/keycodes.h"
#include "../osdep/timer.h"
#include "osdep/getch2.h"
#include "osdep/keycodes.h"
#include "osdep/timer.h"
#include "mp_msg.h"
#include "help_mp.h"
#include "../m_config.h"
#include "../m_option.h"
#include "m_config.h"
#include "m_option.h"
#include "joystick.h"

View File

@ -1,5 +1,5 @@
#include "../config.h"
#include "config.h"
#ifdef HAVE_JOYSTICK

View File

@ -1,5 +1,5 @@
#include "../config.h"
#include "config.h"
#ifdef HAVE_LIRC
@ -12,8 +12,8 @@
#include <sys/time.h>
#include <stdlib.h>
#include "../mp_msg.h"
#include "../help_mp.h"
#include "mp_msg.h"
#include "help_mp.h"
#include "input.h"
static struct lirc_config *lirc_config;