git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@792 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2001-12-26 23:30:21 +00:00
rodzic 8033af1aad
commit f81832418a
2 zmienionych plików z 10 dodań i 3 usunięć

Wyświetl plik

@ -6,3 +6,8 @@ EXTRA_DIST = PLAN TODO LICENSE hamlib.m4
SUBDIRS = include lib libltdl src @BACKEND_LIST@ c++ tcl tests doc
DIST_SUBDIRS = include lib libltdl src c++ tcl tests doc \
icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc \
rpcrig winradio

Wyświetl plik

@ -154,20 +154,22 @@ fi
AC_SUBST(NET)
BACKEND_LIST="icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc"
case "$host_os" in
linux-gnu*)
# Winradio only under Linux (until someone port it on other os)
BACKEND_LIST="icom kenwood aor yaesu dummy pcr alinco winradio uniden tentec kachina jrc"
BACKEND_LIST="$BACKEND_LIST winradio"
;;
*)
BACKEND_LIST="icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc"
esac
if test "${ac_cv_header_rpc_rpc_h}" = "yes" ; then
BACKEND_LIST="$BACKEND_LIST rpcrig"
fi
BACKENDLNK="-dlopen force"
# Preopen self for static version
BACKENDLNK="-dlpreopen self"
for be in ${BACKEND_LIST} ; do
BACKENDLNK="${BACKENDLNK} -dlopen ../${be}/libhamlib-${be}.la"
BACKENDEPS="${BACKENDEPS} ../${be}/libhamlib-${be}.la"