Mercurial > mplayer.hg
changeset 16860:a68ede010f66
Unify include paths, -I.. is in CFLAGS.
author | diego |
---|---|
date | Tue, 25 Oct 2005 21:23:45 +0000 |
parents | d3b47567e629 |
children | 0259420f1207 |
files | input/input.c input/joystick.c input/lirc.c |
diffstat | 3 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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"
--- 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
--- 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 <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;