summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-18 16:16:33 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-18 16:16:33 +0000
commit0520dff832ece90cbd4518bf0f95660bd83ab3cd (patch)
tree19a86d60db15858ca59f036baf6cff375692deda
parent9b8d5d8412b13102d38c520dc06f868e88becde0 (diff)
downloadmpv-0520dff832ece90cbd4518bf0f95660bd83ab3cd.tar.bz2
mpv-0520dff832ece90cbd4518bf0f95660bd83ab3cd.tar.xz
Unify include path handling by using -I.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17018 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--TOOLS/avi-fix.c2
-rw-r--r--TOOLS/fastmemcpybench.c4
-rw-r--r--TOOLS/netstream/netstream.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/TOOLS/avi-fix.c b/TOOLS/avi-fix.c
index f4c503f157..9978766dc2 100644
--- a/TOOLS/avi-fix.c
+++ b/TOOLS/avi-fix.c
@@ -2,7 +2,7 @@
// simple tool to fix chunk sizes in a RIFF AVI file
// it doesn't check/fix index, use mencoder -forceidx -oac copy -ovc copy to fix index!
-#include "../config.h"
+#include "config.h"
#ifdef MP_DEBUG
#define mp_debug(...) printf(__VA_ARGS__)
#else
diff --git a/TOOLS/fastmemcpybench.c b/TOOLS/fastmemcpybench.c
index 82a89f0454..e85862b5d6 100644
--- a/TOOLS/fastmemcpybench.c
+++ b/TOOLS/fastmemcpybench.c
@@ -17,14 +17,14 @@
#include <sys/time.h>
#include <inttypes.h>
-#include "../libvo/fastmemcpy.h"
+#include "libvo/fastmemcpy.h"
//#define ARR_SIZE 100000
#define ARR_SIZE (1024*768*2)
#ifdef HAVE_MGA
-#include "../drivers/mga_vid.h"
+#include "drivers/mga_vid.h"
static int mga_next_frame=0;
diff --git a/TOOLS/netstream/netstream.c b/TOOLS/netstream/netstream.c
index 68de83b26a..73a0bec1d5 100644
--- a/TOOLS/netstream/netstream.c
+++ b/TOOLS/netstream/netstream.c
@@ -396,7 +396,7 @@ int mp_input_check_interrupt(int time){
}
// for libmpdvdkit2:
-#include "../get_path.c"
+#include "get_path.c"
int verbose=0;