summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-06-09 08:23:48 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-06-09 08:23:48 +0000
commit0b84a2f8623d594684dd130d3604a76f951c1a55 (patch)
treefb58f9667cb455beced7cc4d85f2e54cbac298d9
parent7048fe41ae80e412790aaf588697df80984df3ce (diff)
vim: added 7.0
-rw-r--r--packages/vim/vim-7.0/.mtn2git_empty0
-rw-r--r--packages/vim/vim-7.0/configure.patch1601
-rw-r--r--packages/vim/vim-tiny_7.0.bb9
-rw-r--r--packages/vim/vim_7.0.bb9
4 files changed, 1619 insertions, 0 deletions
diff --git a/packages/vim/vim-7.0/.mtn2git_empty b/packages/vim/vim-7.0/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/vim/vim-7.0/.mtn2git_empty
diff --git a/packages/vim/vim-7.0/configure.patch b/packages/vim/vim-7.0/configure.patch
new file mode 100644
index 0000000000..52677bcfe8
--- /dev/null
+++ b/packages/vim/vim-7.0/configure.patch
@@ -0,0 +1,1601 @@
+
+#
+# Patch managed by http://www.holgerschurig.de/patcher.html
+#
+
+Index: src/acinclude.m4
+===================================================================
+--- /dev/null 1970-01-01 00:00:00.000000000 +0000
++++ src/acinclude.m4 2006-06-07 18:00:45.249541424 +0200
+@@ -0,0 +1,223 @@
++dnl
++dnl Get the cflags and libraries from the gtk-config script
++dnl
++
++dnl define an autoconf function to check for a specified version of GTK, and
++dnl try to compile/link a GTK program. this gets used once for GTK 1.1.16.
++dnl
++dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
++dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS
++dnl
++AC_DEFUN(AM_PATH_GTK,
++[
++ if test "X$GTK_CONFIG" != "Xno" -o "X$PKG_CONFIG" != "Xno"; then
++ {
++ min_gtk_version=ifelse([$1], ,0.99.7,$1)
++ AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
++ no_gtk=""
++ if (test "X$SKIP_GTK2" != "XYES" -a "X$PKG_CONFIG" != "Xno") \
++ && $PKG_CONFIG --exists gtk+-2.0; then
++ {
++ dnl We should be using PKG_CHECK_MODULES() instead of this hack.
++ dnl But I guess the dependency on pkgconfig.m4 is not wanted or
++ dnl something like that.
++ GTK_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0`
++ GTK_LIBS=`$PKG_CONFIG --libs gtk+-2.0`
++ gtk_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
++ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
++ gtk_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
++ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
++ gtk_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
++ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
++ }
++ elif test "X$GTK_CONFIG" != "Xno"; then
++ {
++ GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags`
++ GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs`
++ gtk_major_version=`$GTK_CONFIG $gtk_config_args --version | \
++ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
++ gtk_minor_version=`$GTK_CONFIG $gtk_config_args --version | \
++ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
++ gtk_micro_version=`$GTK_CONFIG $gtk_config_args --version | \
++ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
++ }
++ else
++ no_gtk=yes
++ fi
++
++ if test "x$enable_gtktest" = "xyes" -a "x$no_gtk" = "x"; then
++ {
++ ac_save_CFLAGS="$CFLAGS"
++ ac_save_LIBS="$LIBS"
++ CFLAGS="$CFLAGS $GTK_CFLAGS"
++ LIBS="$LIBS $GTK_LIBS"
++
++ dnl
++ dnl Now check if the installed GTK is sufficiently new. (Also sanity
++ dnl checks the results of gtk-config to some extent
++ dnl
++ rm -f conf.gtktest
++ AC_TRY_RUN([
++#include <gtk/gtk.h>
++#include <stdio.h>
++
++int
++main ()
++{
++int major, minor, micro;
++char *tmp_version;
++
++system ("touch conf.gtktest");
++
++/* HP/UX 9 (%@#!) writes to sscanf strings */
++tmp_version = g_strdup("$min_gtk_version");
++if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
++ printf("%s, bad version string\n", "$min_gtk_version");
++ exit(1);
++ }
++
++if ((gtk_major_version > major) ||
++ ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
++ ((gtk_major_version == major) && (gtk_minor_version == minor) &&
++ (gtk_micro_version >= micro)))
++{
++ return 0;
++}
++return 1;
++}
++],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
++ CFLAGS="$ac_save_CFLAGS"
++ LIBS="$ac_save_LIBS"
++ }
++ fi
++ if test "x$no_gtk" = x ; then
++ if test "x$enable_gtktest" = "xyes"; then
++ AC_MSG_RESULT(yes; found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
++ else
++ AC_MSG_RESULT(found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
++ fi
++ ifelse([$2], , :, [$2])
++ else
++ {
++ AC_MSG_RESULT(no)
++ GTK_CFLAGS=""
++ GTK_LIBS=""
++ ifelse([$3], , :, [$3])
++ }
++ fi
++ }
++ else
++ GTK_CFLAGS=""
++ GTK_LIBS=""
++ ifelse([$3], , :, [$3])
++ fi
++ AC_SUBST(GTK_CFLAGS)
++ AC_SUBST(GTK_LIBS)
++ rm -f conf.gtktest
++])
++
++dnl ---------------------------------------------------------------------------
++dnl gnome
++dnl ---------------------------------------------------------------------------
++AC_DEFUN([GNOME_INIT_HOOK],
++[
++ AC_SUBST(GNOME_LIBS)
++ AC_SUBST(GNOME_LIBDIR)
++ AC_SUBST(GNOME_INCLUDEDIR)
++
++ AC_ARG_WITH(gnome-includes,
++ [ --with-gnome-includes=DIR Specify location of GNOME headers],
++ [CFLAGS="$CFLAGS -I$withval"]
++ )
++
++ AC_ARG_WITH(gnome-libs,
++ [ --with-gnome-libs=DIR Specify location of GNOME libs],
++ [LDFLAGS="$LDFLAGS -L$withval" gnome_prefix=$withval]
++ )
++
++ AC_ARG_WITH(gnome,
++ [ --with-gnome Specify prefix for GNOME files],
++ if test x$withval = xyes; then
++ want_gnome=yes
++ ifelse([$1], [], :, [$1])
++ else
++ if test "x$withval" = xno; then
++ want_gnome=no
++ else
++ want_gnome=yes
++ LDFLAGS="$LDFLAGS -L$withval/lib"
++ CFLAGS="$CFLAGS -I$withval/include"
++ gnome_prefix=$withval/lib
++ fi
++ fi,
++ want_gnome=yes)
++
++ if test "x$want_gnome" = xyes -a "0$gtk_major_version" -ge 2; then
++ {
++ AC_MSG_CHECKING(for libgnomeui-2.0)
++ if $PKG_CONFIG --exists libgnomeui-2.0; then
++ AC_MSG_RESULT(yes)
++ GNOME_LIBS=`$PKG_CONFIG --libs-only-l libgnomeui-2.0`
++ GNOME_LIBDIR=`$PKG_CONFIG --libs-only-L libgnomeui-2.0`
++ GNOME_INCLUDEDIR=`$PKG_CONFIG --cflags libgnomeui-2.0`
++ $1
++ else
++ AC_MSG_RESULT(not found)
++ if test "x$2" = xfail; then
++ AC_MSG_ERROR(Could not find libgnomeui-2.0 via pkg-config)
++ fi
++ fi
++ }
++ elif test "x$want_gnome" = xyes; then
++ {
++ AC_PATH_PROG(GNOME_CONFIG,gnome-config,no)
++ if test "$GNOME_CONFIG" = "no"; then
++ no_gnome_config="yes"
++ else
++ AC_MSG_CHECKING(if $GNOME_CONFIG works)
++ if $GNOME_CONFIG --libs-only-l gnome >/dev/null 2>&1; then
++ AC_MSG_RESULT(yes)
++ GNOME_LIBS="`$GNOME_CONFIG --libs-only-l gnome gnomeui`"
++ GNOME_LIBDIR="`$GNOME_CONFIG --libs-only-L gnorba gnomeui`"
++ GNOME_INCLUDEDIR="`$GNOME_CONFIG --cflags gnorba gnomeui`"
++ $1
++ else
++ AC_MSG_RESULT(no)
++ no_gnome_config="yes"
++ fi
++ fi
++
++ if test x$exec_prefix = xNONE; then
++ if test x$prefix = xNONE; then
++ gnome_prefix=$ac_default_prefix/lib
++ else
++ gnome_prefix=$prefix/lib
++ fi
++ else
++ gnome_prefix=`eval echo \`echo $libdir\``
++ fi
++
++ if test "$no_gnome_config" = "yes"; then
++ AC_MSG_CHECKING(for gnomeConf.sh file in $gnome_prefix)
++ if test -f $gnome_prefix/gnomeConf.sh; then
++ AC_MSG_RESULT(found)
++ echo "loading gnome configuration from" \
++ "$gnome_prefix/gnomeConf.sh"
++ . $gnome_prefix/gnomeConf.sh
++ $1
++ else
++ AC_MSG_RESULT(not found)
++ if test x$2 = xfail; then
++ AC_MSG_ERROR(Could not find the gnomeConf.sh file that is generated by gnome-libs install)
++ fi
++ fi
++ fi
++ }
++ fi
++])
++
++AC_DEFUN([GNOME_INIT],[
++ GNOME_INIT_HOOK([],fail)
++])
++
++
+Index: src/configure.in
+===================================================================
+--- src.orig/configure.in 2006-05-04 12:46:11.000000000 +0200
++++ src/configure.in 2006-06-07 18:09:16.326845864 +0200
+@@ -4,7 +4,7 @@
+ dnl Should also work with autoconf 2.54 and later.
+
+ AC_INIT(vim.h)
+-AC_CONFIG_HEADER(auto/config.h:config.h.in)
++AC_CONFIG_HEADER(config.h:config.h.in)
+
+ dnl Being able to run configure means the system is Unix (compatible).
+ AC_DEFINE(UNIX)
+@@ -49,10 +49,10 @@
+
+ dnl If configure thinks we are cross compiling, there is probably something
+ dnl wrong with the CC or CFLAGS settings, give an understandable error message
+-if test "$cross_compiling" = yes; then
+- AC_MSG_ERROR([cannot compile a simple program, check CC and CFLAGS
+- (cross compiling doesn't work)])
+-fi
++dnl if test "$cross_compiling" = yes; then
++dnl AC_MSG_ERROR([cannot compile a simple program, check CC and CFLAGS
++dnl (cross compiling doesn't work)])
++dnl fi
+
+ dnl gcc-cpp has the wonderful -MM option to produce nicer dependencies.
+ dnl But gcc 3.1 changed the meaning! See near the end.
+@@ -330,6 +330,17 @@
+ compiledby=""; AC_MSG_RESULT(no))
+ AC_SUBST(compiledby)
+
++dnl on FreeBSD tclsh is a silly script, look for tclsh8.0 or tclsh8.2
++AC_MSG_CHECKING(--with-x argument)
++AC_ARG_WITH(x, [ --with-x= use X],
++[
++if test X"$withval" = Xno; then
++ no_x=yes
++fi
++],
++AC_MSG_RESULT($withval),
++AC_MSG_RESULT(yes))
++
+ AC_MSG_CHECKING(--disable-xsmp argument)
+ AC_ARG_ENABLE(xsmp,
+ [ --disable-xsmp Disable XSMP session management],
+@@ -514,7 +525,7 @@
+ LDFLAGS="$perlldflags $LDFLAGS"
+ fi
+ PERL_LIBS=$perllibs
+- PERL_SRC="auto/if_perl.c if_perlsfio.c"
++ PERL_SRC="if_perl.c if_perlsfio.c"
+ PERL_OBJ="objects/if_perl.o objects/if_perlsfio.o"
+ PERL_PRO="if_perl.pro if_perlsfio.pro"
+ AC_DEFINE(FEAT_PERL)
+@@ -1323,241 +1334,6 @@
+ SKIP_CARBON=YES
+ fi
+
+-dnl
+-dnl Get the cflags and libraries from the gtk-config script
+-dnl
+-
+-dnl define an autoconf function to check for a specified version of GTK, and
+-dnl try to compile/link a GTK program. this gets used once for GTK 1.1.16.
+-dnl
+-dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
+-dnl Test for GTK, and define GTK_CFLAGS, GTK_LIBDIR and GTK_LIBS
+-dnl
+-AC_DEFUN(AM_PATH_GTK,
+-[
+- if test "X$GTK_CONFIG" != "Xno" -o "X$PKG_CONFIG" != "Xno"; then
+- {
+- min_gtk_version=ifelse([$1], ,0.99.7,$1)
+- AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
+- no_gtk=""
+- if (test "X$SKIP_GTK2" != "XYES" -a "X$PKG_CONFIG" != "Xno") \
+- && $PKG_CONFIG --exists gtk+-2.0; then
+- {
+- dnl We should be using PKG_CHECK_MODULES() instead of this hack.
+- dnl But I guess the dependency on pkgconfig.m4 is not wanted or
+- dnl something like that.
+- GTK_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0`
+- GTK_LIBDIR=`$PKG_CONFIG --libs-only-L gtk+-2.0`
+- GTK_LIBS=`$PKG_CONFIG --libs gtk+-2.0`
+- gtk_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
+- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
+- gtk_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
+- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
+- gtk_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \
+- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
+- }
+- elif test "X$GTK_CONFIG" != "Xno"; then
+- {
+- GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags`
+- GTK_LIBDIR=
+- GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs`
+- gtk_major_version=`$GTK_CONFIG $gtk_config_args --version | \
+- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
+- gtk_minor_version=`$GTK_CONFIG $gtk_config_args --version | \
+- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
+- gtk_micro_version=`$GTK_CONFIG $gtk_config_args --version | \
+- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
+- }
+- else
+- no_gtk=yes
+- fi
+-
+- if test "x$enable_gtktest" = "xyes" -a "x$no_gtk" = "x"; then
+- {
+- ac_save_CFLAGS="$CFLAGS"
+- ac_save_LIBS="$LIBS"
+- CFLAGS="$CFLAGS $GTK_CFLAGS"
+- LIBS="$LIBS $GTK_LIBS"
+-
+- dnl
+- dnl Now check if the installed GTK is sufficiently new. (Also sanity
+- dnl checks the results of gtk-config to some extent
+- dnl
+- rm -f conf.gtktest
+- AC_TRY_RUN([
+-#include <gtk/gtk.h>
+-#include <stdio.h>
+-
+-int
+-main ()
+-{
+-int major, minor, micro;
+-char *tmp_version;
+-
+-system ("touch conf.gtktest");
+-
+-/* HP/UX 9 (%@#!) writes to sscanf strings */
+-tmp_version = g_strdup("$min_gtk_version");
+-if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
+- printf("%s, bad version string\n", "$min_gtk_version");
+- exit(1);
+- }
+-
+-if ((gtk_major_version > major) ||
+- ((gtk_major_version == major) && (gtk_minor_version > minor)) ||
+- ((gtk_major_version == major) && (gtk_minor_version == minor) &&
+- (gtk_micro_version >= micro)))
+-{
+- return 0;
+-}
+-return 1;
+-}
+-],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+- CFLAGS="$ac_save_CFLAGS"
+- LIBS="$ac_save_LIBS"
+- }
+- fi
+- if test "x$no_gtk" = x ; then
+- if test "x$enable_gtktest" = "xyes"; then
+- AC_MSG_RESULT(yes; found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
+- else
+- AC_MSG_RESULT(found version $gtk_major_version.$gtk_minor_version.$gtk_micro_version)
+- fi
+- ifelse([$2], , :, [$2])
+- else
+- {
+- AC_MSG_RESULT(no)
+- GTK_CFLAGS=""
+- GTK_LIBS=""
+- ifelse([$3], , :, [$3])
+- }
+- fi
+- }
+- else
+- GTK_CFLAGS=""
+- GTK_LIBS=""
+- ifelse([$3], , :, [$3])
+- fi
+- AC_SUBST(GTK_CFLAGS)
+- AC_SUBST(GTK_LIBS)
+- rm -f conf.gtktest
+-])
+-
+-dnl ---------------------------------------------------------------------------
+-dnl gnome
+-dnl ---------------------------------------------------------------------------
+-AC_DEFUN([GNOME_INIT_HOOK],
+-[
+- AC_SUBST(GNOME_LIBS)
+- AC_SUBST(GNOME_LIBDIR)
+- AC_SUBST(GNOME_INCLUDEDIR)
+-
+- AC_ARG_WITH(gnome-includes,
+- [ --with-gnome-includes=DIR Specify location of GNOME headers],
+- [CFLAGS="$CFLAGS -I$withval"]
+- )
+-
+- AC_ARG_WITH(gnome-libs,
+- [ --with-gnome-libs=DIR Specify location of GNOME libs],
+- [LDFLAGS="$LDFLAGS -L$withval" gnome_prefix=$withval]
+- )
+-
+- AC_ARG_WITH(gnome,
+- [ --with-gnome Specify prefix for GNOME files],
+- if test x$withval = xyes; then
+- want_gnome=yes
+- ifelse([$1], [], :, [$1])
+- else
+- if test "x$withval" = xno; then
+- want_gnome=no
+- else
+- want_gnome=yes
+- LDFLAGS="$LDFLAGS -L$withval/lib"
+- CFLAGS="$CFLAGS -I$withval/include"
+- gnome_prefix=$withval/lib
+- fi
+- fi,
+- want_gnome=yes)
+-
+- if test "x$want_gnome" = xyes -a "0$gtk_major_version" -ge 2; then
+- {
+- AC_MSG_CHECKING(for libgnomeui-2.0)
+- if $PKG_CONFIG --exists libgnomeui-2.0; then
+- AC_MSG_RESULT(yes)
+- GNOME_LIBS=`$PKG_CONFIG --libs-only-l libgnomeui-2.0`
+- GNOME_LIBDIR=`$PKG_CONFIG --libs-only-L libgnomeui-2.0`
+- GNOME_INCLUDEDIR=`$PKG_CONFIG --cflags libgnomeui-2.0`
+-
+- dnl On FreeBSD we need -pthread but pkg-config doesn't include it.
+- dnl This might not be the right way but it works for me...
+- AC_MSG_CHECKING(for FreeBSD)
+- if test "`(uname) 2>/dev/null`" = FreeBSD; then
+- AC_MSG_RESULT(yes, adding -pthread)
+- GNOME_INCLUDEDIR="$GNOME_INCLUDEDIR -D_THREAD_SAFE"
+- GNOME_LIBS="$GNOME_LIBS -pthread"
+- else
+- AC_MSG_RESULT(no)
+- fi
+- $1
+- else
+- AC_MSG_RESULT(not found)
+- if test "x$2" = xfail; then
+- AC_MSG_ERROR(Could not find libgnomeui-2.0 via pkg-config)
+- fi
+- fi
+- }
+- elif test "x$want_gnome" = xyes; then
+- {
+- AC_PATH_PROG(GNOME_CONFIG,gnome-config,no)
+- if test "$GNOME_CONFIG" = "no"; then
+- no_gnome_config="yes"
+- else
+- AC_MSG_CHECKING(if $GNOME_CONFIG works)
+- if $GNOME_CONFIG --libs-only-l gnome >/dev/null 2>&1; then
+- AC_MSG_RESULT(yes)
+- GNOME_LIBS="`$GNOME_CONFIG --libs-only-l gnome gnomeui`"
+- GNOME_LIBDIR="`$GNOME_CONFIG --libs-only-L gnorba gnomeui`"
+- GNOME_INCLUDEDIR="`$GNOME_CONFIG --cflags gnorba gnomeui`"
+- $1
+- else
+- AC_MSG_RESULT(no)
+- no_gnome_config="yes"
+- fi
+- fi
+-
+- if test x$exec_prefix = xNONE; then
+- if test x$prefix = xNONE; then
+- gnome_prefix=$ac_default_prefix/lib
+- else
+- gnome_prefix=$prefix/lib
+- fi
+- else
+- gnome_prefix=`eval echo \`echo $libdir\``
+- fi
+-
+- if test "$no_gnome_config" = "yes"; then
+- AC_MSG_CHECKING(for gnomeConf.sh file in $gnome_prefix)
+- if test -f $gnome_prefix/gnomeConf.sh; then
+- AC_MSG_RESULT(found)
+- echo "loading gnome configuration from" \
+- "$gnome_prefix/gnomeConf.sh"
+- . $gnome_prefix/gnomeConf.sh
+- $1
+- else
+- AC_MSG_RESULT(not found)
+- if test x$2 = xfail; then
+- AC_MSG_ERROR(Could not find the gnomeConf.sh file that is generated by gnome-libs install)
+- fi
+- fi
+- fi
+- }
+- fi
+-])
+-
+-AC_DEFUN([GNOME_INIT],[
+- GNOME_INIT_HOOK([],fail)
+-])
+-
+
+ dnl ---------------------------------------------------------------------------
+ dnl Check for GTK. First checks for gtk-config, cause it needs that to get the
+@@ -1977,7 +1753,7 @@
+ AC_TRY_RUN([#include <ctype.h>
+ main() { exit(toupper('A') == 'A' && tolower('z') == 'z'); }],
+ AC_DEFINE(BROKEN_TOUPPER) AC_MSG_RESULT(bad),
+- AC_MSG_RESULT(good), AC_MSG_ERROR(failed to compile test program))
++ AC_MSG_RESULT(good), AC_MSG_WARN(failed to compile test program))
+
+ AC_MSG_CHECKING(whether __DATE__ and __TIME__ work)
+ AC_TRY_COMPILE(, [printf("(" __DATE__ " " __TIME__ ")");],
+@@ -2165,7 +1941,7 @@
+ # include <termcap.h>
+ #endif
+ main() {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(0); }],
+- res="OK", res="FAIL", res="FAIL")
++ res="OK", res="FAIL", res="OK")
+ if test "$res" = "OK"; then
+ break
+ fi
+@@ -2197,7 +1973,8 @@
+ {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(!strcmp(s==0 ? "" : s, "1")); }],
+ AC_MSG_RESULT([no -- we are in termcap land]),
+ AC_MSG_RESULT([yes -- terminfo spoken here]); AC_DEFINE(TERMINFO),
+- AC_MSG_ERROR(failed to compile test program.))
++ AC_MSG_WARN(crosscompiling - defaulting to terminfo)
++ AC_DEFINE(TERMINFO))
+
+ if test "x$olibs" != "x$LIBS"; then
+ AC_MSG_CHECKING(what tgetent() returns for an unknown terminal)
+@@ -2209,7 +1986,8 @@
+ {char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist"); exit(res != 0); }],
+ AC_MSG_RESULT(zero); AC_DEFINE(TGETENT_ZERO_ERR, 0),
+ AC_MSG_RESULT(non-zero),
+- AC_MSG_ERROR(failed to compile test program.))
++ AC_MSG_WARN(crosscompiling - defaulting to zero)
++ AC_DEFINE(TGETENT_ZERO_ERR))
+ fi
+
+ AC_MSG_CHECKING(whether termcap.h contains ospeed)
+@@ -2360,7 +2138,7 @@
+ fi
+ ],
+ AC_MSG_RESULT([can't determine - assume ptys are world accessable]),
+- AC_MSG_ERROR(failed to compile test program))
++ AC_MSG_WARN(failed to compile test program))
+ rm -f conftest_grp
+
+ dnl Checks for library functions. ===================================
+@@ -2403,7 +2181,7 @@
+ AC_MSG_RESULT(it is usable),
+ AC_MSG_RESULT(it stinks)
+ AC_DEFINE(BAD_GETCWD),
+- AC_MSG_ERROR(failed to compile test program))
++ AC_MSG_WARN(failed to compile test program))
+
+ dnl Check for functions in one big call, to reduce the size of configure
+ AC_CHECK_FUNCS(bcmp fchdir fchown fseeko fsync ftello getcwd getpseudotty \
+@@ -2427,13 +2205,20 @@
+ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ST_BLKSIZE),
+ AC_MSG_RESULT(no))
+
+-AC_MSG_CHECKING(whether stat() ignores a trailing slash)
++AC_CACHE_CHECK([whether stat() ignores a trailing slash],
++ [ac_cv_func_stat_ignores_trailing_slash],
+ AC_TRY_RUN(
+ [#include <sys/types.h>
+ #include <sys/stat.h>
+ main() {struct stat st; exit(stat("configure/", &st) != 0); }],
+- AC_MSG_RESULT(yes); AC_DEFINE(STAT_IGNORES_SLASH),
+- AC_MSG_RESULT(no), AC_MSG_ERROR(failed to compile test program))
++ ac_cv_func_stat_ignores_trailing_slash=yes,
++ ac_cv_func_stat_ignores_trailing_slash=no,
++ ac_cv_func_stat_ignores_trailing_slash=no
++))
++
++if X"$ac_cv_func_stat_ignores_trailing_slash" = Xyes; then
++ AC_DEFINE(STAT_IGNORES_SLASH)
++fi
+
+ dnl Link with iconv for charset translation, if not found without library.
+ dnl check for iconv() requires including iconv.h
+@@ -2640,9 +2425,9 @@
+ AC_DEFINE(USEBCOPY) AC_MSG_RESULT(bcopy does),
+ AC_TRY_RUN([#define mch_memmove(s,d,l) memcpy(d,s,l) $bcopy_test_prog],
+ AC_DEFINE(USEMEMCPY) AC_MSG_RESULT(memcpy does), AC_MSG_RESULT(no),
+- AC_MSG_ERROR(failed to compile test program)),
+- AC_MSG_ERROR(failed to compile test program)),
+- AC_MSG_ERROR(failed to compile test program))
++ AC_MSG_WARN(failed to compile test program)),
++ AC_MSG_WARN(failed to compile test program)),
++ AC_MSG_WARN(failed to compile test program))
+
+ dnl Check for multibyte locale functions
+ dnl Find out if _Xsetlocale() is supported by libX11.
+@@ -2868,6 +2653,6 @@
+ AC_SUBST(DEPEND_CFLAGS_FILTER)
+
+ dnl write output files
+-AC_OUTPUT(auto/config.mk:config.mk.in)
++AC_OUTPUT(config.mk:config.mk.in)
+
+ dnl vim: set sw=2 tw=78 fo+=l:
+Index: src/proto/if_perl.pro
+===================================================================
+--- src.orig/proto/if_perl.pro 2006-05-07 15:09:36.000000000 +0200
++++ src/proto/if_perl.pro 2006-06-07 18:10:54.164972208 +0200
+@@ -1,4 +1,4 @@
+-/* auto/if_perl.c */
++/* if_perl.c */
+ extern int perl_enabled __ARGS((int verbose));
+ extern void perl_end __ARGS((void));
+ extern void msg_split __ARGS((char_u *s, int attr));
+Index: src/link.sh
+===================================================================
+--- src.orig/link.sh 2005-01-25 20:11:17.000000000 +0100
++++ src/link.sh 2006-06-07 18:10:54.164972208 +0200
+@@ -16,18 +16,18 @@
+ exit_value=0
+
+ #
+-# If auto/link.sed already exists, use it. We assume a previous run of
++# If link.sed already exists, use it. We assume a previous run of
+ # link.sh has found the correct set of libraries.
+ #
+-if test -f auto/link.sed; then
+- echo "link.sh: The file 'auto/link.sed' exists, which is going to be used now."
+- echo "link.sh: If linking fails, try deleting the auto/link.sed file."
+- echo "link.sh: If this fails too, try creating an empty auto/link.sed file."
++if test -f link.sed; then
++ echo "link.sh: The file 'link.sed' exists, which is going to be used now."
++ echo "link.sh: If linking fails, try deleting the link.sed file."
++ echo "link.sh: If this fails too, try creating an empty link.sed file."
+ else
+
+ # If linking works with the full link command, try removing some libraries,
+ # that are known not to be needed on at least one system.
+-# Remove auto/pathdef.c if there is a new link command and compile it again.
++# Remove pathdef.c if there is a new link command and compile it again.
+ # There is a loop to remove libraries that appear several times.
+ #
+ # Notes:
+@@ -38,7 +38,7 @@
+ #
+ cat link.cmd
+ if sh link.cmd; then
+- touch auto/link.sed
++ touch link.sed
+ cp link.cmd linkit.sh
+ for libname in SM ICE nsl dnet dnet_stub inet socket dir elf iconv Xt Xmu Xp Xpm X11 Xdmcp x w dl pthread thread readline m perl crypt attr; do
+ cont=yes
+@@ -46,22 +46,22 @@
+ if grep "l$libname " linkit.sh >/dev/null; then
+ if test ! -f link1.sed; then
+ echo "link.sh: OK, linking works, let's try removing a few libraries."
+- echo "link.sh: See auto/link.log for details."
+- rm -f auto/link.log
++ echo "link.sh: See link.log for details."
++ rm -f link.log
+ fi
+ echo "s/-l$libname *//" >link1.sed
+- sed -f auto/link.sed <link.cmd >linkit2.sh
++ sed -f link.sed <link.cmd >linkit2.sh
+ sed -f link1.sed <linkit2.sh >linkit.sh
+ # keep the last -lm
+ if test $libname != "m" || grep "lm " linkit.sh >/dev/null; then
+ echo "link.sh: Trying to remove the $libname library..."
+- cat linkit.sh >>auto/link.log
++ cat linkit.sh >>link.log
+ # Redirect this link output, it may contain error messages which
+ # should be ignored.
+- if sh linkit.sh >>auto/link.log 2>&1; then
++ if sh linkit.sh >>link.log 2>&1; then
+ echo "link.sh: We don't need the $libname library!"
+- cat link1.sed >>auto/link.sed
+- rm -f auto/pathdef.c
++ cat link1.sed >>link.sed
++ rm -f pathdef.c
+ else
+ echo "link.sh: We DO need the $libname library."
+ cont=
+@@ -77,7 +77,7 @@
+ fi
+ done
+ done
+- if test ! -f auto/pathdef.c; then
++ if test ! -f pathdef.c; then
+ $MAKE objects/pathdef.o
+ fi
+ if test ! -f link1.sed; then
+@@ -92,23 +92,23 @@
+ #
+ # Now do the real linking.
+ #
+-if test -s auto/link.sed; then
+- echo "link.sh: Using auto/link.sed file to remove a few libraries"
+- sed -f auto/link.sed <link.cmd >linkit.sh
++if test -s link.sed; then
++ echo "link.sh: Using link.sed file to remove a few libraries"
++ sed -f link.sed <link.cmd >linkit.sh
+ cat linkit.sh
+ if sh linkit.sh; then
+ exit_value=0
+ echo "link.sh: Linked fine with a few libraries removed"
+ else
+ exit_value=$?
+- echo "link.sh: Linking failed, making auto/link.sed empty and trying again"
+- mv -f auto/link.sed link2.sed
+- touch auto/link.sed
+- rm -f auto/pathdef.c
++ echo "link.sh: Linking failed, making link.sed empty and trying again"
++ mv -f link.sed link2.sed
++ touch link.sed
++ rm -f pathdef.c
+ $MAKE objects/pathdef.o
+ fi
+ fi
+-if test -f auto/link.sed -a ! -s auto/link.sed -a ! -f link3.sed; then
++if test -f link.sed -a ! -s link.sed -a ! -f link3.sed; then
+ echo "link.sh: Using unmodified link command"
+ cat link.cmd
+ if sh link.cmd; then
+@@ -117,8 +117,8 @@
+ else
+ exit_value=$?
+ if test -f link2.sed; then
+- echo "link.sh: Linking doesn't work at all, removing auto/link.sed"
+- rm -f auto/link.sed
++ echo "link.sh: Linking doesn't work at all, removing link.sed"
++ rm -f link.sed
+ fi
+ fi
+ fi
+Index: src/Makefile
+===================================================================
+--- src.orig/Makefile 2006-05-07 15:25:27.000000000 +0200
++++ src/Makefile 2006-06-07 18:17:32.150469216 +0200
+@@ -70,8 +70,8 @@
+ # this in two steps with:
+ # make config
+ # make
+-# The configuration phase creates/overwrites auto/config.h and
+-# auto/config.mk.
++# The configuration phase creates/overwrites config.h and
++# config.mk.
+ # The configure script is created with "make autoconf". It can detect
+ # different features of your system and act accordingly. However, it is
+ # not correct for all systems. Check this:
+@@ -86,14 +86,14 @@
+ # make reconfig
+ #
+ # - If you do not trust the automatic configuration code, then inspect
+-# auto/config.h and auto/config.mk, before starting the actual build
+-# phase. If possible edit this Makefile, rather than auto/config.mk --
++# config.h and config.mk, before starting the actual build
++# phase. If possible edit this Makefile, rather than config.mk --
+ # especially look at the definition of VIMLOC below. Note that the
+-# configure phase overwrites auto/config.mk and auto/config.h again.
++# configure phase overwrites config.mk and config.h again.
+ # - If you get error messages, find out what is wrong and try to correct
+ # it in this Makefile. You may need to do "make reconfig" when you
+ # change anything that configure uses (e.g. switching from an old C
+-# compiler to an ANSI C compiler). Only when auto/configure does
++# compiler to an ANSI C compiler). Only when configure does
+ # something wrong you may need to change one of the other files. If
+ # you find a clean way to fix the problem, consider sending a note to
+ # the author of autoconf (bug-gnu-utils@prep.ai.mit.edu) or Vim
+@@ -110,7 +110,7 @@
+ # If the new Vim seems to be working OK you can install it and the
+ # documentation in the appropriate location. The default is
+ # "/usr/local". Change "prefix" below to change the location.
+-# "auto/pathdef.c" will be compiled again after changing this to make
++# "pathdef.c" will be compiled again after changing this to make
+ # the executable know where the help files are located.
+ # Note that any existing executable is removed or overwritten. If you
+ # want to keep it you will have to make a backup copy first.
+@@ -231,7 +231,7 @@
+ # (I) SINIX-N 5.42 and 5.43 need some EXTRA_LIBS. Also for Reliant-Unix.
+ # (J) If you get undefined symbols, see below for a solution.
+ # (K) See lines to uncomment below for machines with 64 bit pointers.
+-# (L) For Silicon Graphics O2 workstations remove "-lnsl" from auto/config.mk
++# (L) For Silicon Graphics O2 workstations remove "-lnsl" from config.mk
+ # (M) gcc version cygnus-2.0.1 does NOT work (symptom: "dl" deletes two
+ # characters instead of one).
+ # (N) SCO with decmouse.
+@@ -245,7 +245,7 @@
+ # detection, since the configure script runs into an error when it
+ # detects Python (probably because of the bash shell).
+ # (V) See lines to uncomment below.
+-# (X) Need to use the .include "auto/config.mk" line below
++# (X) Need to use the .include "config.mk" line below
+ # (Y) See line with c89 below
+ # (Z) See lines with cc or c89 below
+ # (a) See line with EXTRA_LIBS below.
+@@ -274,20 +274,20 @@
+ #GUI_LIB_LOC = -L/usr/X11R6/lib
+ # }}}
+
+-######################## auto/config.mk ######################## {{{1
+-# At this position auto/config.mk is included. When starting from the
+-# distribution it is almost empty. After running auto/configure it contains
++######################## config.mk ######################## {{{1
++# At this position config.mk is included. When starting from the
++# distribution it is almost empty. After running configure it contains
+ # settings that have been discovered for your system. Settings below this
+-# include override settings in auto/config.mk!
++# include override settings in config.mk!
+
+-# Note: if auto/config.mk is lost somehow (e.g., because configure was
+-# interrupted), create an empty auto/config.mk file and do "make config".
++# Note: if config.mk is lost somehow (e.g., because configure was
++# interrupted), create an empty config.mk file and do "make config".
+
+-# (X) How to include auto/config.mk depends on the version of "make" you have,
++# (X) How to include config.mk depends on the version of "make" you have,
+ # if the current choice doesn't work, try the other one.
+
+-include auto/config.mk
+-#.include "auto/config.mk"
++include config.mk
++#.include "config.mk"
+ CClink = $(CC)
+
+ #}}}
+@@ -367,7 +367,7 @@
+ # Uncomment this when you want to include the Perl interface.
+ # The Perl option sometimes causes problems, because it adds extra flags
+ # to the command line. If you see strange flags during compilation, check in
+-# auto/config.mk where they come from. If it's PERL_CFLAGS, try commenting
++# config.mk where they come from. If it's PERL_CFLAGS, try commenting
+ # the next line.
+ # When you get an error for a missing "perl.exp" file, try creating an emtpy
+ # one: "touch perl.exp".
+@@ -696,12 +696,12 @@
+ # 1. If you don't have an X server: Comment out CONF_OPT_GUI and uncomment
+ # CONF_OPT_X = --without-x.
+ # 2. make config
+-# 3. edit auto/config.mk and remove -ldir and -ltermcap from LIBS. It doesn't
++# 3. edit config.mk and remove -ldir and -ltermcap from LIBS. It doesn't
+ # have -ldir (does config find it somewhere?) and -ltermcap has at
+ # least one problem so I use termlib.o instead. The problem with
+ # termcap is that it segfaults if you call it with the name of
+ # a non-existent terminal type.
+-# 4. edit auto/config.h and add #define USE_TMPNAM
++# 4. edit config.h and add #define USE_TMPNAM
+ # 5. add termlib.o to OBJ
+ # 6. make
+
+@@ -767,7 +767,7 @@
+ #GUI_LIB_LOC = -L/usr/lib64
+ # then
+ # 1) make config
+-# 2) edit auto/config.mk and delete the -lelf entry in the LIBS line
++# 2) edit config.mk and delete the -lelf entry in the LIBS line
+ # 3) make
+ #
+ # or (for 32bit pointers) uncomment the following line
+@@ -775,7 +775,7 @@
+ #GUI_LIB_LOC = -L/usr/lib32
+ # then
+ # 1) make config
+-# 2) edit auto/config.mk, add -n32 to LDFLAGS
++# 2) edit config.mk, add -n32 to LDFLAGS
+ # 3) make
+ ###
+
+@@ -1372,7 +1372,7 @@
+ ops.c \
+ option.c \
+ os_unix.c \
+- auto/pathdef.c \
++ pathdef.c \
+ popupmnu.c \
+ quickfix.c \
+ regexp.c \
+@@ -1394,7 +1394,7 @@
+
+ TAGS_SRC = *.c *.cpp if_perl.xs
+
+-EXTRA_SRC = hangulin.c if_mzsch.c auto/if_perl.c if_perlsfio.c \
++EXTRA_SRC = hangulin.c if_mzsch.c if_perl.c if_perlsfio.c \
+ if_python.c if_tcl.c if_ruby.c if_sniff.c gui_beval.c \
+ workshop.c wsdebug.c integration.c netbeans.c
+
+@@ -1537,14 +1537,14 @@
+
+ # Run configure with all the setting from above.
+ #
+-# Note: auto/config.h doesn't depend on configure, because running configure
+-# doesn't always update auto/config.h. The timestamp isn't changed if the
++# Note: config.h doesn't depend on configure, because running configure
++# doesn't always update config.h. The timestamp isn't changed if the
+ # file contents didn't change (to avoid recompiling everything). Including a
+-# dependency on auto/config.h would cause running configure each time when
+-# auto/config.h isn't updated. The dependency on auto/config.mk should make
++# dependency on config.h would cause running configure each time when
++# config.h isn't updated. The dependency on config.mk should make
+ # sure configure is run when it's needed.
+ #
+-config auto/config.mk: auto/configure config.mk.in config.h.in
++config config.mk: configure config.mk.in config.h.in
+ GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \
+ CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \
+ LDFLAGS="$(LDFLAGS)" $(CONF_SHELL) srcdir="$(srcdir)" \
+@@ -1559,24 +1559,24 @@
+
+ # Use "make reconfig" to rerun configure without cached values.
+ # When config.h changes, most things will be recompiled automatically.
+-# Invoke $(MAKE) to run config with the empty auto/config.mk.
+-# Invoke $(MAKE) to build all with the filled auto/config.mk.
++# Invoke $(MAKE) to run config with the empty config.mk.
++# Invoke $(MAKE) to build all with the filled config.mk.
+ reconfig: scratch clean
+ $(MAKE) -f Makefile config
+ $(MAKE) -f Makefile all
+
+-# Run autoconf to produce auto/configure.
++# Run autoconf to produce configure.
+ # Note:
+ # - DO NOT RUN autoconf MANUALLY! It will overwrite ./configure instead of
+-# producing auto/configure.
++# producing configure.
+ # - autoconf is not run automatically, because a patch usually changes both
+-# configure.in and auto/configure but can't update the timestamps. People
++# configure.in and configure but can't update the timestamps. People
+ # who do not have (the correct version of) autoconf would run into trouble.
+ #
+ # Two tricks are required to make autoconf put its output in the "auto" dir:
+ # - Temporarily move the ./configure script to ./configure.save. Don't
+ # overwrite it, it's probably the result of an aborted autoconf.
+-# - Use sed to change ./config.log to auto/config.log in the configure script.
++# - Use sed to change ./config.log to config.log in the configure script.
+ # Autoconf 2.5x (2.59 at least) produces a few more files that we need to take
+ # care of:
+ # - configure.lineno: has the line numbers replaced with $LINENO. That
+@@ -1587,14 +1587,14 @@
+ autoconf:
+ if test ! -f configure.save; then mv configure