added early perl binding

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@949 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2002-02-09 21:55:45 +00:00
rodzic 48b15acc2c
commit 35fb4ea90d
2 zmienionych plików z 17 dodań i 2 usunięć

Wyświetl plik

@ -7,7 +7,7 @@ EXTRA_DIST = PLAN TODO LICENSE hamlib.m4 README.developer README.betatester
SUBDIRS = include lib libltdl src @BACKEND_LIST@ @ROT_BACKEND_LIST@ \
@BINDING_LIST@ tests doc
DIST_SUBDIRS = include lib libltdl src c++ tcl kylix tests doc \
DIST_SUBDIRS = include lib libltdl src c++ tcl kylix perl tests doc \
icom kenwood aor yaesu dummy pcr alinco uniden tentec kachina jrc \
rpcrig winradio easycomm rpcrot

Wyświetl plik

@ -182,6 +182,21 @@ if test "${cf_with_cxx_binding}" = "yes" ; then
BINDING_LIST="$BINDING_LIST c++"
fi
dnl Check if perl-binding not wanted, default is to not build it
AC_CHECK_PROG(cf_with_perl, h2xs, [yes], [no])
AC_MSG_CHECKING(whether to build perl binding and demo)
AC_ARG_WITH(perl-binding,
[ --with-perl-binding build perl binding and demo],
[cf_with_perl_binding=$withval],
[cf_with_perl_binding=$cf_with_perl])
AC_MSG_RESULT($cf_with_perl_binding)
if test "${cf_with_perl_binding}" = "yes" ; then
BINDING_LIST="$BINDING_LIST perl"
fi
dnl Check if kylix-binding wanted, REM: nothing to build yet
cf_with_kylix=no
@ -272,7 +287,6 @@ AC_SUBST(LIBOBJS)
AC_SUBST(LTLIBOBJS)
AC_SUBST(INCLUDES)
AC_CONFIG_FILES([Makefile
include/Makefile
lib/Makefile
@ -295,6 +309,7 @@ src/Makefile
c++/Makefile
tcl/Makefile
kylix/Makefile
perl/Makefile
tests/Makefile
doc/Makefile
hamlib.spec])