]> git.lyx.org Git - lyx.git/blobdiff - development/cmake/config.h.cmake
* config/lyxinclude (LYX_VERSION_SUFFIX): make $with_version available
[lyx.git] / development / cmake / config.h.cmake
index c82092c9a44b51d61858cfcae6f51955b7986eb2..91f026edee72ac135d94f6d1a2bd53c5f117cb9b 100644 (file)
 
 #cmakedefine USE_POSIX_PACKAGING 1
 #cmakedefine USE_WINDOWS_PACKAGING 1
+#cmakedefine USE_MACOSX_PACKAGING 1
 #cmakedefine PATH_MAX ${PATH_MAX}
 
 #ifdef _MSC_VER
 #  define WANT_GETFILEATTRIBUTESEX_WRAPPER 1
 #endif
 
-#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4
-#  define LIBC_WCTYPE_USES_UCS4
+
+/*
+ * the FreeBSD libc uses UCS4, but libstdc++ has no proper wchar_t
+ * support compiled in:
+ * http://gcc.gnu.org/onlinedocs/libstdc++/faq/index.html#3_9
+ * And we are not interested at all what libc
+ * does: What we need is a 32bit wide wchar_t, and a libstdc++ that
+ * has the needed wchar_t support and uses UCS4. Whether it
+ * implements this with the help of libc, or whether it has own code
+ * does not matter for us, because we don't use libc directly (Georg)
+*/
+#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4 && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
+#  define USE_WCHAR_T
 #endif
 
 #if defined(MAKE_INTL_LIB) && defined(_MSC_VER)
 #endif
 
 #ifdef _MSC_VER
-#pragma warning( disable : 4800 ) //: forcing value to bool 'true' or 'false' (performance warning)
+#ifdef HAVE_CHMOD
+#undef HAVE_CHMOD
+#endif
+#endif
+
+#ifdef HAVE_CHMOD
+#define HAVE_MODE_T
 #endif
 
 #ifdef LYX_ENABLE_PCH