kopia lustrzana https://github.com/Hamlib/Hamlib
added kachina backend, winradio no more optional
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@631 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.1.2
rodzic
7baa35fc8b
commit
3debb5052f
28
configure.ac
28
configure.ac
|
@ -6,7 +6,7 @@ AC_CONFIG_SRCDIR([include/hamlib/rig.h])
|
||||||
AM_INIT_AUTOMAKE(hamlib, 1.1.2)
|
AM_INIT_AUTOMAKE(hamlib, 1.1.2)
|
||||||
AM_CONFIG_HEADER(include/config.h)
|
AM_CONFIG_HEADER(include/config.h)
|
||||||
AC_PREREQ(2.50)dnl dnl Minimum Autoconf version required.
|
AC_PREREQ(2.50)dnl dnl Minimum Autoconf version required.
|
||||||
AC_REVISION($Revision: 1.1 $)
|
AC_REVISION($Revision: 1.2 $)
|
||||||
|
|
||||||
dnl directory for docs (html)
|
dnl directory for docs (html)
|
||||||
hamlibdocdir=$datadir/doc/hamlib
|
hamlibdocdir=$datadir/doc/hamlib
|
||||||
|
@ -127,30 +127,8 @@ else
|
||||||
fi
|
fi
|
||||||
AC_SUBST(RIGMATRIX)
|
AC_SUBST(RIGMATRIX)
|
||||||
|
|
||||||
dnl Check if linradio-toolkit includes are there, so we can enable WiNRADiO
|
|
||||||
|
|
||||||
AC_CHECK_HEADERS(linradio/radio_ioctl.h linradio/wrapi.h)
|
|
||||||
if test "${ac_cv_header_linradio_radio_ioctl_h}" = "no" -o \
|
|
||||||
"${ac_cv_header_linradio_wrapi_h}" = "no"; then
|
|
||||||
echo "disabling WiNRADiO receiver support"
|
|
||||||
WINRADIOLNK=
|
|
||||||
WINRADIODEPS=
|
|
||||||
LIBWINRADIO=
|
|
||||||
LTLIBWINRADIO=
|
|
||||||
else
|
|
||||||
echo "enabling WiNRADiO receiver support"
|
|
||||||
LIBWINRADIO=libhamlib-winradio.a
|
|
||||||
LTLIBWINRADIO=libhamlib-winradio.la
|
|
||||||
WINRADIOLNK="-dlopen \$(top_builddir)/winradio/${LTLIBWINRADIO}"
|
|
||||||
WINRADIODEPS="\$(top_builddir)/winradio/${LTLIBWINRADIO}"
|
|
||||||
fi
|
|
||||||
AM_CONDITIONAL(WINRADIO, test x$LTLIBWINRADIO != x)
|
|
||||||
AC_SUBST(WINRADIOLNK)
|
|
||||||
AC_SUBST(WINRADIODEPS)
|
|
||||||
AC_SUBST(LIBWINRADIO)
|
|
||||||
AC_SUBST(LTLIBWINRADIO)
|
|
||||||
|
|
||||||
dnl Check if tcl includes are there, so we can enable HamlibTCL
|
dnl Check if tcl includes are there, so we can enable HamlibTCL
|
||||||
|
dnl FIXME!
|
||||||
|
|
||||||
AC_CHECK_HEADERS(tcl8.2/tcl.h)
|
AC_CHECK_HEADERS(tcl8.2/tcl.h)
|
||||||
if test "${ac_cv_header_tcl8_2_tcl_h}" = "no" ; then
|
if test "${ac_cv_header_tcl8_2_tcl_h}" = "no" ; then
|
||||||
|
@ -201,10 +179,12 @@ icom/Makefile
|
||||||
aor/Makefile
|
aor/Makefile
|
||||||
kenwood/Makefile
|
kenwood/Makefile
|
||||||
winradio/Makefile
|
winradio/Makefile
|
||||||
|
winradio/linradio/Makefile
|
||||||
pcr/Makefile
|
pcr/Makefile
|
||||||
alinco/Makefile
|
alinco/Makefile
|
||||||
uniden/Makefile
|
uniden/Makefile
|
||||||
tentec/Makefile
|
tentec/Makefile
|
||||||
|
kachina/Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
c++/Makefile
|
c++/Makefile
|
||||||
tcl/Makefile
|
tcl/Makefile
|
||||||
|
|
|
@ -11,8 +11,8 @@ LDADD = ../src/libhamlib.la ../lib/libmisc.a
|
||||||
DEPENDENCIES = ../src/libhamlib.la
|
DEPENDENCIES = ../src/libhamlib.la
|
||||||
|
|
||||||
## The quotes around -dlopen below fool automake into accepting it
|
## The quotes around -dlopen below fool automake into accepting it
|
||||||
BACKENDLNK = -dlopen self -dlopen ../icom/libhamlib-icom.la -dlopen ../yaesu/libhamlib-yaesu.la -dlopen ../kenwood/libhamlib-kenwood.la -dlopen ../aor/libhamlib-aor.la -dlopen ../dummy/libhamlib-dummy.la -dlopen ../pcr/libhamlib-pcr.la -dlopen ../alinco/libhamlib-alinco.la -dlopen ../uniden/libhamlib-uniden.la -dlopen ../tentec/libhamlib-tentec.la @WINRADIOLNK@
|
BACKENDLNK = -dlopen self -dlopen ../icom/libhamlib-icom.la -dlopen ../yaesu/libhamlib-yaesu.la -dlopen ../kenwood/libhamlib-kenwood.la -dlopen ../aor/libhamlib-aor.la -dlopen ../dummy/libhamlib-dummy.la -dlopen ../pcr/libhamlib-pcr.la -dlopen ../alinco/libhamlib-alinco.la -dlopen ../uniden/libhamlib-uniden.la -dlopen ../tentec/libhamlib-tentec.la -dlopen ../winradio/libhamlib-winradio.la -dlopen ../kachina/libhamlib-kachina.la
|
||||||
BACKENDEPS = ../icom/libhamlib-icom.la ../yaesu/libhamlib-yaesu.la ../kenwood/libhamlib-kenwood.la ../aor/libhamlib-aor.la ../dummy/libhamlib-dummy.la ../pcr/libhamlib-pcr.la ../alinco/libhamlib-alinco.la ../uniden/libhamlib-uniden.la ../tentec/libhamlib-tentec.la @WINRADIODEPS@
|
BACKENDEPS = ../icom/libhamlib-icom.la ../yaesu/libhamlib-yaesu.la ../kenwood/libhamlib-kenwood.la ../aor/libhamlib-aor.la ../dummy/libhamlib-dummy.la ../pcr/libhamlib-pcr.la ../alinco/libhamlib-alinco.la ../uniden/libhamlib-uniden.la ../tentec/libhamlib-tentec.la ../winradio/libhamlib-winradio.la ../kachina/libhamlib-kachina.la
|
||||||
|
|
||||||
## Linker options
|
## Linker options
|
||||||
listrigs_LDFLAGS = $(BACKENDLNK)
|
listrigs_LDFLAGS = $(BACKENDLNK)
|
||||||
|
@ -21,6 +21,8 @@ dumpmem_LDFLAGS = $(BACKENDLNK)
|
||||||
testcaps_LDFLAGS = $(BACKENDLNK)
|
testcaps_LDFLAGS = $(BACKENDLNK)
|
||||||
testrig_LDFLAGS = $(BACKENDLNK)
|
testrig_LDFLAGS = $(BACKENDLNK)
|
||||||
testtrn_LDFLAGS = $(BACKENDLNK)
|
testtrn_LDFLAGS = $(BACKENDLNK)
|
||||||
|
testbcd_LDFLAGS = $(BACKENDLNK)
|
||||||
|
testfreq_LDFLAGS = $(BACKENDLNK)
|
||||||
rigctl_LDFLAGS = $(BACKENDLNK)
|
rigctl_LDFLAGS = $(BACKENDLNK)
|
||||||
# rigmatrix needs also libgd
|
# rigmatrix needs also libgd
|
||||||
rigmatrix_LDFLAGS = -lgd $(BACKENDLNK)
|
rigmatrix_LDFLAGS = -lgd $(BACKENDLNK)
|
||||||
|
|
Ładowanie…
Reference in New Issue