diff options
author | Slávek Banko <[email protected]> | 2015-06-12 02:56:58 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-06-12 03:00:32 +0200 |
commit | 46b20a55775c6c44591ff2d2d423399887ebc806 (patch) | |
tree | 6e2264bf4578861f4adacce599e43a63441a7a0c /ConfigureChecks.cmake | |
parent | 32eee8cad4fd7bf38b98e5c8db0455bed75e03bc (diff) | |
download | tdebase-46b20a55775c6c44591ff2d2d423399887ebc806.tar.gz tdebase-46b20a55775c6c44591ff2d2d423399887ebc806.zip |
Fix FTBFS on freebsd
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 08122b137e76ffcf7067f634a7668002732e11d9)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 5860b88d6..18009f26c 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -50,7 +50,7 @@ if( WITH_PAM AND (BUILD_KCHECKPASS OR BUILD_TDM) ) check_include_file( "security/pam_appl.h" SECURITY_PAM_APPL_H ) endif( ) if( HAVE_PAM AND SECURITY_PAM_APPL_H ) - set( PAM_LIBRARY pam;dl ) + set( PAM_LIBRARY pam ${DL_LIBRARIES} ) else( ) tde_message_fatal( "pam are requested, but not found on your system" ) endif( ) |