check for gnuradio pkg data only upon request

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1210 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.4
Stéphane Fillod, F8CFE 2002-10-08 22:37:27 +00:00
rodzic 0780ba058e
commit 01658d123d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -271,7 +271,6 @@ esac
# assumes we have libgnuradio, libfftw
if test "${cf_with_cxx}" = "yes" ; then
PKG_CHECK_MODULES(GNURADIO, gnuradio >= 0.5)
AC_MSG_CHECKING(whether to build gnuradio backend)
AC_ARG_WITH(gnuradio,
[ --with-gnuradio build gnuradio backend],
@ -280,6 +279,7 @@ if test "${cf_with_cxx}" = "yes" ; then
AC_MSG_RESULT($cf_with_gnuradio)
if test "${cf_with_gnuradio}" = "yes" ; then
PKG_CHECK_MODULES(GNURADIO, gnuradio >= 0.5)
BACKEND_LIST="$BACKEND_LIST gnuradio"
fi
fi