* gnuradio backend requires GNU Radio >= 0.7 with new FIR API

* fodtrack backend needs linux/ppdev.h support (2.4+ kernels)


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1375 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.4
Stéphane Fillod, F8CFE 2003-02-23 18:43:04 +00:00
rodzic 6a472bddf5
commit e9b377f9bc
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -267,7 +267,9 @@ case "$host_os" in
# Winradio only under Linux (until someone port it on other os)
BACKEND_LIST="$BACKEND_LIST winradio"
# TODO: support parallel port interface on other systems too
ROT_BACKEND_LIST="$ROT_BACKEND_LIST fodtrack"
if test "${ac_cv_header_linux_ppdev_h}" = "yes"; then
ROT_BACKEND_LIST="$ROT_BACKEND_LIST fodtrack"
fi
;;
*)
esac
@ -282,7 +284,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.6)
PKG_CHECK_MODULES(GNURADIO, gnuradio >= 0.7)
BACKEND_LIST="$BACKEND_LIST gnuradio"
fi