- Fixed a whole bunch of dependencies on defines between files, examples and tests

This commit is contained in:
Paul Bakker 2011-05-26 13:16:06 +00:00
parent 2c0994e973
commit 5690efccc4
66 changed files with 1408 additions and 701 deletions

View file

@ -29,8 +29,17 @@
#include <stdio.h>
#include "polarssl/config.h"
#include "polarssl/md5.h"
#if !defined(POLARSSL_MD5_C)
int main( void )
{
printf("POLARSSL_MD5_C not defined.\n");
return( 0 );
}
#else
int main( void )
{
int i;
@ -53,3 +62,4 @@ int main( void )
return( 0 );
}
#endif /* POLARSSL_MD5_C */