# HG changeset patch # User diego # Date 1130275425 0 # Node ID a68ede010f6675b97b0a08b5a32e4b0a2500f58c # Parent d3b47567e629b841935d8667328e56e855a925fe Unify include paths, -I.. is in CFLAGS. diff -r d3b47567e629 -r a68ede010f66 input/input.c --- a/input/input.c Tue Oct 25 20:01:09 2005 +0000 +++ b/input/input.c Tue Oct 25 21:23:45 2005 +0000 @@ -1,4 +1,4 @@ -#include "../config.h" +#include "config.h" #include #include @@ -17,13 +17,13 @@ #ifdef MP_DEBUG #include #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" diff -r d3b47567e629 -r a68ede010f66 input/joystick.c --- a/input/joystick.c Tue Oct 25 20:01:09 2005 +0000 +++ b/input/joystick.c Tue Oct 25 21:23:45 2005 +0000 @@ -1,5 +1,5 @@ -#include "../config.h" +#include "config.h" #ifdef HAVE_JOYSTICK diff -r d3b47567e629 -r a68ede010f66 input/lirc.c --- a/input/lirc.c Tue Oct 25 20:01:09 2005 +0000 +++ b/input/lirc.c Tue Oct 25 21:23:45 2005 +0000 @@ -1,5 +1,5 @@ -#include "../config.h" +#include "config.h" #ifdef HAVE_LIRC @@ -12,8 +12,8 @@ #include #include -#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;