kopia lustrzana https://github.com/Hamlib/Hamlib
Added 'kit' backend, enable winradio build under non-Linux systems
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1724 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.2.1
rodzic
51d2a15312
commit
11baf1dcb4
|
@ -1,6 +1,4 @@
|
||||||
|
|
||||||
#AUTOMAKE_OPTIONS = 1.6
|
|
||||||
|
|
||||||
aclocaldir = $(datadir)/aclocal
|
aclocaldir = $(datadir)/aclocal
|
||||||
aclocal_DATA = hamlib.m4
|
aclocal_DATA = hamlib.m4
|
||||||
|
|
||||||
|
@ -18,7 +16,7 @@ SUBDIRS = macros include lib libltdl src @BACKEND_LIST@ @ROT_BACKEND_LIST@ \
|
||||||
DIST_SUBDIRS = macros include lib libltdl src c++ bindings tests doc \
|
DIST_SUBDIRS = macros include lib libltdl src c++ bindings tests doc \
|
||||||
icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc \
|
icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc \
|
||||||
rpcrig winradio easycomm fodtrack rpcrot gnuradio drake rotorez \
|
rpcrig winradio easycomm fodtrack rpcrot gnuradio drake rotorez \
|
||||||
microtune flexradio sartek lowe rft tapr
|
microtune flexradio sartek lowe rft tapr kit
|
||||||
|
|
||||||
rpm: Makefile
|
rpm: Makefile
|
||||||
make dist
|
make dist
|
||||||
|
|
21
configure.ac
21
configure.ac
|
@ -130,7 +130,7 @@ AC_CHECK_LIB(syslog,syslog) # OS/2 needs this
|
||||||
dnl Checks for library functions.
|
dnl Checks for library functions.
|
||||||
AC_CHECK_FUNCS([atexit snprintf select memmove memset])
|
AC_CHECK_FUNCS([atexit snprintf select memmove memset])
|
||||||
AC_CHECK_FUNCS([strcasecmp strchr strdup strerror strrchr strstr strtol])
|
AC_CHECK_FUNCS([strcasecmp strchr strdup strerror strrchr strstr strtol])
|
||||||
AC_CHECK_FUNCS([cfmakeraw setitimer])
|
AC_CHECK_FUNCS([cfmakeraw setitimer ioctl])
|
||||||
AC_FUNC_ALLOCA
|
AC_FUNC_ALLOCA
|
||||||
#AC_FUNC_MALLOC
|
#AC_FUNC_MALLOC
|
||||||
AC_FUNC_VPRINTF
|
AC_FUNC_VPRINTF
|
||||||
|
@ -197,7 +197,7 @@ fi
|
||||||
AC_SUBST(RIGMATRIX)
|
AC_SUBST(RIGMATRIX)
|
||||||
|
|
||||||
|
|
||||||
BACKEND_LIST="icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc drake lowe rft tapr flexradio"
|
BACKEND_LIST="icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc drake lowe rft kit tapr flexradio"
|
||||||
ROT_BACKEND_LIST="dummy easycomm rotorez sartek fodtrack"
|
ROT_BACKEND_LIST="dummy easycomm rotorez sartek fodtrack"
|
||||||
BINDINGS=""
|
BINDINGS=""
|
||||||
BINDING_LIST=""
|
BINDING_LIST=""
|
||||||
|
@ -286,13 +286,17 @@ fi
|
||||||
|
|
||||||
dnl Backend list
|
dnl Backend list
|
||||||
|
|
||||||
case "$host_os" in
|
# Winradio only under Linux (until someone port it on other os)
|
||||||
linux-gnu*)
|
AC_MSG_CHECKING(whether to build winradio backend)
|
||||||
# Winradio only under Linux (until someone port it on other os)
|
AC_ARG_WITH(winradio,
|
||||||
|
[ --without-winradio do not build winradio backend],
|
||||||
|
[cf_with_winradio="no"],
|
||||||
|
[cf_with_winradio="yes"])
|
||||||
|
AC_MSG_RESULT($cf_with_winradio)
|
||||||
|
|
||||||
|
if test "${cf_with_winradio}" = "yes" ; then
|
||||||
BACKEND_LIST="$BACKEND_LIST winradio"
|
BACKEND_LIST="$BACKEND_LIST winradio"
|
||||||
;;
|
fi
|
||||||
*)
|
|
||||||
esac
|
|
||||||
|
|
||||||
# FIXME: check for presence of libgnuradio, libfftw
|
# FIXME: check for presence of libgnuradio, libfftw
|
||||||
if test "${cf_with_cxx}" = "yes" ; then
|
if test "${cf_with_cxx}" = "yes" ; then
|
||||||
|
@ -399,6 +403,7 @@ jrc/Makefile
|
||||||
drake/Makefile
|
drake/Makefile
|
||||||
lowe/Makefile
|
lowe/Makefile
|
||||||
rft/Makefile
|
rft/Makefile
|
||||||
|
kit/Makefile
|
||||||
tapr/Makefile
|
tapr/Makefile
|
||||||
gnuradio/Makefile
|
gnuradio/Makefile
|
||||||
easycomm/Makefile
|
easycomm/Makefile
|
||||||
|
|
Ładowanie…
Reference in New Issue