On 15.11.11 23:34, Gerald Pfeifer wrote:
On Tue, 15 Nov 2011, Andreas Tobler wrote:
Are you sure that they come from autoconf? I'd say they come from
toplevel libtool.m4.
You right; bah, my bad.
When I tested this, I only had to adjust libtool.m4 and then autoconf'ing the
needed files.
libtool.m4 change:
------------------
case $host_os in
- freebsd[[123]]*) objformat=aout ;;
+ freebsd[[23]].*) objformat=aout ;;
resulting configure change:
---------------------------
case $host_os in
- freebsd[123]*) objformat=aout ;;
+ freebsd[23].*) objformat=aout ;;
Could someone with better autoconf/libtool foo than me apply this
change to trunk and GCC 4.6, ideally GCC 4.5, please? That would
be really helpful.
Aehm, the patch Peter mentioned on libtool.m4 (another mail from this
thread) is the complete minimal set which covers FreeBSD >=10.
The above chunk was only a part of it.
With a libtool import we would cover this and some more issues.
I think Markus Trippelsdorf prepared a patch for trunk but I do not know
its status. I tested both iterations successfully.
Gruss,
Andreas