Skip to content

Commit

Permalink
disable perl for now to unbreak make dist
Browse files Browse the repository at this point in the history
  • Loading branch information
djcb committed Nov 6, 2016
1 parent e295fd0 commit f7e6d77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Expand Up @@ -34,7 +34,7 @@ else
perl=
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

Expand Down Expand Up @@ -69,7 +69,7 @@ line35:
| grep -v config_options_group_find \
| grep -v SCM_DEFINE \
| grep -v tests \
| awk '($$5 > 35)'
| awk '($$5 > 35)'

# get all todo/fixme messages
fixme:
Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Expand Up @@ -76,7 +76,7 @@ AC_ARG_ENABLE([perl],
AS_HELP_STRING([--enable-perl],[Enable building the Perl interface]))
AC_ARG_VAR([PERL], [the Perl interpreter command])
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])
if test x"$build_perl" = "xyes"; then
perl_version=`$PERL -Iperl/lib -Mmup -e 'print "$mup::VERSION\n";'`
Expand Down Expand Up @@ -320,9 +320,9 @@ if test "x$build_mu4e" = "xyes"; then
echo "Emacs version : $emacs_version"
fi

AM_COND_IF([BUILD_PERL],[
echo "Perl interface version : $perl_version"
])
#AM_COND_IF([BUILD_PERL],[
#echo "Perl interface version : $perl_version"
#])

echo
echo "Have wordexp : $ac_cv_header_wordexp_h"
Expand Down

0 comments on commit f7e6d77

Please sign in to comment.