summaryrefslogtreecommitdiffstats
path: root/Utilities/cmtar
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-11-24 01:45:49 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-11-24 01:45:49 (GMT)
commite3c84cf5a6ceb3f1bbc4b47dce4dfbdb1c856408 (patch)
tree82a2ad082ba8b4d22deca15288c9daa679391b13 /Utilities/cmtar
parentd48ab19efe2daa4313e8bdcd626ffd556cb80fc3 (diff)
downloadCMake-e3c84cf5a6ceb3f1bbc4b47dce4dfbdb1c856408.zip
CMake-e3c84cf5a6ceb3f1bbc4b47dce4dfbdb1c856408.tar.gz
CMake-e3c84cf5a6ceb3f1bbc4b47dce4dfbdb1c856408.tar.bz2
ENH: add support for the Syllable OS (http://www.syllable.org)
major issues: -access() doesn't return false for an empty string (#ifdefed in cmake) -dlopen() doesn't return 0 on failure (#ifdefed in cmake and fixed now in Syllable) -the kwsys and Bootstrap tests fail with timeout due to the fact that I'm doing all that in qemu, which is quite slow -RPATH is now supported, so without modifying the test adapting DLL_PATH in Syllable is required for the tests to succeed -the Plugin test fails with an undefined reference to example_exe_function() in example_mod_1, it seems this isn't supported under Syllable Alex
Diffstat (limited to 'Utilities/cmtar')
-rw-r--r--Utilities/cmtar/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/Utilities/cmtar/CMakeLists.txt b/Utilities/cmtar/CMakeLists.txt
index 6450338..80137ca 100644
--- a/Utilities/cmtar/CMakeLists.txt
+++ b/Utilities/cmtar/CMakeLists.txt
@@ -112,6 +112,11 @@ FOREACH(func
CHECK_SYMBOL_EXISTS_EX("${func}")
ENDFOREACH(func)
+# on Syllable lchown() is there, but always returns "Not implemented"
+IF("${CMAKE_SYSTEM_NAME}" MATCHES syllable)
+ SET(HAVE_LCHOWN 0)
+ENDIF("${CMAKE_SYSTEM_NAME}" MATCHES syllable)
+
CHECK_TYPE_SIZE("dev_t" SIZEOF_DEV_T)
IF(HAVE_SIZEOF_DEV_T)
SET (HAVE_DEV_T 1)