[Top][All Lists]
[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
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, (continued)
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Michael Dickens, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Greg Troxel, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Johnathan Corgan, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Greg Troxel, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Johnathan Corgan, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Greg Troxel, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Johnathan Corgan, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Johnathan Corgan, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Michael Dickens, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Johnathan Corgan, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?,
Michael Dickens <=
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Johnathan Corgan, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Michael Dickens, 2006/08/10
- Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Johnathan Corgan, 2006/08/10
- [Discuss-gnuradio] Problem building ecc.cc, Tom Rondeau, 2006/08/10
- Re: [Discuss-gnuradio] Problem building ecc.cc, Johnathan Corgan, 2006/08/10
- Re: [Discuss-gnuradio] Problem building ecc.cc, Michael Dickens, 2006/08/11
- Message not available
- Re: [Discuss-gnuradio] Problem building ecc.cc, Michael Dickens, 2006/08/12
- Re: [Discuss-gnuradio] Problem building ecc.cc, Johnathan Corgan, 2006/08/12
Re: [Discuss-gnuradio] How does 'make check' find its dependencies?, Jan Schiefer, 2006/08/11