]> git.lyx.org Git - lyx.git/blobdiff - development/cmake/configCompiler.h.msvc
Document the export tests and other tests
[lyx.git] / development / cmake / configCompiler.h.msvc
index fe08ab939ca0a0b380f112057bdf49f8f48b84c2..d978be1ea8c4af0c853b8c971448df536fde4490 100644 (file)
 #define HAVE__PCLOSE 1
 #define HAVE_GETPID 1
 #define HAVE__GETPID 1
+#define HAVE_GETTEXT 1 /* TODO this is set manually */
 #define HAVE_MKDIR 1
 #define HAVE__MKDIR 1
+/* #undef HAVE_SETENV 1 */
 #define HAVE_PUTENV 1
 #define HAVE_MKTEMP 1
 /* #undef HAVE_MKSTEMP 1 */
 #  define BOOST_POSIX_PATH 1
 #endif
 
-/*
- * 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__)
+#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4
 #  define USE_WCHAR_T
 #endif