Unify include paths by adding -I.. to CFLAGS.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16983 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-11-13 18:28:44 +00:00
parent 64f4a3f32f
commit 8e2dea5f21
7 changed files with 10 additions and 10 deletions

View File

@ -38,7 +38,7 @@ endif
OBJS=$(SRCS:.c=.o)
CFLAGS = $(OPTFLAGS) -I. -Wall $(LIBAV_INC) $(EXTRA_INC) -D_GNU_SOURCE
CFLAGS = $(OPTFLAGS) -I. -I.. -Wall $(LIBAV_INC) $(EXTRA_INC) -D_GNU_SOURCE
ifeq ($(TARGET_OS),MINGW32)
CFLAGS += -D_IO_H_

View File

@ -12,7 +12,7 @@
#include <string.h>
#include <inttypes.h>
#include <unistd.h>
#include "../config.h"
#include "config.h"
#ifdef HAVE_SYS_MMAN_H
#include <sys/types.h>

View File

@ -14,8 +14,8 @@
#include <limits.h>
#include "af.h"
#include "../bswap.h"
#include "../libvo/fastmemcpy.h"
#include "bswap.h"
#include "libvo/fastmemcpy.h"
// Integer to float conversion through lrintf()
#ifdef HAVE_LRINTF

View File

@ -76,7 +76,7 @@
/* Local Includes */
#include "af.h"
#include "../help_mp.h"
#include "help_mp.h"
/* ------------------------------------------------------------------------- */

View File

@ -6,7 +6,7 @@
#include <string.h>
#include <inttypes.h>
#include "../config.h"
#include "config.h"
#include "af.h"
#ifdef USE_LIBAVCODEC

View File

@ -2,9 +2,9 @@
#ifndef __af_mp_h__
#define __af_mp_h__
#include "../config.h"
#include "../mp_msg.h"
#include "../cpudetect.h"
#include "config.h"
#include "mp_msg.h"
#include "cpudetect.h"
/* Set the initialization type from mplayers cpudetect */
#ifdef AF_INIT_TYPE

View File

@ -7,7 +7,7 @@
#include <inttypes.h>
#include <math.h>
#include "../config.h"
#include "config.h"
#include "af.h"
typedef struct af_sweep_s{