summaryrefslogtreecommitdiffstats
path: root/krfb/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-01-10 16:02:54 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-01-10 16:02:54 -0600
commitf6187cc4eb8a8726f5b64f0c640ac8d2355b85eb (patch)
treed5c3b93286335d890339446d15e35c9cc97703d1 /krfb/ConfigureChecks.cmake
parentdedd07e78dee71fd8cde6a39e2ccc89fdbb8a782 (diff)
downloadtdenetwork-f6187cc4eb8a8726f5b64f0c640ac8d2355b85eb.tar.gz
tdenetwork-f6187cc4eb8a8726f5b64f0c640ac8d2355b85eb.zip
Port to standard shared libvncserver and delete old buggy libvncserver library sources
Note that this DOES NOT WORK as some TDE-specific changes to libvncserver will be required The commit is a "clean slate" for the TDE-specific changes to follow
Diffstat (limited to 'krfb/ConfigureChecks.cmake')
-rw-r--r--krfb/ConfigureChecks.cmake8
1 files changed, 8 insertions, 0 deletions
diff --git a/krfb/ConfigureChecks.cmake b/krfb/ConfigureChecks.cmake
index 9e24956f..b488b03e 100644
--- a/krfb/ConfigureChecks.cmake
+++ b/krfb/ConfigureChecks.cmake
@@ -1,5 +1,8 @@
#################################################
#
+# (C) 2015 Timothy Pearson
+# kb9vqf (AT) pearsoncomputing (DOT) net
+#
# (C) 2010-2011 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
@@ -13,3 +16,8 @@ pkg_search_module( XTST xtst )
if( NOT XTST_FOUND )
tde_message_fatal( "xtst is required, but was not found on your system" )
endif( )
+
+pkg_search_module( LIBVNCSERVER libvncserver )
+if( NOT LIBVNCSERVER_FOUND )
+ tde_message_fatal( "libvncserver is required, but was not found on your system" )
+endif( )