comparison src/configure.ac @ 19340:224fb493b72c v8.2.0228

patch 8.2.0228: configure does not recognize gcc version on BSD Commit: https://github.com/vim/vim/commit/348808f7c000a49d435c15db68c814b026f8167d Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 7 20:50:07 2020 +0100 patch 8.2.0228: configure does not recognize gcc version on BSD Problem: Configure does not recognize gcc version on BSD. Solution: Do not use "\+" in the pattern matching the version number. (Ozaki Kiichi, closes #5590)
author Bram Moolenaar <Bram@vim.org>
date Fri, 07 Feb 2020 21:00:04 +0100
parents ae6bcbadf04b
children 22f0dda71638
comparison
equal deleted inserted replaced
19339:815548aab9fd 19340:224fb493b72c
4445 dnl Mac gcc returns "powerpc-apple-darwin8-gcc-4.0.1 (GCC)...", need to allow 4445 dnl Mac gcc returns "powerpc-apple-darwin8-gcc-4.0.1 (GCC)...", need to allow
4446 dnl the number before the version number. 4446 dnl the number before the version number.
4447 DEPEND_CFLAGS_FILTER= 4447 DEPEND_CFLAGS_FILTER=
4448 if test "$GCC" = yes; then 4448 if test "$GCC" = yes; then
4449 AC_MSG_CHECKING(for GCC 3 or later) 4449 AC_MSG_CHECKING(for GCC 3 or later)
4450 gccmajor=`echo "$gccversion" | sed -e 's/^\([[0-9]]\+\)\..*$/\1/g'` 4450 gccmajor=`echo "$gccversion" | sed -e 's/^\([[1-9]][[0-9]]*\)\..*$/\1/g'`
4451 if test "$gccmajor" -gt "2"; then 4451 if test "$gccmajor" -gt "2"; then
4452 DEPEND_CFLAGS_FILTER="| sed 's+-I */+-isystem /+g'" 4452 DEPEND_CFLAGS_FILTER="| sed 's+-I */+-isystem /+g'"
4453 AC_MSG_RESULT(yes) 4453 AC_MSG_RESULT(yes)
4454 else 4454 else
4455 AC_MSG_RESULT(no) 4455 AC_MSG_RESULT(no)