]> git.lyx.org Git - lyx.git/blobdiff - development/cmake/ConfigureChecks.cmake
FORMAT: add missing email addresses
[lyx.git] / development / cmake / ConfigureChecks.cmake
index 85a6323895e704d6da989d47d6044a23c69d84de..d87fd3cab9c2123a29c9d43ca7a3dfe12d38bd34 100644 (file)
@@ -1,3 +1,9 @@
+# This file is part of LyX, the document processor.
+# Licence details can be found in the file COPYING.
+#
+# Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
+#
+
 include(CheckIncludeFile)
 include(CheckIncludeFileCXX)
 include(CheckIncludeFiles)
@@ -10,11 +16,11 @@ include(CheckCXXSourceCompiles)
 
 check_include_file_cxx(aspell.h HAVE_ASPELL_H)
 check_include_file_cxx(aspell/aspell.h HAVE_ASPELL_ASPELL_H)
-check_include_file_cxx(istream HAVE_ISTREAM)
-check_include_file_cxx(ostream HAVE_OSTREAM)
-check_include_file_cxx(ios HAVE_IOS)
-check_include_file_cxx(sstream HAVE_SSTREAM)
-check_include_file_cxx(locale HAVE_LOCALE)
+#check_include_file_cxx(istream HAVE_ISTREAM)
+#check_include_file_cxx(ostream HAVE_OSTREAM)
+#check_include_file_cxx(ios HAVE_IOS)
+#check_include_file_cxx(sstream HAVE_SSTREAM)
+#check_include_file_cxx(locale HAVE_LOCALE)
 
 check_include_files(io.h HAVE_IO_H)
 check_include_files(limits.h HAVE_LIMITS_H)
@@ -35,6 +41,7 @@ check_include_files(argz.h HAVE_ARGZ_H)
 
 
 check_function_exists(open HAVE_OPEN)
+check_function_exists(chmod HAVE_CHMOD)
 check_function_exists(close HAVE_CLOSE)
 check_function_exists(popen HAVE_POPEN)
 check_function_exists(pclose HAVE_PCLOSE)
@@ -86,34 +93,34 @@ check_type_size(wchar_t HAVE_WCHAR_T)
 check_type_size(wint_t  HAVE_WINT_T)
 
 
-check_cxx_source_compiles(
-       "
-       #include <algorithm>
-       using std::count;
-       int countChar(char * b, char * e, char const c)
-       {
-               return count(b, e, c);
-       }
-       int main(){return 0;}
-       "
-HAVE_STD_COUNT)
-
-check_cxx_source_compiles(
-       "
-       #include <streambuf>
-       #include <istream>
-       typedef std::istreambuf_iterator<char> type;
-       int main(){return 0;}
-       "
-HAVE_DECL_ISTREAMBUF_ITERATOR)
-
-check_cxx_source_compiles(
-       "
-       #include <cctype>
-       using std::tolower;
-       int main(){return 0;}
-       "
-CXX_GLOBAL_CSTD)
+#check_cxx_source_compiles(
+#      "
+#      #include <algorithm>
+#      using std::count;
+#      int countChar(char * b, char * e, char const c)
+#      {
+#              return count(b, e, c);
+#      }
+#      int main(){return 0;}
+#      "
+#HAVE_STD_COUNT)
+
+#check_cxx_source_compiles(
+#      "
+#      #include <streambuf>
+#      #include <istream>
+#      typedef std::istreambuf_iterator<char> type;
+#      int main(){return 0;}
+#      "
+#HAVE_DECL_ISTREAMBUF_ITERATOR)
+
+#check_cxx_source_compiles(
+#      "
+#      #include <cctype>
+#      using std::tolower;
+#      int main(){return 0;}
+#      "
+#CXX_GLOBAL_CSTD)
 
 check_cxx_source_compiles(
        "
@@ -138,22 +145,3 @@ check_cxx_source_compiles(
        "
 SIZEOF_WCHAR_T_IS_4)
 
-set(PACKAGE lyx)
-set(PACKAGE_VERSION 1.5.0svn)
-
-if(WIN32)
-       set(USE_WINDOWS_PACKAGING 1)
-else(WIN32)
-       set(USE_POSIX_PACKAGING 1)
-endif(WIN32)
-
-
-
-
-
-
-
-
-
-
-