summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2006-09-05 15:32:11 +0000
committervimboss <devnull@localhost>2006-09-05 15:32:11 +0000
commit1f377d9cdd3b5ee90e1ed0b8dc1468f44c778bd0 (patch)
tree0972e154195819c28abdaafb5f03da2f522ebe2b
parent2a2260680fb33a4aa95eac1bf64d8e4358bfa83f (diff)
downloadvim-1f377d9cdd3b5ee90e1ed0b8dc1468f44c778bd0.tar.gz
updated for version 7.0-088v7.0.088v7-0-088
-rwxr-xr-xsrc/auto/configure2
-rw-r--r--src/configure.in3
-rw-r--r--src/version.c2
3 files changed, 5 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure
index bb59c158..1e3d8ec5 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -4014,7 +4014,7 @@ rm -f conftest.err conftest.$ac_objext \
LDFLAGS=$ldflags_save
if test $perl_ok = yes; then
if test "X$perlcppflags" != "X"; then
- PERL_CFLAGS="$perlcppflags"
+ PERL_CFLAGS=`echo "$perlcppflags" | sed 's/-pipe //'`
fi
if test "X$perlldflags" != "X"; then
LDFLAGS="$perlldflags $LDFLAGS"
diff --git a/src/configure.in b/src/configure.in
index 8c33500f..3e8bf34b 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -508,7 +508,8 @@ if test "$enable_perlinterp" = "yes"; then
LDFLAGS=$ldflags_save
if test $perl_ok = yes; then
if test "X$perlcppflags" != "X"; then
- PERL_CFLAGS="$perlcppflags"
+ dnl remove -pipe, it confuses cproto
+ PERL_CFLAGS=`echo "$perlcppflags" | sed 's/-pipe //'`
fi
if test "X$perlldflags" != "X"; then
LDFLAGS="$perlldflags $LDFLAGS"
diff --git a/src/version.c b/src/version.c
index 21a904aa..681d5393 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 88,
+/**/
87,
/**/
86,