Commit 95797a25 authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9251 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1437a9b1
......@@ -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