From 1dfa9a02415022b74470839b1087a1e039ea87eb Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 21 Sep 2010 16:59:21 +0200 Subject: update some package to latest upstream --- package/vim/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'package/vim') diff --git a/package/vim/Makefile b/package/vim/Makefile index d9b2bfdfb..1eabf5555 100644 --- a/package/vim/Makefile +++ b/package/vim/Makefile @@ -4,9 +4,9 @@ include ${TOPDIR}/rules.mk PKG_NAME:= vim -PKG_VERSION:= 7.2 -PKG_RELEASE:= 2 -PKG_MD5SUM:= f0901284b338e448bfd79ccca0041254 +PKG_VERSION:= 7.3 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 5b9510a17074e2b37d8bb38ae09edbf2 PKG_DESCR:= The text editor PKG_SECTION:= editor PKG_DEPENDS:= libncurses @@ -15,7 +15,7 @@ PKG_URL:= http://www.vim.org/ PKG_SITES:= ftp://ftp.vim.org/pub/vim/unix/ DISTFILES= ${PKG_NAME}-${PKG_VERSION}.tar.bz2 -WRKDIST= ${WRKDIR}/vim72 +WRKDIST= ${WRKDIR}/vim73 WRKSRC= ${WRKDIST}/src include ${TOPDIR}/mk/package.mk -- cgit v1.2.3 From f6962d40a36a57bdf9a0249b00e310099519bece Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 21 Sep 2010 16:59:59 +0200 Subject: missing patch for vim --- package/vim/patches/patch-src_auto_configure | 42 ++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 package/vim/patches/patch-src_auto_configure (limited to 'package/vim') diff --git a/package/vim/patches/patch-src_auto_configure b/package/vim/patches/patch-src_auto_configure new file mode 100644 index 000000000..37544f63b --- /dev/null +++ b/package/vim/patches/patch-src_auto_configure @@ -0,0 +1,42 @@ +--- vim73.orig/src/auto/configure 2010-08-13 16:17:15.000000000 +0200 ++++ vim73/src/auto/configure 2010-09-20 02:59:14.017806852 +0200 +@@ -11639,39 +11639,6 @@ _ACEOF + + + +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking uint32_t is 32 bits" >&5 +-$as_echo_n "checking uint32_t is 32 bits... " >&6; } +-if test "$cross_compiling" = yes; then : +- as_fn_error "could not compile program using uint32_t." "$LINENO" 5 +-else +- cat confdefs.h - <<_ACEOF >conftest.$ac_ext +-/* end confdefs.h. */ +- +-#ifdef HAVE_STDINT_H +-# include +-#endif +-#ifdef HAVE_INTTYPES_H +-# include +-#endif +-main() { +- uint32_t nr1 = (uint32_t)-1; +- uint32_t nr2 = (uint32_t)0xffffffffUL; +- if (sizeof(uint32_t) != 4 || nr1 != 0xffffffffUL || nr2 + 1 != 0) exit(1); +- exit(0); +-} +-_ACEOF +-if ac_fn_c_try_run "$LINENO"; then : +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +-$as_echo "ok" >&6; } +-else +- as_fn_error "WRONG! uint32_t not defined correctly." "$LINENO" 5 +-fi +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ +- conftest.$ac_objext conftest.beam conftest.$ac_ext +-fi +- +- +- + bcopy_test_prog=' + #include "confdefs.h" + #ifdef HAVE_STRING_H -- cgit v1.2.3