mirror of https://github.com/mpv-player/mpv
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:
parent
64f4a3f32f
commit
8e2dea5f21
|
@ -38,7 +38,7 @@ endif
|
||||||
|
|
||||||
OBJS=$(SRCS:.c=.o)
|
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)
|
ifeq ($(TARGET_OS),MINGW32)
|
||||||
CFLAGS += -D_IO_H_
|
CFLAGS += -D_IO_H_
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "../config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#ifdef HAVE_SYS_MMAN_H
|
#ifdef HAVE_SYS_MMAN_H
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
|
@ -14,8 +14,8 @@
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
#include "af.h"
|
#include "af.h"
|
||||||
#include "../bswap.h"
|
#include "bswap.h"
|
||||||
#include "../libvo/fastmemcpy.h"
|
#include "libvo/fastmemcpy.h"
|
||||||
|
|
||||||
// Integer to float conversion through lrintf()
|
// Integer to float conversion through lrintf()
|
||||||
#ifdef HAVE_LRINTF
|
#ifdef HAVE_LRINTF
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
/* Local Includes */
|
/* Local Includes */
|
||||||
|
|
||||||
#include "af.h"
|
#include "af.h"
|
||||||
#include "../help_mp.h"
|
#include "help_mp.h"
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
||||||
#include "../config.h"
|
#include "config.h"
|
||||||
#include "af.h"
|
#include "af.h"
|
||||||
|
|
||||||
#ifdef USE_LIBAVCODEC
|
#ifdef USE_LIBAVCODEC
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
#ifndef __af_mp_h__
|
#ifndef __af_mp_h__
|
||||||
#define __af_mp_h__
|
#define __af_mp_h__
|
||||||
|
|
||||||
#include "../config.h"
|
#include "config.h"
|
||||||
#include "../mp_msg.h"
|
#include "mp_msg.h"
|
||||||
#include "../cpudetect.h"
|
#include "cpudetect.h"
|
||||||
|
|
||||||
/* Set the initialization type from mplayers cpudetect */
|
/* Set the initialization type from mplayers cpudetect */
|
||||||
#ifdef AF_INIT_TYPE
|
#ifdef AF_INIT_TYPE
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "../config.h"
|
#include "config.h"
|
||||||
#include "af.h"
|
#include "af.h"
|
||||||
|
|
||||||
typedef struct af_sweep_s{
|
typedef struct af_sweep_s{
|
||||||
|
|
Loading…
Reference in New Issue