disable perl for now to unbreak make dist

This commit is contained in:
djcb 2016-11-06 10:48:45 +02:00
parent e295fd0c65
commit f7e6d77c9a
2 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ else
perl= perl=
endif endif
SUBDIRS=m4 man lib $(guile) mu $(mu4e) contrib toys $(perl) SUBDIRS=m4 man lib $(guile) mu $(mu4e) contrib toys # $(perl)
ACLOCAL_AMFLAGS=-I m4 ACLOCAL_AMFLAGS=-I m4
@ -69,7 +69,7 @@ line35:
| grep -v config_options_group_find \ | grep -v config_options_group_find \
| grep -v SCM_DEFINE \ | grep -v SCM_DEFINE \
| grep -v tests \ | grep -v tests \
| awk '($$5 > 35)' | awk '($$5 > 35)'
# get all todo/fixme messages # get all todo/fixme messages
fixme: fixme:

View File

@ -76,7 +76,7 @@ AC_ARG_ENABLE([perl],
AS_HELP_STRING([--enable-perl],[Enable building the Perl interface])) AS_HELP_STRING([--enable-perl],[Enable building the Perl interface]))
AC_ARG_VAR([PERL], [the Perl interpreter command]) AC_ARG_VAR([PERL], [the Perl interpreter command])
AC_CHECK_PROGS([PERL], [perl], [no]) AC_CHECK_PROGS([PERL], [perl], [no])
AS_IF([test x"$enable_perl" != "xno" -a x"$PERL" != "xno"], [ AS_IF([test x"$enable_perl" = "xyes" -a x"$PERL" != "xno"], [
AM_PERL_MODULE([Data::SExpression],[build_perl=yes]) AM_PERL_MODULE([Data::SExpression],[build_perl=yes])
if test x"$build_perl" = "xyes"; then if test x"$build_perl" = "xyes"; then
perl_version=`$PERL -Iperl/lib -Mmup -e 'print "$mup::VERSION\n";'` perl_version=`$PERL -Iperl/lib -Mmup -e 'print "$mup::VERSION\n";'`
@ -320,9 +320,9 @@ if test "x$build_mu4e" = "xyes"; then
echo "Emacs version : $emacs_version" echo "Emacs version : $emacs_version"
fi fi
AM_COND_IF([BUILD_PERL],[ #AM_COND_IF([BUILD_PERL],[
echo "Perl interface version : $perl_version" #echo "Perl interface version : $perl_version"
]) #])
echo echo
echo "Have wordexp : $ac_cv_header_wordexp_h" echo "Have wordexp : $ac_cv_header_wordexp_h"