discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] How does 'make check' find its dependencies?


From: Michael Dickens
Subject: Re: [Discuss-gnuradio] How does 'make check' find its dependencies?
Date: Thu, 10 Aug 2006 15:20:00 -0400

The new m4 script says

        AC_CHECK_FUNCS([getrusage sched_setscheduler],[],[succeeded=no])
        AC_CHECK_HEADERS([byteswap.h],[],[succeeeded=no])

while the old one says

        AC_CHECK_FUNCS([getrusage])
        AC_CHECK_HEADERS([byteswap.h])

... so both the "byteswap" and "sched_setscheduler" are killing my configure for the USRP. When I change these to:

        AC_CHECK_FUNCS([getrusage],[],[succeeded=no])
        AC_CHECK_HEADERS([byteswap.h])

then everything works as I would expect it for my platform. Not sure if those changes are really required, or maybe just on some platforms? - MLD




reply via email to

[Prev in Thread] Current Thread [Next in Thread]