mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* configure.ac:
* development/cmake/config.h.cmake: * development/scons/SConstruct: - fix casing of __FreeBSD__ macro, also check for __FreeBSD_kernel__ (fixes bug 3537) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19066 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b58b07c06d
commit
c3d9485c5a
@ -393,7 +393,7 @@ int mkstemp(char*);
|
||||
* 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__)
|
||||
#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4 && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
|
||||
# define USE_WCHAR_T
|
||||
#endif
|
||||
|
||||
|
@ -171,7 +171,7 @@
|
||||
* 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__)
|
||||
#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4 && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
|
||||
# define USE_WCHAR_T
|
||||
#endif
|
||||
|
||||
|
@ -829,7 +829,7 @@ utils.createConfigFile(conf,
|
||||
* 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__)
|
||||
#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4 && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
|
||||
# define USE_WCHAR_T
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user