Re: Problem with smpeg after converting to dh-autoreconf
Hi,
On 10/08/14 02:05, Manuel A. Fernandez Montecelo wrote:
> (Is this list OK for this kind of questions? If not, please let me
> know the appropriate place).
Yes, thanks for asking here.
> I converted this package to use dh-autoreconf, having converted a few
> without any trouble, but this one now does not compile in kfreebsd-*
> (it does on all main Linux arches, and Hurd as well).
A few problems here:
> checking dynamic linker characteristics... no
> checking if libtool supports shared libraries... no
> checking whether to build shared libraries... no
I traced this to ltconfig, which has some hard-coded tests for $host_os
types; it does know about gnu* (which is Hurd) but not kfreebsd-gnu.
Please see attached patch, with that it builds fine.
(There may be some better way to fix this -- getting a more recent copy
of ltconfig from somewhere -- but I don't know about that).
Regards,
--
Steven Chamberlain
steven@pyro.eu.org
--- ltconfig.orig 2002-06-03 02:35:44.000000000 +0100
+++ ltconfig 2014-08-10 03:18:39.551398679 +0100
@@ -1973,7 +1973,7 @@
esac
;;
-gnu*)
+gnu* | k*bsd*-gnu)
version_type=linux
need_lib_prefix=no
need_version=no
Reply to: