view ci/if_ver-1.vim @ 31453:06a1c71c58ad v9.0.1059

patch 9.0.1059: build failure with some compilers Commit: https://github.com/vim/vim/commit/f94178db8d7324099b1bf916a0dff022c08abdff Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 14 17:50:00 2022 +0000 patch 9.0.1059: build failure with some compilers Problem: Build failure with some compilers that can't handle a declaration directly after a "case" statement. Solution: Add a block to put the declarations in.
author Bram Moolenaar <Bram@vim.org>
date Wed, 14 Dec 2022 19:00:04 +0100
parents 0878f0fd349b
children
line wrap: on
line source

" Print all interface versions for Ubuntu. Part 1.

if 1
  execute 'source' expand('<sfile>:h') .. '/if_ver-cmd.vim'

  echo "*** Interface versions ***\n"

  echo 'Lua:'
  PrintVer lua print(vim.lua_version, jit and "(LuaJIT)" or "")

  echo 'MzScheme:'
  PrintVer mzscheme (display (version))

  echo 'Perl:'
  PrintVer perl print $^V

  echo 'Ruby:'
  PrintVer ruby print RUBY_VERSION

  echo 'Tcl:'
  PrintVer tcl puts [info patchlevel]

  echo 'Python 2:'
  PrintVer python print sys.version
endif