home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.2.165 < prev    next >
Encoding:
Internet Message Format  |  2003-12-28  |  2.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.165
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.2.165
  11. Problem:    The configure checks hang when using autoconf 2.57.
  12. Solution:   Invoke AC_PROGRAM_EGREP to set $EGREP. (Aron Griffis)
  13. Files:        src/auto/configure, src/configure.in
  14.  
  15.  
  16. *** ../vim-6.2.164/src/auto/configure    Mon Dec 29 20:27:03 2003
  17. --- src/auto/configure    Wed Dec 24 14:10:23 2003
  18. ***************
  19. *** 943,950 ****
  20.     ac_cv_prog_CPP="$CPP"
  21.   fi
  22.   echo "$ac_t""$CPP" 1>&6
  23. !     echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6
  24. ! echo "configure:944: checking for POSIXized ISC" >&5
  25.   if test -d /etc/conf/kconfig.d &&
  26.     grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  27.   then
  28. --- 943,960 ----
  29.     ac_cv_prog_CPP="$CPP"
  30.   fi
  31.   echo "$ac_t""$CPP" 1>&6
  32. !     cat > conftest.$ac_ext <<EOF
  33. ! #line 948 "configure"
  34. ! #include "confdefs.h"
  35. ! EOF
  36. ! if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  37. !   egrep "" >/dev/null 2>&1; then
  38. !   :
  39. ! fi
  40. ! rm -f conftest*
  41. !  echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6
  42. ! echo "configure:958: checking for POSIXized ISC" >&5
  43.   if test -d /etc/conf/kconfig.d &&
  44.     grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  45.   then
  46. *** ../vim-6.2.164/src/configure.in    Mon Dec 29 20:27:03 2003
  47. --- src/configure.in    Wed Dec 24 14:09:32 2003
  48. ***************
  49. *** 13,18 ****
  50. --- 13,19 ----
  51.   dnl Checks for programs.
  52.   AC_PROG_CC    dnl required by almost everything
  53.   AC_PROG_CPP    dnl required by header file checks
  54. + AC_PROGRAM_EGREP dnl required by AC_EGREP_CPP
  55.   AC_ISC_POSIX    dnl required by AC_C_CROSS
  56.   AC_PROG_AWK    dnl required for "make html" in ../doc
  57.   
  58. *** ../vim-6.2.164/src/version.c    Mon Dec 29 20:49:00 2003
  59. --- src/version.c    Mon Dec 29 20:51:56 2003
  60. ***************
  61. *** 639,640 ****
  62. --- 639,642 ----
  63.   {   /* Add new patch number below this line */
  64. + /**/
  65. +     165,
  66.   /**/
  67.  
  68. -- 
  69. From "know your smileys":
  70.  :.-(    Crying
  71.  
  72.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  73. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  74. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  75.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  76.