Commit 194fb652 authored by Ivan Tyagov's avatar Ivan Tyagov

Enable x509 only if library is explicitly linked against against.

parent 92bded44
...@@ -1198,6 +1198,7 @@ int main(int argc, char **argv) ...@@ -1198,6 +1198,7 @@ int main(int argc, char **argv)
} }
/* Enable x509 */ /* Enable x509 */
#ifdef UA_ENABLE_ENCRYPTION
if (strlen(arguments.key) > 0 && strlen(arguments.certificate) > 0){ if (strlen(arguments.key) > 0 && strlen(arguments.certificate) > 0){
char *key_filename = arguments.key; char *key_filename = arguments.key;
char *certificate_filename = arguments.certificate; char *certificate_filename = arguments.certificate;
...@@ -1224,7 +1225,8 @@ int main(int argc, char **argv) ...@@ -1224,7 +1225,8 @@ int main(int argc, char **argv)
revocationList, revocationListSize); revocationList, revocationListSize);
//The place to fill the hole is very important //The place to fill the hole is very important
config->applicationDescription.applicationUri = UA_STRING_ALLOC("urn:open62541.server.application"); config->applicationDescription.applicationUri = UA_STRING_ALLOC("urn:open62541.server.application");
} }
#endif
// run server // run server
UA_StatusCode retval = UA_Server_run(server, &running); UA_StatusCode retval = UA_Server_run(server, &running);
......
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