mirror of
https://github.com/ThomasDickey/ncurses-snapshots.git
synced 2026-01-26 19:09:16 +00:00
snapshot of project "ncurses", label v6_0_20160903
This commit is contained in:
parent
130112bbea
commit
1b5fff35af
16
Ada95/aclocal.m4
vendored
16
Ada95/aclocal.m4
vendored
@ -28,7 +28,7 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey
|
||||
dnl
|
||||
dnl $Id: aclocal.m4,v 1.115 2016/08/27 16:25:56 tom Exp $
|
||||
dnl $Id: aclocal.m4,v 1.116 2016/09/04 00:11:44 tom Exp $
|
||||
dnl Macros used in NCURSES Ada95 auto-configuration script.
|
||||
dnl
|
||||
dnl These macros are maintained separately from NCURSES. The copyright on
|
||||
@ -514,7 +514,7 @@ AC_SUBST(BUILD_EXEEXT)
|
||||
AC_SUBST(BUILD_OBJEXT)
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_CC_ENV_FLAGS version: 5 updated: 2016/08/27 11:24:46
|
||||
dnl CF_CC_ENV_FLAGS version: 6 updated: 2016/08/29 20:57:00
|
||||
dnl ---------------
|
||||
dnl Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content
|
||||
dnl into CC. This will not help with broken scripts that wrap the compiler
|
||||
@ -539,7 +539,17 @@ case "$CC" in
|
||||
# humor him...
|
||||
cf_flags=`echo "$CC" | sed -e 's/^.*[[ ]]\(-[[^ ]]\)/\1/'`
|
||||
CC=`echo "$CC " | sed -e 's/[[ ]]-[[^ ]].*$//' -e 's/[[ ]]*$//'`
|
||||
CF_ADD_CFLAGS($cf_flags)
|
||||
for cf_arg in $cf_flags
|
||||
do
|
||||
case "x$cf_arg" in
|
||||
(x-[[IUDfgOW]]*)
|
||||
CF_ADD_CFLAGS($cf_flags)
|
||||
;;
|
||||
(*)
|
||||
CC="$CC $cf_arg"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
CF_VERBOSE(resulting CC: '$CC')
|
||||
CF_VERBOSE(resulting CFLAGS: '$CFLAGS')
|
||||
CF_VERBOSE(resulting CPPFLAGS: '$CPPFLAGS')
|
||||
|
||||
2252
Ada95/configure
vendored
2252
Ada95/configure
vendored
File diff suppressed because it is too large
Load Diff
14
NEWS
14
NEWS
@ -25,7 +25,7 @@
|
||||
-- sale, use or other dealings in this Software without prior written --
|
||||
-- authorization. --
|
||||
-------------------------------------------------------------------------------
|
||||
-- $Id: NEWS,v 1.2653 2016/08/27 23:27:45 tom Exp $
|
||||
-- $Id: NEWS,v 1.2657 2016/09/04 00:21:14 tom Exp $
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
This is a log of changes that ncurses has gone through since Zeyd started
|
||||
@ -45,6 +45,18 @@ See the AUTHORS file for the corresponding full names.
|
||||
Changes through 1.9.9e did not credit all contributions;
|
||||
it is not possible to add this information.
|
||||
|
||||
20160903
|
||||
+ correct 20100515 change for weak signals versus sigprocmask (report
|
||||
by Rich Coe).
|
||||
+ modify misc/Makefile.in to work around OpenBSD "make" which unlike
|
||||
all other versions of "make" does not recognize continuation lines
|
||||
of comments.
|
||||
+ amend the last change to CF_C_ENV_FLAGS to move only the
|
||||
preprocessor, optimization and warning flags to CPPFLAGS and CFLAGS,
|
||||
leaving the residue in CC. That happens to work for gcc's various
|
||||
"model" options, but may require tuning for other compilers (report
|
||||
by Sven Joachim).
|
||||
|
||||
20160827
|
||||
+ add "v" menu entry to test/ncurses.c to show baudrate and other
|
||||
values.
|
||||
|
||||
16
aclocal.m4
vendored
16
aclocal.m4
vendored
@ -28,7 +28,7 @@ dnl***************************************************************************
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey 1995-on
|
||||
dnl
|
||||
dnl $Id: aclocal.m4,v 1.794 2016/08/27 16:24:33 tom Exp $
|
||||
dnl $Id: aclocal.m4,v 1.795 2016/08/30 00:57:00 tom Exp $
|
||||
dnl Macros used in NCURSES auto-configuration script.
|
||||
dnl
|
||||
dnl These macros are maintained separately from NCURSES. The copyright on
|
||||
@ -711,7 +711,7 @@ AC_SUBST(BUILD_EXEEXT)
|
||||
AC_SUBST(BUILD_OBJEXT)
|
||||
])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_CC_ENV_FLAGS version: 5 updated: 2016/08/27 11:24:46
|
||||
dnl CF_CC_ENV_FLAGS version: 6 updated: 2016/08/29 20:57:00
|
||||
dnl ---------------
|
||||
dnl Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content
|
||||
dnl into CC. This will not help with broken scripts that wrap the compiler
|
||||
@ -736,7 +736,17 @@ case "$CC" in
|
||||
# humor him...
|
||||
cf_flags=`echo "$CC" | sed -e 's/^.*[[ ]]\(-[[^ ]]\)/\1/'`
|
||||
CC=`echo "$CC " | sed -e 's/[[ ]]-[[^ ]].*$//' -e 's/[[ ]]*$//'`
|
||||
CF_ADD_CFLAGS($cf_flags)
|
||||
for cf_arg in $cf_flags
|
||||
do
|
||||
case "x$cf_arg" in
|
||||
(x-[[IUDfgOW]]*)
|
||||
CF_ADD_CFLAGS($cf_flags)
|
||||
;;
|
||||
(*)
|
||||
CC="$CC $cf_arg"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
CF_VERBOSE(resulting CC: '$CC')
|
||||
CF_VERBOSE(resulting CFLAGS: '$CFLAGS')
|
||||
CF_VERBOSE(resulting CPPFLAGS: '$CPPFLAGS')
|
||||
|
||||
4
dist.mk
4
dist.mk
@ -25,7 +25,7 @@
|
||||
# use or other dealings in this Software without prior written #
|
||||
# authorization. #
|
||||
##############################################################################
|
||||
# $Id: dist.mk,v 1.1121 2016/08/27 14:24:23 tom Exp $
|
||||
# $Id: dist.mk,v 1.1122 2016/09/03 14:06:47 tom Exp $
|
||||
# Makefile for creating ncurses distributions.
|
||||
#
|
||||
# This only needs to be used directly as a makefile by developers, but
|
||||
@ -37,7 +37,7 @@ SHELL = /bin/sh
|
||||
# These define the major/minor/patch versions of ncurses.
|
||||
NCURSES_MAJOR = 6
|
||||
NCURSES_MINOR = 0
|
||||
NCURSES_PATCH = 20160827
|
||||
NCURSES_PATCH = 20160903
|
||||
|
||||
# We don't append the patch to the version, since this only applies to releases
|
||||
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# $Id: Makefile.in,v 1.65 2015/11/01 20:01:20 tom Exp $
|
||||
# $Id: Makefile.in,v 1.66 2016/09/03 00:07:54 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright (c) 1998-2014,2015 Free Software Foundation, Inc. #
|
||||
# Copyright (c) 1998-2015,2016 Free Software Foundation, Inc. #
|
||||
# #
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a #
|
||||
# copy of this software and associated documentation files (the "Software"), #
|
||||
@ -115,17 +115,17 @@ install.libs :: $(DESTDIR)$(bindir) ncurses-config
|
||||
# directory during this rule:
|
||||
@MAKE_PC_FILES@install.libs :: pc-files
|
||||
@MAKE_PC_FILES@ @$(SHELL) -c 'case "x$(DESTDIR)$(PKG_CONFIG_LIBDIR)" in \
|
||||
(x/*) \
|
||||
mkdir -p $(DESTDIR)$(PKG_CONFIG_LIBDIR); \
|
||||
for name in *.pc; do \
|
||||
echo installing $$name; \
|
||||
$(INSTALL_DATA) $$name $(DESTDIR)$(PKG_CONFIG_LIBDIR)/$$name; \
|
||||
done \
|
||||
;; \
|
||||
(*) \
|
||||
echo "...skip actual install: no destination was given" ; \
|
||||
;; \
|
||||
esac'
|
||||
@MAKE_PC_FILES@ (x/*) \
|
||||
@MAKE_PC_FILES@ mkdir -p $(DESTDIR)$(PKG_CONFIG_LIBDIR); \
|
||||
@MAKE_PC_FILES@ for name in *.pc; do \
|
||||
@MAKE_PC_FILES@ echo installing $$name; \
|
||||
@MAKE_PC_FILES@ $(INSTALL_DATA) $$name $(DESTDIR)$(PKG_CONFIG_LIBDIR)/$$name; \
|
||||
@MAKE_PC_FILES@ done \
|
||||
@MAKE_PC_FILES@ ;; \
|
||||
@MAKE_PC_FILES@ (*) \
|
||||
@MAKE_PC_FILES@ echo "...skip actual install: no destination was given" ; \
|
||||
@MAKE_PC_FILES@ ;; \
|
||||
@MAKE_PC_FILES@ esac'
|
||||
|
||||
@MAKE_PC_FILES@sources :: pc-files
|
||||
@MAKE_PC_FILES@pc-files :
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* Copyright (c) 1998-2012,2013 Free Software Foundation, Inc. *
|
||||
* Copyright (c) 1998-2013,2016 Free Software Foundation, Inc. *
|
||||
* *
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a *
|
||||
* copy of this software and associated documentation files (the *
|
||||
@ -42,7 +42,7 @@
|
||||
|
||||
#include <curses.priv.h>
|
||||
|
||||
MODULE_ID("$Id: lib_data.c,v 1.66 2013/08/24 17:28:24 tom Exp $")
|
||||
MODULE_ID("$Id: lib_data.c,v 1.67 2016/09/04 00:15:54 tom Exp $")
|
||||
|
||||
/*
|
||||
* OS/2's native linker complains if we don't initialize public data when
|
||||
@ -371,7 +371,7 @@ _nc_sigprocmask(int how, const sigset_t * newmask, sigset_t * oldmask)
|
||||
if ((pthread_sigmask))
|
||||
return pthread_sigmask(how, newmask, oldmask);
|
||||
else
|
||||
return sigprocmask(how, newmask, oldmask);
|
||||
return (sigprocmask)(how, newmask, oldmask);
|
||||
}
|
||||
#endif
|
||||
#endif /* USE_PTHREADS */
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
ncurses6 (6.0+20160827) unstable; urgency=low
|
||||
ncurses6 (6.0+20160903) unstable; urgency=low
|
||||
|
||||
* latest weekly patch
|
||||
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 27 Aug 2016 10:24:23 -0400
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 03 Sep 2016 10:06:47 -0400
|
||||
|
||||
ncurses6 (5.9-20131005) unstable; urgency=low
|
||||
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
ncurses6 (6.0+20160827) unstable; urgency=low
|
||||
ncurses6 (6.0+20160903) unstable; urgency=low
|
||||
|
||||
* latest weekly patch
|
||||
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 27 Aug 2016 10:24:23 -0400
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 03 Sep 2016 10:06:47 -0400
|
||||
|
||||
ncurses6 (5.9-20131005) unstable; urgency=low
|
||||
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
ncurses6 (6.0+20160827) unstable; urgency=low
|
||||
ncurses6 (6.0+20160903) unstable; urgency=low
|
||||
|
||||
* latest weekly patch
|
||||
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 27 Aug 2016 10:24:23 -0400
|
||||
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 03 Sep 2016 10:06:47 -0400
|
||||
|
||||
ncurses6 (5.9-20120608) unstable; urgency=low
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
; $Id: mingw-ncurses.nsi,v 1.173 2016/08/27 14:24:23 tom Exp $
|
||||
; $Id: mingw-ncurses.nsi,v 1.174 2016/09/03 14:06:47 tom Exp $
|
||||
|
||||
; TODO add examples
|
||||
; TODO bump ABI to 6
|
||||
@ -10,7 +10,7 @@
|
||||
!define VERSION_MAJOR "6"
|
||||
!define VERSION_MINOR "0"
|
||||
!define VERSION_YYYY "2016"
|
||||
!define VERSION_MMDD "0827"
|
||||
!define VERSION_MMDD "0903"
|
||||
!define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}
|
||||
|
||||
!define MY_ABI "5"
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
Summary: shared libraries for terminal handling
|
||||
Name: mingw32-ncurses6
|
||||
Version: 6.0
|
||||
Release: 20160827
|
||||
Release: 20160903
|
||||
License: X11
|
||||
Group: Development/Libraries
|
||||
Source: ncurses-%{version}-%{release}.tgz
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
Summary: shared libraries for terminal handling
|
||||
Name: ncurses6
|
||||
Version: 6.0
|
||||
Release: 20160827
|
||||
Release: 20160903
|
||||
License: X11
|
||||
Group: Development/Libraries
|
||||
Source: ncurses-%{version}-%{release}.tgz
|
||||
|
||||
16
test/aclocal.m4
vendored
16
test/aclocal.m4
vendored
@ -26,7 +26,7 @@ dnl sale, use or other dealings in this Software without prior written *
|
||||
dnl authorization. *
|
||||
dnl***************************************************************************
|
||||
dnl
|
||||
dnl $Id: aclocal.m4,v 1.133 2016/08/27 16:27:51 tom Exp $
|
||||
dnl $Id: aclocal.m4,v 1.134 2016/09/04 00:10:41 tom Exp $
|
||||
dnl
|
||||
dnl Author: Thomas E. Dickey
|
||||
dnl
|
||||
@ -376,7 +376,7 @@ ifelse([$3],,[ :]dnl
|
||||
])dnl
|
||||
])])dnl
|
||||
dnl ---------------------------------------------------------------------------
|
||||
dnl CF_CC_ENV_FLAGS version: 5 updated: 2016/08/27 11:24:46
|
||||
dnl CF_CC_ENV_FLAGS version: 6 updated: 2016/08/29 20:57:00
|
||||
dnl ---------------
|
||||
dnl Check for user's environment-breakage by stuffing CFLAGS/CPPFLAGS content
|
||||
dnl into CC. This will not help with broken scripts that wrap the compiler
|
||||
@ -401,7 +401,17 @@ case "$CC" in
|
||||
# humor him...
|
||||
cf_flags=`echo "$CC" | sed -e 's/^.*[[ ]]\(-[[^ ]]\)/\1/'`
|
||||
CC=`echo "$CC " | sed -e 's/[[ ]]-[[^ ]].*$//' -e 's/[[ ]]*$//'`
|
||||
CF_ADD_CFLAGS($cf_flags)
|
||||
for cf_arg in $cf_flags
|
||||
do
|
||||
case "x$cf_arg" in
|
||||
(x-[[IUDfgOW]]*)
|
||||
CF_ADD_CFLAGS($cf_flags)
|
||||
;;
|
||||
(*)
|
||||
CC="$CC $cf_arg"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
CF_VERBOSE(resulting CC: '$CC')
|
||||
CF_VERBOSE(resulting CFLAGS: '$CFLAGS')
|
||||
CF_VERBOSE(resulting CPPFLAGS: '$CPPFLAGS')
|
||||
|
||||
2894
test/configure
vendored
2894
test/configure
vendored
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user