diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-10-04 22:18:40 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-10-04 22:18:40 +0000 |
commit | 9c19753fcce2fc49f78df518138dcff84ab6e00a (patch) | |
tree | 21d1e7c78b3a3b4cee96832581059016fad95e84 | |
parent | 62801978e8b1484359a9079d789f4ffe75e15cb1 (diff) |
FFmpeg uses -D_ISOC9X_SOURCE and not -D_GNU_SOURCE in CFLAGS.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20057 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libswscale/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile index f75b791d1e..ae667cb111 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -10,7 +10,7 @@ endif # NOTE: -I.. is needed to include config.h CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil $(OPTFLAGS) \ -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ - -D_GNU_SOURCE + -D_ISOC9X_SOURCE OBJS= swscale.o rgb2rgb.o yuv2rgb.o ifeq ($(TARGET_ALTIVEC),yes) |