1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

workaround conflict with the MINGW32 open function

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9771 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-03-31 16:55:53 +00:00
parent 33c283188d
commit 8dda326737

View File

@ -7,6 +7,11 @@ SRCS=af.c af_mp.c af_dummy.c af_delay.c af_channels.c af_format.c af_resample.c
OBJS=$(SRCS:.c=.o)
CFLAGS = $(OPTFLAGS) -I. -Wall $(EXTRA_INC)
ifeq ($(TARGET_MINGW32),yes)
CFLAGS += -D_IO_H_
endif
.SUFFIXES: .c .o
.c.o: