Navigation


Changeset 592:7ed07736c661 in freeDiameter


Ignore:
Timestamp:
Nov 1, 2010, 6:46:39 PM (13 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Fix issue about gcrypt for Fedora, and added INSTALL file for this distribution

Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • freeDiameter/CMakeLists.txt

    r561 r592  
    6060INCLUDE_DIRECTORIES(${GCRYPT_INCLUDE_DIR})
    6161
     62# Also we need libgcrypt to... display its version :(
     63find_library(GCRYPT_LIBRARY
     64  NAMES gcrypt
     65)
     66If ( NOT GCRYPT_LIBRARY )
     67        MESSAGE(SEND_ERROR "Unable to find libgcrypt, please install libgcrypt or equivalent")
     68Endif ( NOT GCRYPT_LIBRARY )
     69SET(FD_LIBS ${FD_LIBS} ${GCRYPT_LIBRARY})
     70
     71
    6272
    6373# Build the executable
Note: See TracChangeset for help on using the changeset viewer.