]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.100
- initial import
[packages/vim.git] / 6.2.100
CommitLineData
717fd8f6
AF
1To: vim-dev@vim.org
2Subject: Patch 6.2.100
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.2.100
11Problem: "make proto" fails when compiled with the Perl interface.
12Solution: Remove "-fno.*" from PERL_CFLAGS, cproto sees it as its option.
13Files: src/auto/configure, src/configure.in
14
15
16*** ../vim-6.2.099/src/auto/configure Sun Jun 1 15:42:39 2003
17--- src/auto/configure Sat Sep 13 21:22:56 2003
18***************
19*** 1487,1494 ****
20 fi
21 vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
22
23! perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
24! -e 'ccflags;perl_inc'`
25 if test "X$perlcppflags" != "X"; then
26 PERL_CFLAGS="$perlcppflags"
27 fi
28--- 1542,1549 ----
29 fi
30 vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
31
32! perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
33! -e 'ccflags;perl_inc' | sed -e 's/-fno[^ ]*//'`
34 if test "X$perlcppflags" != "X"; then
35 PERL_CFLAGS="$perlcppflags"
36 fi
37*** ../vim-6.2.099/src/configure.in Sat May 31 22:30:02 2003
38--- src/configure.in Sat Sep 13 21:22:34 2003
39***************
40*** 266,273 ****
41 fi
42 vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
43 AC_SUBST(vi_cv_perllib)
44 perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
45! -e 'ccflags;perl_inc'`
46 if test "X$perlcppflags" != "X"; then
47 PERL_CFLAGS="$perlcppflags"
48 fi
49--- 291,299 ----
50 fi
51 vi_cv_perllib=`$vi_cv_path_perl -MConfig -e 'print $Config{privlibexp}'`
52 AC_SUBST(vi_cv_perllib)
53+ dnl Remove "-fno-something", it breaks using cproto.
54 perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
55! -e 'ccflags;perl_inc' | sed -e 's/-fno[[^ ]]*//'`
56 if test "X$perlcppflags" != "X"; then
57 PERL_CFLAGS="$perlcppflags"
58 fi
59*** ../vim-6.2.099/src/version.c Sat Sep 27 19:14:49 2003
60--- src/version.c Sat Sep 27 19:16:46 2003
61***************
62*** 632,633 ****
63--- 638,641 ----
64 { /* Add new patch number below this line */
65+ /**/
66+ 100,
67 /**/
68
69--
70To define recursion, we must first define recursion.
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 ///
This page took 0.064501 seconds and 4 git commands to generate.