- Added safeguard not to build in WIN32 environment.

This commit is contained in:
Paul Bakker 2011-08-25 09:47:36 +00:00
parent adb7ce16c0
commit b81b3abb45

View File

@ -184,6 +184,13 @@ int main( void )
"POLARSSL_NET_C and/or POLARSSL_RSA_C not defined.\n");
return( 0 );
}
#elif defined(WIN32)
int main( void )
{
printf("WIN32 defined. This application requires fork() and signals "
"to work correctly.\n");
return( 0 );
}
#else
int main( void )
{