From 4016beda7667391a20cee8da8ee6b0ade75b0b64 Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 18 Apr 2006 14:41:41 +0000 Subject: [PATCH] Make the RTP demuxer work with libdvdread 0.9.5. ifo_types.h needs the macros UINT8_MAX UINT16_MAX and INT32_MAX, in stdint.h, which are not defined when the language is C++ unless __STDC_LIMIT_MACROS is defined. patch by Emanuele Giaquinta, emanuele <<.>> giaquinta <<@>> gmail <<.>> com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18138 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmpdemux/Makefile b/libmpdemux/Makefile index a9b2649770..a70710b598 100644 --- a/libmpdemux/Makefile +++ b/libmpdemux/Makefile @@ -160,7 +160,7 @@ OBJS = $(SRCS:.c=.o) OBJS += $(CPLUSPLUSSRCS:.cpp=.o) INCLUDE = -I.. -I../loader $(CSS_INC) $(EXTRA_INC) $(LIBAV_INC) CFLAGS = $(OPTFLAGS) $(INCLUDE) $(XMMS_CFLAGS) $(CDPARANOIA_INC) $(DVB_INC) -CPLUSPLUSFLAGS = $(CFLAGS) $(CPLUSPLUSINCLUDE) +CPLUSPLUSFLAGS = $(CFLAGS) $(CPLUSPLUSINCLUDE) -D__STDC_LIMIT_MACROS CPLUSPLUS = $(CC) .SUFFIXES: .c .cpp .o