diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-08-17 17:05:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-08-17 17:05:44 +0200 |
commit | d5f62b14e1d70f23866e613449ca71ac0b903e0f (patch) | |
tree | 3168d58cf5ba63c417532e034ff83ea590bc119f /src/auto/configure | |
parent | 2a5868ab1ec14668aa7499477c57895064766eff (diff) | |
download | vim-d5f62b14e1d70f23866e613449ca71ac0b903e0f.zip |
updated for version 7.4.409
Problem: Can't build with Perl on Fedora 20.
Solution: Find xsubpp in another directory. (Michael Henry)
Diffstat (limited to 'src/auto/configure')
-rwxr-xr-x | src/auto/configure | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/auto/configure b/src/auto/configure index 30db8a022..b0fba306e 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -687,6 +687,7 @@ PERL_PRO PERL_OBJ PERL_SRC shrpenv +vi_cv_perl_xsubpp vi_cv_perllib vi_cv_path_perl MZSCHEME_MZC @@ -5604,6 +5605,14 @@ $as_echo "OK" >&6; } fi vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'` + vi_cv_perl_extutils=unknown_perl_extutils_path + for extutils_rel_path in ExtUtils vendor_perl/ExtUtils; do + xsubpp_path="$vi_cv_perllib/$extutils_rel_path/xsubpp" + if test -f "$xsubpp_path"; then + vi_cv_perl_xsubpp="$xsubpp_path" + fi + done + perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \ -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[^ ]*//'` perllibs=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed -e 'ldopts' | \ |