Update to 3.1.20150325

Changelog:
2015-03-25 Jess Thrysoee

   * version-info: 0:53:0

   * all: sync with upstream source

2014-10-30 Jess Thrysoee

   * version-info: 0:52:0

   * all: sync with upstream source

   * configura.ac: Fix posix shell portability issue. Patch by Ryo Onodera.
This commit is contained in:
ryoon 2015-05-07 14:07:49 +00:00
parent 5b6ae06601
commit d318d8c8bf
4 changed files with 10 additions and 35 deletions

View file

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.5 2015/03/19 19:58:28 tron Exp $
# $NetBSD: Makefile,v 1.6 2015/05/07 14:07:49 ryoon Exp $
#
DISTNAME= libedit-20140620-3.1
PKGNAME= editline-3.1.20140620
DISTNAME= libedit-20150325-3.1
PKGNAME= editline-3.1.20150325
CATEGORIES= devel
MASTER_SITES= http://thrysoee.dk/editline/

View file

@ -1,9 +1,8 @@
$NetBSD: distinfo,v 1.6 2015/02/15 02:03:38 rodent Exp $
$NetBSD: distinfo,v 1.7 2015/05/07 14:07:49 ryoon Exp $
SHA1 (libedit-20140620-3.1.tar.gz) = 9c0fc40ac9336af9af0799bcdfd3537a6ad258ff
RMD160 (libedit-20140620-3.1.tar.gz) = 20c51220d0b856c2aa4a15db53e5874676689746
Size (libedit-20140620-3.1.tar.gz) = 483857 bytes
SHA1 (libedit-20150325-3.1.tar.gz) = c5bf50b433ea35f9fc883400cde674556c44af30
RMD160 (libedit-20150325-3.1.tar.gz) = 76fb284ada78215c17d886b2c0ea13c6b3b79329
Size (libedit-20150325-3.1.tar.gz) = 502792 bytes
SHA1 (patch-Makefile.am) = 84afbcecba38a483ceb0447e5c31789d37415369
SHA1 (patch-ab) = fe77807ef3277b52c8cb32c5f32eaac41119ffc7
SHA1 (patch-ac) = 7fd2c5d9f1b5b5569f176761ed7266060d6547cb
SHA1 (patch-src_chartype.h) = 6176d50311312d504a88fb8420c6c60558184ca4
SHA1 (patch-ac) = 666403d5ef03fea39081d7a657aefaa91746f788

View file

@ -1,16 +1,7 @@
$NetBSD: patch-ac,v 1.3 2015/02/15 02:03:38 rodent Exp $
$NetBSD: patch-ac,v 1.4 2015/05/07 14:07:49 ryoon Exp $
--- configure.ac.orig 2014-06-20 18:58:36.000000000 +0000
--- configure.ac.orig 2015-03-25 20:03:58.000000000 +0000
+++ configure.ac
@@ -72,7 +72,7 @@ AC_ARG_ENABLE(
[enable_examples="yes"]
)
-AM_CONDITIONAL(ENABLE_EXAMPLES, [test "$enable_examples" == "yes"])
+AM_CONDITIONAL(ENABLE_EXAMPLES, [test "$enable_examples" = "yes"])
# Checks for header files.
AC_HEADER_DIRENT
@@ -107,6 +107,7 @@ AC_C_CONST
AC_TYPE_PID_T
AC_TYPE_SIZE_T

View file

@ -1,15 +0,0 @@
$NetBSD: patch-src_chartype.h,v 1.1 2015/03/19 23:05:33 rodent Exp $
OpenBSD's wchar_t can store these characters too.
--- src/chartype.h.orig 2012-03-11 09:54:58.000000000 +0000
+++ src/chartype.h
@@ -44,7 +44,7 @@
* supports non-BMP code points without requiring UTF-16, but nothing
* seems to actually advertise this properly, despite Unicode 3.1 having
* been around since 2001... */
-#if !defined(__NetBSD__) && !defined(__sun) && !(defined(__APPLE__) && defined(__MACH__))
+#if !defined(__NetBSD__) && !defined(__sun) && !(defined(__APPLE__) && defined(__MACH__)) && !defined(__OpenBSD__)
#ifndef __STDC_ISO_10646__
/* In many places it is assumed that the first 127 code points are ASCII
* compatible, so ensure wchar_t indeed does ISO 10646 and not some other