Commit 367fb7c9 authored by michael's avatar michael

Move -D_ISOC9X_SOURCE to configure so its available to all tests.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14729 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 322a5bb4
...@@ -19,7 +19,7 @@ endif ...@@ -19,7 +19,7 @@ endif
ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale
CFLAGS := -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ CFLAGS := -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
-D_ISOC9X_SOURCE -I$(BUILD_ROOT_REL) -I$(SRC_PATH) $(OPTFLAGS) -I$(BUILD_ROOT_REL) -I$(SRC_PATH) $(OPTFLAGS)
%.o: %.c %.o: %.c
$(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
...@@ -116,4 +116,4 @@ $(eval $(RULES)) ...@@ -116,4 +116,4 @@ $(eval $(RULES))
tests: $(TESTS) tests: $(TESTS)
-include $(DEPS) #-include $(DEPS)
...@@ -974,6 +974,7 @@ enable stripping ...@@ -974,6 +974,7 @@ enable stripping
vhook="default" vhook="default"
# build settings # build settings
add_cflags '-D_ISOC9X_SOURCE'
SHFLAGS='-shared -Wl,-soname,$$(@F)' SHFLAGS='-shared -Wl,-soname,$$(@F)'
VHOOKSHFLAGS='$(SHFLAGS)' VHOOKSHFLAGS='$(SHFLAGS)'
FFSERVERLDFLAGS=-Wl,-E FFSERVERLDFLAGS=-Wl,-E
...@@ -1689,7 +1690,6 @@ check_lib math.h sin -lm ...@@ -1689,7 +1690,6 @@ check_lib math.h sin -lm
# test for C99 functions in math.h # test for C99 functions in math.h
for func in llrint lrint lrintf round roundf; do for func in llrint lrint lrintf round roundf; do
check_exec <<EOF && enable $func || disable $func check_exec <<EOF && enable $func || disable $func
#define _ISOC9X_SOURCE 1
#include <math.h> #include <math.h>
int main(void) { return ($func(3.999f) > 0)?0:1; } int main(void) { return ($func(3.999f) > 0)?0:1; }
EOF EOF
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment