mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-10 07:36:28 -04:00
- Added safeguard not to build in WIN32 environment.
This commit is contained in:
parent
adb7ce16c0
commit
b81b3abb45
@ -184,6 +184,13 @@ int main( void )
|
|||||||
"POLARSSL_NET_C and/or POLARSSL_RSA_C not defined.\n");
|
"POLARSSL_NET_C and/or POLARSSL_RSA_C not defined.\n");
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
#elif defined(WIN32)
|
||||||
|
int main( void )
|
||||||
|
{
|
||||||
|
printf("WIN32 defined. This application requires fork() and signals "
|
||||||
|
"to work correctly.\n");
|
||||||
|
return( 0 );
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
int main( void )
|
int main( void )
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user