mirror of
https://github.com/mpv-player/mpv
synced 2025-02-16 20:27:23 +00:00
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)
|
||||
|
||||
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_
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -76,7 +76,7 @@
|
||||
/* Local Includes */
|
||||
|
||||
#include "af.h"
|
||||
#include "../help_mp.h"
|
||||
#include "help_mp.h"
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
#include <string.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "../config.h"
|
||||
#include "config.h"
|
||||
#include "af.h"
|
||||
|
||||
#ifdef USE_LIBAVCODEC
|
||||
|
@ -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
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <inttypes.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "../config.h"
|
||||
#include "config.h"
|
||||
#include "af.h"
|
||||
|
||||
typedef struct af_sweep_s{
|
||||
|
Loading…
Reference in New Issue
Block a user