~ubuntu-cloud-archive/ubuntu/precise/librabbitmq/precise-icehouse

« back to all changes in this revision

Viewing changes to cmake/FindcyaSSL.cmake

  • Committer: Package Import Robot
  • Author(s): Michael Fladischer
  • Date: 2013-11-04 20:15:55 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20131104201555-wdjlgotdjansj1j9
Tags: 0.4.1-1
* Imported Upstream version 0.4.1
* Add libssl-dev to Build-Depends.
* Update librabbitmq1.symbols.
* Switch buildsystem to cmake.
  + Add cmake_multiarch.patch to fix multiarch installation paths for shared
    library files in cmake.
  * Add cmake to Build-Depends.
  * Drop dh-autoreconf from Build-Depends.
* Format packaging files with wrap-and-sort.
* Update d/watch file to use github releases instead of tags.
* Bump Standards version to 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# - Try to find the cyaSSL SSL Library
 
2
# The module will set the following variables
 
3
#
 
4
#  CYASSL_FOUND - System has popt
 
5
#  CYASSL_INCLUDE_DIR - The popt include directory
 
6
#  CYASSL_LIBRARIES - The libraries needed to use popt
 
7
 
 
8
# Find the include directories
 
9
FIND_PATH(CYASSL_INCLUDE_DIR
 
10
    NAMES cyassl/ssl.h
 
11
    DOC "Path containing the cyassl/ssl.h include file"
 
12
    )
 
13
 
 
14
FIND_LIBRARY(CYASSL_LIBRARIES
 
15
    NAMES cyassl
 
16
    DOC "cyassl library path"
 
17
    )
 
18
 
 
19
include(FindPackageHandleStandardArgs)
 
20
 
 
21
FIND_PACKAGE_HANDLE_STANDARD_ARGS(CYASSL
 
22
    REQUIRED_VARS CYASSL_INCLUDE_DIR CYASSL_LIBRARIES
 
23
  )