Commit 34933442 authored by Diego Biurrun's avatar Diego Biurrun

Preprocessor #defines starting with __ are reserved for the system.

Originally committed as revision 9251 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3d4e3e56
......@@ -437,7 +437,7 @@ tests: apiexample $(TESTS)
apiexample: apiexample.o $(LIB)
cpuid_test: i386/cputest.c
$(CC) $(CFLAGS) -D__TEST__ -o $@ $<
$(CC) $(CFLAGS) -DTEST -o $@ $<
imgresample-test: imgresample.c $(LIB)
$(CC) $(CFLAGS) -DTEST -o $@ $^ $(EXTRALIBS)
......
......@@ -119,7 +119,7 @@ int mm_support(void)
return rval;
}
#ifdef __TEST__
#ifdef TEST
int main ( void )
{
int mm_flags;
......
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