Mercurial > trustbridge
annotate cmake/FindPolarSSL.cmake @ 1332:8362e30f7b55
(issue139) Check that pid is not running if the lock can be aquired
If the lock on the lockfile can be aquired it might still be
possible that another process is running. So we read the
pid from the lockfile and check if another process with the
same installation prefix as us is running.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 15 Oct 2014 14:19:46 +0200 |
parents | a974b61a5cce |
children |
rev | line source |
---|---|
1160
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
1 # Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
2 # Software engineering by Intevation GmbH |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
3 # |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
4 # This file is Free Software under the GNU GPL (v>=2) |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
5 # and comes with ABSOLUTELY NO WARRANTY! |
a974b61a5cce
(issue108) Add missing license headers
Andre Heinecke <andre.heinecke@intevation.de>
parents:
36
diff
changeset
|
6 # See LICENSE.txt for details. |
36 | 7 # - Try to find PolarSSL |
8 | |
9 # Find the include directories | |
10 find_path(POLARSSL_INCLUDE_DIR NAMES polarssl/ssl.h) | |
11 | |
12 find_library(POLARSSL_LIBRARIES NAMES polarssl) | |
13 | |
14 include(FindPackageHandleStandardArgs) | |
15 | |
16 find_package_handle_standard_args(POLARSSL | |
17 REQUIRED_VARS POLARSSL_INCLUDE_DIR POLARSSL_LIBRARIES | |
18 ) |