Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-10-05 02:18:40 +0400
committerDiego Biurrun <diego@biurrun.de>2006-10-05 02:18:40 +0400
commit777938e190da5d01f2d01ef8a01afd0ab879424c (patch)
tree18246b7713c22a02766ffaf298dfe654fe684d28 /libswscale/Makefile
parent7fd265a7a170f9235b1f41c65046a9e15638ef8b (diff)
FFmpeg uses -D_ISOC9X_SOURCE and not -D_GNU_SOURCE in CFLAGS.
Originally committed as revision 20057 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/Makefile')
-rw-r--r--libswscale/Makefile2
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)