Hey there,
I maintain the LyX port on FreeBSD, and was recently contacted by a user
who was not able to built LyX with GCC 4.5 due to autoconf trying to use
gcc instead of g++ to build the source code used to link to boost (LyX
is built with --without-included-boost).
The patch below should fix t
Jean-Marc Lasgouttes writes:
> I found the same code at
> http://nerdland.net/2009/07/detecting-c-libraries-with-autotools/
> along with a comment from our own Georg Baum.
In fact, the patch was based on this code, plus [1] and [2].
[1] https://github.com/tsuna/boost.m4
[2]
http://git.savann
Jean-Marc Lasgouttes writes:
> Le 13/09/2011 00:14, Raphael Kubo da Costa a écrit :
>> I maintain the LyX port on FreeBSD, and was recently contacted by a user
>> who was not able to built LyX with GCC 4.5 due to autoconf trying to use
>> gcc instead of g++ to build the sou
Richard Heck writes:
> Can you please attach the patch again?
Sure :)
Index: config/lyxinclude.m4
===
--- config/lyxinclude.m4(revision 39661)
+++ config/lyxinclude.m4(working copy)
@@ -321,8 +321,17 @@
AM_C
The problems the comments in the build systems refer to seem to have been
fixed for years. [1] says the checks in libstdc++ have been improved, and
all supported FreeBSD versions enable wchar_t support unconditionally in
libstdc++. Additionally, this needlessly impacts FreeBSD when libc++ is used
i
Vincent van Ravesteijn lyx.org> writes:
> Ok, it's in.
>
> Thank you Raphael.
Thanks. What's the procedure for getting those changes into 2.0.x and the
upcoming 2.1.x series?
Do like the other Python scripts and use the more portable
#!/usr/bin/env python
instead of
#!/usr/bin/python
as Python isn't always installed there, especially on non-Linux systems.
---
lib/scripts/listerrors | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/scripts/list
Commit 82faa6619239c2e57fba9128899bafe29d728e51 added some calls to
setlocale(3) but did not include locale.h. The implicit include is added
on some platforms, but not others, such as FreeBSD with libc++.
---
src/support/os_unix.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/support/o