ncurses 5.9 - patch 20141213

+ modify misc/gen-pkgconfig.in to add -I option for include-directory
  when using both --prefix and --disable-overwrite (report by Misty
  De Meo).
+ add configure option --with-pc-suffix to allow minor renaming of
  ".pc" files and the corresponding library.  Use this in the test
  package for ncurses6.
+ modify configure script so that if pkg-config is not installed, it
  is still possible to install ".pc" files (report by Misty De Meo).
+ updated ".sym" files, removing symbols which are marked as "local"
  in the corresponding ".map" files.
+ updated ".map" files to reflect move of comp_captab and comp_hash
  from tic-library to tinfo-library in 20090711 (report by Sven
  Joachim).
This commit is contained in:
Thomas E. Dickey 2014-12-14 02:33:09 +00:00
parent 97bb4678dc
commit 7b077b4a85
24 changed files with 2478 additions and 3181 deletions

View File

@ -25,7 +25,7 @@
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
-------------------------------------------------------------------------------
-- $Id: INSTALL,v 1.179 2014/12/06 13:31:57 tom Exp $
-- $Id: INSTALL,v 1.180 2014/12/14 00:13:57 tom Exp $
---------------------------------------------------------------------
How to install Ncurses/Terminfo on your system
---------------------------------------------------------------------
@ -997,6 +997,11 @@ SUMMARY OF CONFIGURE OPTIONS:
those using termcap, do not use the higher speeds. Your application
(or system, in general) may or may not.
--with-pc-suffix=SUFFIX
If ".pc" files are installed, optionally add a suffix to the files
and corresponding package names to separate unusual configurations.
If no option value is given (or if it is "none"), no suffix is added.
--with-pkg-config=[DIR]
Check for pkg-config, optionally specifying its path.

View File

@ -1,4 +1,4 @@
# $Id: Makefile.in,v 1.38 2014/01/18 20:19:45 tom Exp $
# $Id: Makefile.in,v 1.39 2014/12/13 21:52:19 tom Exp $
##############################################################################
# Copyright (c) 1998-2013,2014 Free Software Foundation, Inc. #
# #
@ -57,6 +57,7 @@ includedir = @includedir@
includesubdir = @includesubdir@
libdir = @libdir@
mandir = @mandir@
pkgdir = @PKG_CONFIG_LIBDIR@
include_dir = ${includedir}${includesubdir}
@ -74,14 +75,15 @@ preinstall :
@ echo ''
@ echo '** Configuration summary for NCURSES $(NCURSES_MAJOR).$(NCURSES_MINOR) $(NCURSES_PATCH):'
@ echo ''
@ echo ' extended funcs: '`test @NCURSES_EXT_FUNCS@ != 0 && echo yes || echo no`
@ echo ' xterm terminfo: '@WHICH_XTERM@
@ echo ' extended funcs: '`test @NCURSES_EXT_FUNCS@ != 0 && echo yes || echo no`
@ echo ' xterm terminfo: '@WHICH_XTERM@
@ echo ''
@ echo ' bin directory: '$(bindir)
@ echo ' lib directory: '$(libdir)
@ echo ' include directory: '$(include_dir)
@ echo ' man directory: '$(mandir)
@MAKE_TERMINFO@ @ echo ' terminfo directory: '$(ticdir)
@ echo ' bin directory: '$(bindir)
@ echo ' lib directory: '$(libdir)
@ echo ' include directory: '$(include_dir)
@ echo ' man directory: '$(mandir)
@MAKE_TERMINFO@ @ echo ' terminfo directory: '$(ticdir)
@MAKE_PC_FILES@ @ echo ' pkg-config directory: '$(pkgdir)
@ echo ''
@ test "$(include_dir)" = "$(prefix)/include" || \
echo '** Include-directory is not in a standard location'

19
NEWS
View File

@ -25,7 +25,7 @@
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
-------------------------------------------------------------------------------
-- $Id: NEWS,v 1.2307 2014/12/06 23:03:44 tom Exp $
-- $Id: NEWS,v 1.2314 2014/12/14 00:42:06 tom Exp $
-------------------------------------------------------------------------------
This is a log of changes that ncurses has gone through since Zeyd started
@ -45,6 +45,21 @@ 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.
20141213
+ modify misc/gen-pkgconfig.in to add -I option for include-directory
when using both --prefix and --disable-overwrite (report by Misty
De Meo).
+ add configure option --with-pc-suffix to allow minor renaming of
".pc" files and the corresponding library. Use this in the test
package for ncurses6.
+ modify configure script so that if pkg-config is not installed, it
is still possible to install ".pc" files (report by Misty De Meo).
+ updated ".sym" files, removing symbols which are marked as "local"
in the corresponding ".map" files.
+ updated ".map" files to reflect move of comp_captab and comp_hash
from tic-library to tinfo-library in 20090711 (report by Sven
Joachim).
20141206
+ updated ".map" files so that each symbol that may be shared across
the different library configurations has the same label. Some
@ -253,7 +268,7 @@ it is not possible to add this information.
overlap with sgr functionality.
+ remove unneeded -i option from adacurses-config; put -a in the -I
option for consistency (patch by Pascal Pignard).
+ update xterm-new to patch #305 -TD
+ update xterm-new terminfo entry to xterm patch #305 -TD
+ change format of test-scripts for Debian Ada95 and ncurses-examples
packages to quilted to work around Debian #700177 (cf: 20130907).
+ build fix for form_driver_w.c as part of ncurses-examples package for

View File

@ -1 +1 @@
5:0:9 5.9 20141206
5:0:9 5.9 20141213

119
aclocal.m4 vendored
View File

@ -28,7 +28,7 @@ dnl***************************************************************************
dnl
dnl Author: Thomas E. Dickey 1995-on
dnl
dnl $Id: aclocal.m4,v 1.719 2014/12/06 13:37:21 tom Exp $
dnl $Id: aclocal.m4,v 1.720 2014/12/13 23:51:50 tom Exp $
dnl Macros used in NCURSES auto-configuration script.
dnl
dnl These macros are maintained separately from NCURSES. The copyright on
@ -1336,7 +1336,7 @@ if test "$cf_disable_rpath_hack" = no ; then
fi
])
dnl ---------------------------------------------------------------------------
dnl CF_ENABLE_PC_FILES version: 9 updated: 2012/08/04 13:59:54
dnl CF_ENABLE_PC_FILES version: 10 updated: 2014/12/13 18:48:46
dnl ------------------
dnl This is the "--enable-pc-files" option, which is available if there is a
dnl pkg-config configuration on the local machine.
@ -1344,20 +1344,26 @@ AC_DEFUN([CF_ENABLE_PC_FILES],[
AC_REQUIRE([CF_PKG_CONFIG])
AC_REQUIRE([CF_WITH_PKG_CONFIG_LIBDIR])
if test "$PKG_CONFIG" != none ; then
if test "x$PKG_CONFIG" != xnone
then
AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
AC_ARG_ENABLE(pc-files,
[ --enable-pc-files generate and install .pc files for pkg-config],
[enable_pc_files=$enableval],
[enable_pc_files=no])
AC_MSG_RESULT($enable_pc_files)
if test "$enable_pc_files" != no
then
CF_PATH_SYNTAX(PKG_CONFIG_LIBDIR)
fi
else
enable_pc_files=no
AC_MSG_CHECKING(if we should install .pc files)
fi
AC_ARG_ENABLE(pc-files,
[ --enable-pc-files generate and install .pc files for pkg-config],
[enable_pc_files=$enableval],
[enable_pc_files=no])
AC_MSG_RESULT($enable_pc_files)
if test "x$enable_pc_files" != xno
then
CF_PATH_SYNTAX(PKG_CONFIG_LIBDIR)
MAKE_PC_FILES=
else
MAKE_PC_FILES="#"
fi
AC_SUBST(MAKE_PC_FILES)
])dnl
dnl ---------------------------------------------------------------------------
dnl CF_ENABLE_RPATH version: 2 updated: 2010/03/27 18:39:42
@ -4841,7 +4847,7 @@ case ".[$]$1" in #(vi
esac
])dnl
dnl ---------------------------------------------------------------------------
dnl CF_PKG_CONFIG version: 7 updated: 2011/04/29 04:53:22
dnl CF_PKG_CONFIG version: 8 updated: 2014/12/13 18:48:46
dnl -------------
dnl Check for the package-config program, unless disabled by command-line.
AC_DEFUN([CF_PKG_CONFIG],
@ -4870,6 +4876,8 @@ esac
test -z "$PKG_CONFIG" && PKG_CONFIG=none
if test "$PKG_CONFIG" != none ; then
CF_PATH_SYNTAX(PKG_CONFIG)
else
AC_MSG_WARN(pkg-config is not installed)
fi
AC_SUBST(PKG_CONFIG)
@ -7154,45 +7162,70 @@ AC_SUBST($3)dnl
])dnl
dnl ---------------------------------------------------------------------------
dnl CF_WITH_PKG_CONFIG_LIBDIR version: 2 updated: 2011/12/10 18:58:47
dnl CF_WITH_PKG_CONFIG_LIBDIR version: 3 updated: 2014/12/13 18:48:46
dnl -------------------------
dnl Allow the choice of the pkg-config library directory to be overridden.
AC_DEFUN([CF_WITH_PKG_CONFIG_LIBDIR],[
if test "$PKG_CONFIG" != none ; then
AC_MSG_CHECKING(for $PKG_CONFIG library directory)
AC_ARG_WITH(pkg-config-libdir,
[ --with-pkg-config-libdir=XXX use given directory for installing pc-files],
[PKG_CONFIG_LIBDIR=$withval],
[PKG_CONFIG_LIBDIR=yes])
AC_MSG_CHECKING(for $PKG_CONFIG library directory)
AC_ARG_WITH(pkg-config-libdir,
[ --with-pkg-config-libdir=XXX use given directory for installing pc-files],
[PKG_CONFIG_LIBDIR=$withval],
[PKG_CONFIG_LIBDIR=yes])
case x$PKG_CONFIG_LIBDIR in #(vi
x/*) #(vi
;;
xyes) #(vi
# look for the library directory using the same prefix as the executable
case x$PKG_CONFIG_LIBDIR in #(vi
x/*) #(vi
;;
xyes) #(vi
# Look for the library directory using the same prefix as the executable
if test "x$PKG_CONFIG" = xnone
then
cf_path=$prefix
else
cf_path=`echo "$PKG_CONFIG" | sed -e 's,/[[^/]]*/[[^/]]*$,,'`
case x`(arch) 2>/dev/null` in #(vi
*64) #(vi
for cf_config in $cf_path/share $cf_path/lib64 $cf_path/lib32 $cf_path/lib
do
if test -d $cf_config/pkgconfig
then
PKG_CONFIG_LIBDIR=$cf_config/pkgconfig
break
fi
done
;;
*)
PKG_CONFIG_LIBDIR=$cf_path/lib/pkgconfig
;;
esac
fi
# If you don't like using the default architecture, you have to specify the
# intended library directory and corresponding compiler/linker options.
#
# This case allows for Debian's 2014-flavor of multiarch, along with the
# most common variations before that point. Some other variants spell the
# directory differently, e.g., "pkg-config", and put it in unusual places.
# pkg-config has always been poorly standardized, which is ironic...
case x`(arch) 2>/dev/null` in #(vi
*64) #(vi
cf_search_path="\
$cf_path/lib/*64-linux-gnu \
$cf_path/share \
$cf_path/lib64 \
$cf_path/lib32 \
$cf_path/lib"
;;
*)
cf_search_path="\
$cf_path/lib/*-linux-gnu \
$cf_path/share \
$cf_path/lib32 \
$cf_path/lib"
;;
esac
AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
fi
CF_VERBOSE(list...)
for cf_config in $cf_search_path
do
CF_VERBOSE(checking $cf_config/pkgconfig)
if test -d $cf_config/pkgconfig
then
PKG_CONFIG_LIBDIR=$cf_config/pkgconfig
AC_MSG_CHECKING(done)
break
fi
done
;;
*)
;;
esac
AC_MSG_RESULT($PKG_CONFIG_LIBDIR)
AC_SUBST(PKG_CONFIG_LIBDIR)
])dnl

4009
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -28,14 +28,14 @@ dnl***************************************************************************
dnl
dnl Author: Thomas E. Dickey 1995-on
dnl
dnl $Id: configure.in,v 1.590 2014/11/15 01:35:36 tom Exp $
dnl $Id: configure.in,v 1.591 2014/12/14 00:10:43 tom Exp $
dnl Process this file with autoconf to produce a configure script.
dnl
dnl See http://invisible-island.net/autoconf/ for additional information.
dnl
dnl ---------------------------------------------------------------------------
AC_PREREQ(2.52.20030208)
AC_REVISION($Revision: 1.590 $)
AC_REVISION($Revision: 1.591 $)
AC_INIT(ncurses/base/lib_initscr.c)
AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
@ -210,6 +210,23 @@ AC_SYS_LONG_FILE_NAMES
CF_PKG_CONFIG
CF_WITH_PKG_CONFIG_LIBDIR
CF_ENABLE_PC_FILES
if test -z "$MAKE_PC_FILES"
then
AC_MSG_CHECKING(for suffix to add to pc-files)
AC_ARG_WITH(pc-suffix,
[ --with-pc-suffix suffixes pc-files],
[case "x$withval" in #(vi
xyes|xno) #(vi
PC_MODULE_SUFFIX=
;;
*) PC_MODULE_SUFFIX="$withval"
;;
esac])
test -z "$PC_MODULE_SUFFIX" && PC_MODULE_SUFFIX=none
AC_MSG_RESULT($PC_MODULE_SUFFIX)
test "$PC_MODULE_SUFFIX" = none && PC_MODULE_SUFFIX=
AC_SUBST(PC_MODULE_SUFFIX)
fi
AC_MSG_CHECKING(if we should assume mixed-case filenames)
AC_ARG_ENABLE(mixed-case,

View File

@ -25,7 +25,7 @@
# use or other dealings in this Software without prior written #
# authorization. #
##############################################################################
# $Id: dist.mk,v 1.1018 2014/12/06 13:32:29 tom Exp $
# $Id: dist.mk,v 1.1019 2014/12/13 14:17:08 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 = 5
NCURSES_MINOR = 9
NCURSES_PATCH = 20141206
NCURSES_PATCH = 20141213
# We don't append the patch to the version, since this only applies to releases
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)

View File

@ -1,5 +1,5 @@
#!@SHELL@
# $Id: gen-pkgconfig.in,v 1.16 2014/01/18 20:21:45 tom Exp $
# $Id: gen-pkgconfig.in,v 1.19 2014/12/14 00:38:23 tom Exp $
##############################################################################
# Copyright (c) 2009-2013,2014 Free Software Foundation, Inc. #
# #
@ -47,6 +47,7 @@ DFT_DEP_SUFFIX=@DFT_DEP_SUFFIX@
TINFO_ARG_SUFFIX=@TINFO_ARG_SUFFIX@
CXX_LIB_SUFFIX=@CXX_LIB_SUFFIX@
suffix=@PC_MODULE_SUFFIX@
prefix="@prefix@"
exec_prefix="@exec_prefix@"
includedir="@includedir@@includesubdir@"
@ -66,7 +67,14 @@ FORM_LIBRARY="${FORM_NAME}@DFT_ARG_SUFFIX@"
if test "$includedir" = "/usr/include" ; then
CFLAGS=
else
CFLAGS="-I\${includedir}"
includetop=`echo "$includedir" | sed -e 's,/include/[^/]*$,/include/,'`
test "$includetop" = "/usr/include" && includetop="$includedir"
if test "x$includetop" != "$includedir"
then
CFLAGS="-I${includetop} -I\${includedir}"
else
CFLAGS="-I\${includedir}"
fi
fi
if test "$libdir" = "/usr/lib" ; then
@ -87,22 +95,22 @@ do
elif test $name = $SUB_LIBRARY ; then
desc="$desc terminal interface library"
elif expr $name : ".*${CXX_NAME}.*" >/dev/null ; then
reqs="$PANEL_LIBRARY, $MENU_LIBRARY, $FORM_LIBRARY, $MAIN_LIBRARY"
reqs="$PANEL_LIBRARY${suffix}, $MENU_LIBRARY${suffix}, $FORM_LIBRARY${suffix}, $MAIN_LIBRARY${suffix}"
desc="$desc add-on library"
else
reqs="$MAIN_LIBRARY"
reqs="$MAIN_LIBRARY${suffix}"
desc="$desc add-on library"
fi
if test $name != $SUB_LIBRARY && test $SUB_LIBRARY != $MAIN_LIBRARY ; then
if test $name != $TINFO_NAME ; then
test -n "$reqs" && reqs="$reqs, "
reqs="${reqs}${SUB_LIBRARY}"
reqs="${reqs}${SUB_LIBRARY}${suffix}"
fi
fi
echo "** creating ${name}.pc"
cat >${name}.pc <<EOF
cat >${name}${suffix}.pc <<EOF
prefix=$show_prefix
exec_prefix=$show_exec_prefix
libdir=$show_libdir
@ -110,7 +118,7 @@ includedir=$show_includedir
major_version=@NCURSES_MAJOR@
version=@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@
Name: $name
Name: ${name}${suffix}
Description: $desc
Version: \${version}
URL: http://invisible-island.net/ncurses

View File

@ -1,8 +1,8 @@
ncurses6 (5.9+20141206) unstable; urgency=low
ncurses6 (5.9+20141213) unstable; urgency=low
* latest weekly patch
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 06 Dec 2014 08:32:29 -0500
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 13 Dec 2014 09:17:09 -0500
ncurses6 (5.9-20131005) unstable; urgency=low

View File

@ -1,8 +1,8 @@
ncurses6 (5.9+20141206) unstable; urgency=low
ncurses6 (5.9+20141213) unstable; urgency=low
* latest weekly patch
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 06 Dec 2014 08:32:29 -0500
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 13 Dec 2014 09:17:09 -0500
ncurses6 (5.9-20131005) unstable; urgency=low

View File

@ -1,8 +1,8 @@
ncurses6 (5.9+20141206) unstable; urgency=low
ncurses6 (5.9+20141213) unstable; urgency=low
* latest weekly patch
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 06 Dec 2014 08:32:29 -0500
-- Thomas E. Dickey <dickey@invisible-island.net> Sat, 13 Dec 2014 09:17:08 -0500
ncurses6 (5.9-20120608) unstable; urgency=low

View File

@ -51,6 +51,7 @@ configure-stamp:
--enable-ext-mouse \
--enable-hard-tabs \
--enable-interop \
--enable-pc-files \
--enable-rpath \
--enable-sp-funcs \
--enable-warnings \
@ -59,6 +60,7 @@ configure-stamp:
--with-chtype=uint32_t \
--with-mmask_t=uint32_t \
--with-develop \
--with-pc-suffix=6 \
--with-shared \
--with-termlib \
--with-ticlib \

View File

@ -1,4 +1,4 @@
; $Id: mingw-ncurses.nsi,v 1.73 2014/12/06 13:32:29 tom Exp $
; $Id: mingw-ncurses.nsi,v 1.74 2014/12/13 14:17:09 tom Exp $
; TODO add examples
; TODO bump ABI to 6
@ -10,7 +10,7 @@
!define VERSION_MAJOR "5"
!define VERSION_MINOR "9"
!define VERSION_YYYY "2014"
!define VERSION_MMDD "1206"
!define VERSION_MMDD "1213"
!define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}
!define MY_ABI "5"

View File

@ -3,7 +3,7 @@
Summary: shared libraries for terminal handling
Name: mingw32-ncurses6
Version: 5.9
Release: 20141206
Release: 20141213
License: X11
Group: Development/Libraries
Source: ncurses-%{version}-%{release}.tgz

View File

@ -1,4 +1,4 @@
# $Id: ncurses.map,v 1.25 2014/11/29 19:59:14 tom Exp $
# $Id: ncurses.map,v 1.26 2014/12/13 18:48:45 tom Exp $
# script for shared library symbol-versioning using ld
#
# This file was generated by ncu-mapsyms
@ -721,8 +721,6 @@ NCURSES_TIC_5.0.19991023 {
_nc_capcmp;
_nc_check_termtype;
_nc_entry_match;
_nc_find_type_entry;
_nc_get_table;
_nc_infotocap;
_nc_read_entry_source;
_nc_reset_input;
@ -768,7 +766,6 @@ NCURSES_TIC_5.5.20051010 {
NCURSES_TIC_5.7.20081102 {
global:
_nc_free_tic;
_nc_get_alias_table;
local:
_nc_comp_captab_leaks;
_nc_leaks_tic;
@ -797,11 +794,13 @@ NCURSES_TINFO_5.0.19991023 {
_nc_err_abort;
_nc_fallback;
_nc_find_entry;
_nc_find_type_entry;
_nc_first_name;
_nc_free_entries;
_nc_free_termtype;
_nc_free_tparm;
_nc_get_hash_table;
_nc_get_table;
_nc_get_tty_mode;
_nc_get_type;
_nc_getenv_num;
@ -1014,6 +1013,7 @@ NCURSES_TINFO_5.6.20061217 {
NCURSES_TINFO_5.7.20081102 {
global:
_nc_free_tinfo;
_nc_get_alias_table;
_nc_get_screensize;
_nc_globals;
_nc_leaks_tinfo;

View File

@ -1,7 +1,7 @@
Summary: shared libraries for terminal handling
Name: ncurses6
Version: 5.9
Release: 20141206
Release: 20141213
License: X11
Group: Development/Libraries
Source: ncurses-%{version}-%{release}.tgz
@ -10,7 +10,8 @@ Source: ncurses-%{version}-%{release}.tgz
%define CC_NORMAL -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wconversion
%define CC_STRICT %{CC_NORMAL} -W -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wnested-externs -Wpointer-arith -Wwrite-strings -ansi -pedantic
%define _prefix /usr/local/ncurses6
%global _prefix /usr/local/ncurses6
%global MY_PKG /usr/lib64/pkgconfig
%define MYDATA /usr/local/ncurses/share/terminfo
%description
@ -45,6 +46,7 @@ RPATH_LIST=../lib:%{_prefix}/lib \
--enable-ext-mouse \
--enable-hard-tabs \
--enable-interop \
--enable-pc-files \
--enable-rpath \
--enable-sp-funcs \
--enable-warnings \
@ -58,6 +60,8 @@ RPATH_LIST=../lib:%{_prefix}/lib \
--with-ticlib \
--with-trace \
--with-cxx-shared \
--with-pc-suffix=6 \
--with-pkg-config-libdir=%{MY_PKG} \
--with-versioned-syms \
--with-xterm-kbs=DEL \
--without-ada \
@ -81,6 +85,7 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/*
%{_includedir}/*
%{_libdir}/*
%{MY_PKG}/*.pc
#%{_datadir}/*
%changelog

View File

@ -1,4 +1,4 @@
# $Id: ncurses.sym,v 1.14 2014/11/28 14:12:48 tom Exp $
# $Id: ncurses.sym,v 1.15 2014/12/13 18:37:12 tom Exp $
# script for shared library symbol-visibility using libtool
#
# This file was generated by ncu-mapsyms
@ -46,194 +46,77 @@ TYPE_IPV4
TYPE_NUMERIC
TYPE_REGEXP
UP
_nc_Calculate_Item_Length_and_Width
_nc_Calculate_Text_Width
_nc_Connect_Items
_nc_Copy_Argument
_nc_Copy_Type
_nc_Default_Field
_nc_Default_FieldType
_nc_Default_Form
_nc_Default_Item
_nc_Default_Menu
_nc_Disconnect_Items
_nc_Draw_Menu
_nc_First_Active_Field
_nc_Free_Argument
_nc_Free_Type
_nc_Internal_Validation
_nc_Link_Items
_nc_Make_Argument
_nc_Match_Next_Character_In_Item_Name
_nc_New_TopRow_and_CurrentItem
_nc_Position_Form_Cursor
_nc_Post_Item
_nc_Refresh_Current_Field
_nc_Set_Current_Field
_nc_Set_Form_Page
_nc_Show_Menu
_nc_Synchronize_Attributes
_nc_Synchronize_Options
_nc_TYPE_ALNUM
_nc_TYPE_ALPHA
_nc_TYPE_ENUM
_nc_TYPE_INTEGER
_nc_TYPE_IPV4
_nc_TYPE_NUMERIC
_nc_TYPE_REGEXP
_nc_Touchline
_nc_Touchpan
_nc_Wnoutrefresh
_nc_access
_nc_add_to_try
_nc_align_termtype
_nc_alloc_entry_leaks
_nc_altcharset_name
_nc_background
_nc_basename
_nc_baudrate
_nc_cap_hash_table
_nc_capalias_table
_nc_capcmp
_nc_captoinfo
_nc_captoinfo_leaks
_nc_check_termtype
_nc_check_termtype2
_nc_comment_end
_nc_comment_start
_nc_comp_captab_leaks
_nc_comp_error_leaks
_nc_comp_scan_leaks
_nc_copy_entry
_nc_copy_termtype
_nc_curr_col
_nc_curr_file_pos
_nc_curr_line
_nc_curr_token
_nc_curscr_of
_nc_dPanel
_nc_dStack
_nc_db_iterator_leaks
_nc_delink_entry
_nc_disable_period
_nc_do_color
_nc_do_color_sp
_nc_doalloc
_nc_entry_match
_nc_env_access
_nc_err_abort
_nc_eventlist_timeout
_nc_expand_try
_nc_expanded
_nc_fallback
_nc_fifo_dump
_nc_find_entry
_nc_find_type_entry
_nc_first_db
_nc_first_name
_nc_flush
_nc_flush_sp
_nc_form_cursor
_nc_format_slks
_nc_free_and_exit
_nc_free_and_exit_sp
_nc_free_entries
_nc_free_entry
_nc_free_termtype
_nc_free_tic
_nc_free_tinfo
_nc_free_tparm
_nc_freeall
_nc_freeall_sp
_nc_freewin
_nc_fty_generic
_nc_generic_fieldtype
_nc_get_alias_table
_nc_get_fieldbuffer
_nc_get_hash_info
_nc_get_hash_table
_nc_get_locale
_nc_get_screensize
_nc_get_source
_nc_get_table
_nc_get_token
_nc_get_tty_mode
_nc_get_tty_mode_sp
_nc_get_type
_nc_getenv_num
_nc_globals
_nc_handle_sigwinch
_nc_has_mouse
_nc_hash_map
_nc_hash_map_sp
_nc_hashed_db
_nc_head
_nc_home_terminfo
_nc_info_hash_table
_nc_infoalias_table
_nc_infotocap
_nc_init_acs
_nc_init_acs_sp
_nc_init_entry
_nc_init_keytry
_nc_init_termtype
_nc_insert_ch
_nc_is_abs_path
_nc_is_dir_path
_nc_is_file_path
_nc_keep_tic_dir
_nc_key_names
_nc_keyname
_nc_keyname_leaks
_nc_keypad
_nc_last_db
_nc_leaks_tic
_nc_leaks_tinfo
_nc_lib_traceatr
_nc_lib_tracedmp
_nc_lib_tracemouse
_nc_linedump
_nc_linedump_sp
_nc_locale_breaks_acs
_nc_make_oldhash
_nc_make_oldhash_sp
_nc_makenew
_nc_makenew_sp
_nc_memmove
_nc_menu_cursor_pos
_nc_merge_entry
_nc_msec_cost
_nc_msec_cost_sp
_nc_mvcur
_nc_mvcur_init
_nc_mvcur_init_sp
_nc_mvcur_resume
_nc_mvcur_resume_sp
_nc_mvcur_sp
_nc_mvcur_wrap
_nc_mvcur_wrap_sp
_nc_my_visbuf
_nc_name_match
_nc_newscr_of
_nc_next_db
_nc_nulls_sent
_nc_oldnums
_nc_optimize_enable
_nc_ospeed
_nc_outc_wrapper
_nc_outch
_nc_outch_sp
_nc_outchars
_nc_outstr
_nc_panelhook
_nc_panelhook_sp
_nc_panic_mode
_nc_parse_entry
_nc_pathlast
_nc_prescreen
_nc_printf_string
_nc_printf_string_sp
_nc_push_token
_nc_putchar
_nc_putchar_sp
_nc_putp
@ -243,90 +126,41 @@ _nc_putp_sp
_nc_read_entry
_nc_read_entry_source
_nc_read_file_entry
_nc_read_termcap
_nc_read_termcap_entry
_nc_read_termtype
_nc_remove_key
_nc_remove_string
_nc_render
_nc_reset_colors
_nc_reset_colors_sp
_nc_reset_input
_nc_resolve_uses
_nc_resolve_uses2
_nc_retrace_attr_t
_nc_retrace_bool
_nc_retrace_char
_nc_retrace_chtype
_nc_retrace_cptr
_nc_retrace_cvoid_ptr
_nc_retrace_field
_nc_retrace_field_ptr
_nc_retrace_field_type
_nc_retrace_form
_nc_retrace_form_hook
_nc_retrace_int
_nc_retrace_int_attr_t
_nc_retrace_item
_nc_retrace_item_opts
_nc_retrace_item_ptr
_nc_retrace_menu
_nc_retrace_menu_hook
_nc_retrace_menu_opts
_nc_retrace_mmask_t
_nc_retrace_panel
_nc_retrace_ptr
_nc_retrace_sp
_nc_retrace_unsigned
_nc_retrace_void_ptr
_nc_retrace_win
_nc_ripoffline
_nc_ripoffline_sp
_nc_rootname
_nc_safe_strcat
_nc_safe_strcpy
_nc_save_str
_nc_screen_chain
_nc_screen_init
_nc_screen_init_sp
_nc_screen_of
_nc_screen_resume
_nc_screen_resume_sp
_nc_screen_wrap
_nc_screen_wrap_sp
_nc_scroll_oldhash
_nc_scroll_oldhash_sp
_nc_scroll_optimize
_nc_scroll_optimize_sp
_nc_scroll_window
_nc_scrolln
_nc_scrolln_sp
_nc_set_buffer
_nc_set_buffer_sp
_nc_set_generic_fieldtype
_nc_set_no_padding
_nc_set_source
_nc_set_tty_mode
_nc_set_tty_mode_sp
_nc_set_type
_nc_set_writedir
_nc_setenv_num
_nc_setup_tinfo
_nc_setupscreen
_nc_setupscreen_sp
_nc_setupterm
_nc_sigaction
_nc_signal_handler
_nc_slk_format
_nc_slk_initialize
_nc_start_line
_nc_stdscr_of
_nc_str_copy
_nc_str_init
_nc_str_null
_nc_strict_bsd
_nc_suppress_warnings
_nc_synchook
_nc_syntax
_nc_syserr_abort
_nc_tail
@ -335,7 +169,6 @@ _nc_tic_dir
_nc_tic_expand
_nc_tic_written
_nc_timed_wait
_nc_tinfo_cmdch
_nc_tinfo_fkeys
_nc_tinfo_fkeysf
_nc_tparm_analyze
@ -343,41 +176,25 @@ _nc_tparm_err
_nc_tputs_trace
_nc_trace_buf
_nc_trace_bufcat
_nc_trace_mmask_t
_nc_trace_tries
_nc_trace_ttymode
_nc_trace_xnames
_nc_tracebits
_nc_tracechar
_nc_tracemouse
_nc_tracing
_nc_trans_string
_nc_trim_sgr0
_nc_unctrl
_nc_ungetch
_nc_unicode_locale
_nc_update_screensize
_nc_user_definable
_nc_varargs
_nc_visbuf
_nc_visbuf2
_nc_visbufn
_nc_viscbuf
_nc_viscbuf2
_nc_vsscanf
_nc_waddch_nosync
_nc_warning
_nc_wgetch
_nc_wrap_entry
_nc_write_entry
_traceattr
_traceattr2
_tracechar
_tracechtype
_tracechtype2
_tracedump
_tracef
_tracemouse
acs_map
addch
addchnstr

View File

@ -1,4 +1,4 @@
# $Id: ncursest.map,v 1.16 2014/12/06 22:59:10 tom Exp $
# $Id: ncursest.map,v 1.17 2014/12/13 18:48:45 tom Exp $
# script for shared library symbol-versioning using ld
#
# This file was generated by ncu-mapsyms
@ -31,17 +31,17 @@
# --without-normal
#
NCURSES_TIC_5.0.19991023 {
NCURSES_TIC_5.7.20081102 {
global:
_nc_capcmp;
_nc_check_termtype;
_nc_check_termtype2;
_nc_disable_period;
_nc_entry_match;
_nc_find_type_entry;
_nc_get_table;
_nc_free_tic;
_nc_infotocap;
_nc_read_entry_source;
_nc_reset_input;
_nc_resolve_uses;
_nc_resolve_uses2;
_nc_set_writedir;
_nc_syntax;
_nc_tic_expand;
@ -49,100 +49,170 @@ NCURSES_TIC_5.0.19991023 {
_nc_trans_string;
_nc_write_entry;
local:
_nc_alloc_entry_leaks;
_nc_captoinfo;
_nc_captoinfo_leaks;
_nc_check_termtype;
_nc_comment_end;
_nc_comment_start;
_nc_comp_captab_leaks;
_nc_comp_scan_leaks;
_nc_copy_entry;
_nc_curr_file_pos;
_nc_curr_token;
_nc_get_token;
_nc_init_entry;
_nc_leaks_tic;
_nc_merge_entry;
_nc_panic_mode;
_nc_parse_entry;
_nc_push_token;
_nc_resolve_uses;
_nc_save_str;
_nc_start_line;
_nc_wrap_entry;
};
NCURSES_TIC_5.1.20000708 {
global:
_nc_disable_period;
} NCURSES_TIC_5.0.19991023;
NCURSES_TIC_5.5.20051010 {
global:
_nc_alloc_entry_leaks;
_nc_captoinfo_leaks;
_nc_check_termtype2;
_nc_comp_scan_leaks;
_nc_resolve_uses2;
} NCURSES_TIC_5.1.20000708;
NCURSES_TIC_5.7.20081102 {
global:
_nc_free_tic;
_nc_get_alias_table;
local:
_nc_comp_captab_leaks;
_nc_leaks_tic;
} NCURSES_TIC_5.5.20051010;
NCURSES_TIC_5.9.current {
global:
_nc_strict_bsd;
} NCURSES_TIC_5.7.20081102;
NCURSES_TINFO_5.0.19991023 {
NCURSES_TINFO_5.7.20081102 {
global:
BC;
PC;
SP;
UP;
_nc_COLS;
_nc_LINES;
_nc_TABSIZE;
_nc__nc_outchars;
_nc_access;
_nc_acs_map;
_nc_add_to_try;
_nc_align_termtype;
_nc_basename;
_nc_boolcodes;
_nc_boolfnames;
_nc_boolnames;
_nc_codes_leaks;
_nc_copy_termtype;
_nc_count_outchars;
_nc_cur_term;
_nc_curr_col;
_nc_curr_line;
_nc_curscr;
_nc_doalloc;
_nc_env_access;
_nc_err_abort;
_nc_eventlist_timeout;
_nc_fallback;
_nc_find_entry;
_nc_find_type_entry;
_nc_first_db;
_nc_first_name;
_nc_flush;
_nc_free_entries;
_nc_free_termtype;
_nc_free_tparm;
_nc_free_tinfo;
_nc_get_alias_table;
_nc_get_hash_table;
_nc_get_locale;
_nc_get_screensize;
_nc_get_source;
_nc_get_table;
_nc_get_tty_mode;
_nc_get_type;
_nc_getenv_num;
_nc_globals;
_nc_handle_sigwinch;
_nc_head;
_nc_home_terminfo;
_nc_init_acs;
_nc_init_pthreads;
_nc_is_abs_path;
_nc_is_dir_path;
_nc_is_file_path;
_nc_keep_tic_dir;
_nc_keypad;
_nc_last_db;
_nc_leaks_tinfo;
_nc_locale_breaks_acs;
_nc_locked_tracef;
_nc_mutex_lock;
_nc_mutex_trylock;
_nc_mutex_unlock;
_nc_name_match;
_nc_names_leaks;
_nc_newscr;
_nc_next_db;
_nc_numcodes;
_nc_numfnames;
_nc_numnames;
_nc_outch;
_nc_pathlast;
_nc_prescreen;
_nc_ptr_Cols;
_nc_ptr_Lines;
_nc_read_entry;
_nc_read_file_entry;
_nc_retrace_attr_t;
_nc_retrace_bool;
_nc_retrace_chtype;
_nc_retrace_cptr;
_nc_retrace_cvoid_ptr;
_nc_retrace_int;
_nc_retrace_ptr;
_nc_retrace_sp;
_nc_retrace_unsigned;
_nc_retrace_void_ptr;
_nc_retrace_win;
_nc_rootname;
_nc_safe_strcat;
_nc_safe_strcpy;
_nc_screen_chain;
_nc_screen_of;
_nc_set_buffer;
_nc_set_no_padding;
_nc_set_source;
_nc_set_tputs_trace;
_nc_set_tty_mode;
_nc_set_type;
_nc_setupterm;
_nc_stdscr;
_nc_str_copy;
_nc_str_init;
_nc_str_null;
_nc_strcodes;
_nc_strfnames;
_nc_strnames;
_nc_suppress_warnings;
_nc_syserr_abort;
_nc_tail;
_nc_tic_dir;
_nc_timed_wait;
_nc_tinfo_fkeys;
_nc_tparm_analyze;
_nc_tparm_err;
_nc_trace_buf;
_nc_tracechar;
_nc_tracing;
_nc_trim_sgr0;
_nc_unicode_locale;
_nc_update_screensize;
_nc_use_tracef;
_nc_user_definable;
_nc_visbuf;
_nc_visbuf2;
_nc_visbufn;
_nc_viscbuf;
_nc_warning;
_tracechar;
_traceattr;
_traceattr2;
_tracechtype;
_tracechtype2;
_tracef;
baudrate;
cbreak;
curs_set;
@ -161,6 +231,7 @@ NCURSES_TINFO_5.0.19991023 {
idcok;
idlok;
intrflush;
key_defined;
keybound;
keyname;
keyok;
@ -183,6 +254,7 @@ NCURSES_TINFO_5.0.19991023 {
resetty;
savetty;
set_curterm;
set_tabsize;
setupterm;
termname;
tgetent;
@ -199,155 +271,38 @@ NCURSES_TINFO_5.0.19991023 {
typeahead;
unctrl;
use_env;
use_extended_names;
wtimeout;
local:
_nc__nc_tputs_trace;
_nc_altcharset_name;
_nc_baudrate;
_nc_delink_entry;
_nc_expand_try;
_nc_free_entry;
_nc_free_tparm;
_nc_hashed_db;
_nc_init_keytry;
_nc_keyname;
_nc_keyname_leaks;
_nc_mutex_init;
_nc_nulls_sent;
_nc_ospeed;
_nc_read_termcap;
_nc_read_termcap_entry;
_nc_read_termtype;
_nc_remove_key;
_nc_remove_string;
_nc_trace_tries;
_nc_tracebits;
};
NCURSES_TINFO_5.1.20000708 {
global:
_nc_align_termtype;
_nc_flush;
_nc_tinfo_fkeys;
_nc_user_definable;
use_extended_names;
} NCURSES_TINFO_5.0.19991023;
NCURSES_TINFO_5.2.20001021 {
global:
_nc_basename;
_nc_env_access;
_nc_safe_strcat;
_nc_safe_strcpy;
_nc_str_copy;
_nc_str_init;
_nc_str_null;
} NCURSES_TINFO_5.1.20000708;
NCURSES_TINFO_5.3.20021019 {
global:
_nc_rootname;
_nc_tparm_err;
_nc_visbufn;
} NCURSES_TINFO_5.2.20001021;
NCURSES_TINFO_5.4.20040208 {
global:
_nc_get_locale;
_nc_locale_breaks_acs;
_nc_pathlast;
_nc_retrace_attr_t;
_nc_retrace_bool;
_nc_retrace_chtype;
_nc_retrace_int;
_nc_retrace_ptr;
_nc_retrace_sp;
_nc_retrace_unsigned;
_nc_retrace_win;
_nc_tparm_analyze;
_nc_trace_bufcat;
_nc_unicode_locale;
_traceattr;
_traceattr2;
_tracechtype;
_tracechtype2;
_tracef;
key_defined;
local:
_nc_altcharset_name;
_nc_trace_ttymode;
} NCURSES_TINFO_5.3.20021019;
NCURSES_TINFO_5.5.20051010 {
global:
_nc_get_source;
_nc_retrace_cptr;
_nc_retrace_cvoid_ptr;
_nc_retrace_void_ptr;
_nc_setupterm;
_nc_trim_sgr0;
local:
_nc_delink_entry;
_nc_free_entry;
} NCURSES_TINFO_5.4.20040208;
NCURSES_TINFO_5.6.20061217 {
global:
_nc_eventlist_timeout;
_nc_first_db;
_nc_handle_sigwinch;
_nc_is_abs_path;
_nc_is_dir_path;
_nc_is_file_path;
_nc_keyname_leaks;
_nc_last_db;
_nc_next_db;
_nc_tgetent_leaks;
_nc_viscbuf;
local:
_nc_hashed_db;
_nc_read_termtype;
_nc_viscbuf2;
} NCURSES_TINFO_5.5.20051010;
NCURSES_TINFO_5.7.20081102 {
global:
_nc_COLS;
_nc_LINES;
_nc_TABSIZE;
_nc__nc_outchars;
_nc_acs_map;
_nc_boolcodes;
_nc_boolfnames;
_nc_boolnames;
_nc_codes_leaks;
_nc_count_outchars;
_nc_cur_term;
_nc_curscr;
_nc_free_tinfo;
_nc_get_screensize;
_nc_globals;
_nc_init_pthreads;
_nc_leaks_tinfo;
_nc_locked_tracef;
_nc_mutex_lock;
_nc_mutex_trylock;
_nc_mutex_unlock;
_nc_names_leaks;
_nc_newscr;
_nc_numcodes;
_nc_numfnames;
_nc_numnames;
_nc_prescreen;
_nc_ptr_Cols;
_nc_ptr_Lines;
_nc_screen_of;
_nc_set_no_padding;
_nc_set_tputs_trace;
_nc_stdscr;
_nc_strcodes;
_nc_strfnames;
_nc_strnames;
_nc_tracechar;
_nc_use_tracef;
set_tabsize;
local:
_nc__nc_tputs_trace;
_nc_keyname;
_nc_mutex_init;
_nc_trace_bufcat;
_nc_trace_tries;
_nc_trace_ttymode;
_nc_tracebits;
_nc_ttytype;
_nc_unctrl;
} NCURSES_TINFO_5.6.20061217;
_nc_viscbuf2;
_tracechar;
};
NCURSES_TINFO_5.8.20110226 {
global:

View File

@ -1,4 +1,4 @@
# $Id: ncursest.sym,v 1.13 2014/11/28 02:54:53 tom Exp $
# $Id: ncursest.sym,v 1.14 2014/12/13 18:44:45 tom Exp $
# script for shared library symbol-visibility using libtool
#
# This file was generated by ncu-mapsyms
@ -45,213 +45,93 @@ UP
_nc_COLORS
_nc_COLOR_PAIRS
_nc_COLS
_nc_Calculate_Item_Length_and_Width
_nc_Calculate_Text_Width
_nc_Connect_Items
_nc_Copy_Argument
_nc_Copy_Type
_nc_Default_Field
_nc_Default_FieldType
_nc_Default_Form
_nc_Default_Item
_nc_Default_Menu
_nc_Disconnect_Items
_nc_Draw_Menu
_nc_ESCDELAY
_nc_First_Active_Field
_nc_Free_Argument
_nc_Free_Type
_nc_Internal_Validation
_nc_LINES
_nc_Link_Items
_nc_Make_Argument
_nc_Match_Next_Character_In_Item_Name
_nc_New_TopRow_and_CurrentItem
_nc_Position_Form_Cursor
_nc_Post_Item
_nc_Refresh_Current_Field
_nc_Set_Current_Field
_nc_Set_Form_Page
_nc_Show_Menu
_nc_Synchronize_Attributes
_nc_Synchronize_Options
_nc_TABSIZE
_nc_TYPE_ALNUM
_nc_TYPE_ALPHA
_nc_TYPE_ENUM
_nc_TYPE_INTEGER
_nc_TYPE_IPV4
_nc_TYPE_NUMERIC
_nc_TYPE_REGEXP
_nc_Touchline
_nc_Touchpan
_nc_Wnoutrefresh
_nc__nc_outchars
_nc__nc_tputs_trace
_nc_access
_nc_acs_map
_nc_add_to_try
_nc_align_termtype
_nc_alloc_entry_leaks
_nc_altcharset_name
_nc_basename
_nc_baudrate
_nc_boolcodes
_nc_boolfnames
_nc_boolnames
_nc_capcmp
_nc_captoinfo
_nc_captoinfo_leaks
_nc_check_termtype
_nc_check_termtype2
_nc_codes_leaks
_nc_comment_end
_nc_comment_start
_nc_comp_captab_leaks
_nc_comp_error_leaks
_nc_comp_scan_leaks
_nc_copy_entry
_nc_copy_termtype
_nc_count_outchars
_nc_cur_term
_nc_curr_col
_nc_curr_file_pos
_nc_curr_line
_nc_curr_token
_nc_curscr
_nc_curscr_of
_nc_dPanel
_nc_dStack
_nc_db_iterator_leaks
_nc_delink_entry
_nc_disable_period
_nc_do_color
_nc_do_color_sp
_nc_doalloc
_nc_entry_match
_nc_env_access
_nc_err_abort
_nc_eventlist_timeout
_nc_expand_try
_nc_expanded
_nc_fallback
_nc_fifo_dump
_nc_find_entry
_nc_find_type_entry
_nc_first_db
_nc_first_name
_nc_flush
_nc_flush_sp
_nc_form_cursor
_nc_format_slks
_nc_free_and_exit
_nc_free_and_exit_sp
_nc_free_entries
_nc_free_entry
_nc_free_termtype
_nc_free_tic
_nc_free_tinfo
_nc_free_tparm
_nc_freeall
_nc_freeall_sp
_nc_freewin
_nc_fty_generic
_nc_generic_fieldtype
_nc_get_alias_table
_nc_get_cur_term
_nc_get_cur_term_sp
_nc_get_fieldbuffer
_nc_get_hash_info
_nc_get_hash_table
_nc_get_locale
_nc_get_screensize
_nc_get_source
_nc_get_table
_nc_get_token
_nc_get_tty_mode
_nc_get_tty_mode_sp
_nc_get_type
_nc_getenv_num
_nc_globals
_nc_handle_sigwinch
_nc_has_mouse
_nc_hash_map
_nc_hash_map_sp
_nc_hashed_db
_nc_head
_nc_home_terminfo
_nc_infotocap
_nc_init_acs
_nc_init_acs_sp
_nc_init_entry
_nc_init_keytry
_nc_init_pthreads
_nc_init_termtype
_nc_insert_ch
_nc_is_abs_path
_nc_is_dir_path
_nc_is_file_path
_nc_keep_tic_dir
_nc_keyname
_nc_keyname_leaks
_nc_keypad
_nc_last_db
_nc_leaks_tic
_nc_leaks_tinfo
_nc_linedump
_nc_linedump_sp
_nc_locale_breaks_acs
_nc_locked_tracef
_nc_make_oldhash
_nc_make_oldhash_sp
_nc_makenew
_nc_makenew_sp
_nc_memmove
_nc_menu_cursor_pos
_nc_merge_entry
_nc_msec_cost
_nc_msec_cost_sp
_nc_mutex_init
_nc_mutex_lock
_nc_mutex_trylock
_nc_mutex_unlock
_nc_mvcur
_nc_mvcur_init
_nc_mvcur_init_sp
_nc_mvcur_resume
_nc_mvcur_resume_sp
_nc_mvcur_sp
_nc_mvcur_wrap
_nc_mvcur_wrap_sp
_nc_my_visbuf
_nc_name_match
_nc_names_leaks
_nc_newscr
_nc_newscr_of
_nc_next_db
_nc_nulls_sent
_nc_numcodes
_nc_numfnames
_nc_numnames
_nc_oldnums
_nc_optimize_enable
_nc_ospeed
_nc_outc_wrapper
_nc_outch
_nc_outch_sp
_nc_panelhook
_nc_panelhook_sp
_nc_panic_mode
_nc_parse_entry
_nc_pathlast
_nc_prescreen
_nc_printf_string
_nc_printf_string_sp
_nc_ptr_Cols
_nc_ptr_Escdelay
_nc_ptr_Lines
_nc_ptr_Tabsize
_nc_push_token
_nc_putchar
_nc_putchar_sp
_nc_putp
@ -261,67 +141,28 @@ _nc_putp_sp
_nc_read_entry
_nc_read_entry_source
_nc_read_file_entry
_nc_read_termcap
_nc_read_termcap_entry
_nc_read_termtype
_nc_remove_key
_nc_remove_string
_nc_render
_nc_reset_colors
_nc_reset_colors_sp
_nc_reset_input
_nc_resolve_uses
_nc_resolve_uses2
_nc_retrace_attr_t
_nc_retrace_bool
_nc_retrace_char
_nc_retrace_chtype
_nc_retrace_cptr
_nc_retrace_cvoid_ptr
_nc_retrace_field
_nc_retrace_field_ptr
_nc_retrace_field_type
_nc_retrace_form
_nc_retrace_form_hook
_nc_retrace_int
_nc_retrace_int_attr_t
_nc_retrace_item
_nc_retrace_item_opts
_nc_retrace_item_ptr
_nc_retrace_menu
_nc_retrace_menu_hook
_nc_retrace_menu_opts
_nc_retrace_mmask_t
_nc_retrace_panel
_nc_retrace_ptr
_nc_retrace_sp
_nc_retrace_unsigned
_nc_retrace_void_ptr
_nc_retrace_win
_nc_ripoffline
_nc_ripoffline_sp
_nc_rootname
_nc_safe_strcat
_nc_safe_strcpy
_nc_save_str
_nc_screen_chain
_nc_screen_init
_nc_screen_init_sp
_nc_screen_of
_nc_screen_resume
_nc_screen_resume_sp
_nc_screen_wrap
_nc_screen_wrap_sp
_nc_scroll_oldhash
_nc_scroll_oldhash_sp
_nc_scroll_optimize
_nc_scroll_optimize_sp
_nc_scroll_window
_nc_scrolln
_nc_scrolln_sp
_nc_set_buffer
_nc_set_buffer_sp
_nc_set_generic_fieldtype
_nc_set_no_padding
_nc_set_source
_nc_set_tputs_trace
@ -329,16 +170,8 @@ _nc_set_tty_mode
_nc_set_tty_mode_sp
_nc_set_type
_nc_set_writedir
_nc_setenv_num
_nc_setup_tinfo
_nc_setupscreen
_nc_setupscreen_sp
_nc_setupterm
_nc_signal_handler
_nc_slk_initialize
_nc_start_line
_nc_stdscr
_nc_stdscr_of
_nc_str_copy
_nc_str_init
_nc_str_null
@ -347,58 +180,36 @@ _nc_strfnames
_nc_strict_bsd
_nc_strnames
_nc_suppress_warnings
_nc_synchook
_nc_syntax
_nc_syserr_abort
_nc_tail
_nc_tgetent_leaks
_nc_tic_dir
_nc_tic_expand
_nc_tic_written
_nc_timed_wait
_nc_tinfo_cmdch
_nc_tinfo_fkeys
_nc_tparm_analyze
_nc_tparm_err
_nc_trace_buf
_nc_trace_bufcat
_nc_trace_mmask_t
_nc_trace_tries
_nc_trace_ttymode
_nc_trace_xnames
_nc_tracebits
_nc_tracechar
_nc_tracemouse
_nc_tracing
_nc_trans_string
_nc_trim_sgr0
_nc_ttytype
_nc_unctrl
_nc_ungetch
_nc_unicode_locale
_nc_update_screensize
_nc_use_tracef
_nc_user_definable
_nc_varargs
_nc_visbuf
_nc_visbuf2
_nc_visbufn
_nc_viscbuf
_nc_viscbuf2
_nc_vsscanf
_nc_waddch_nosync
_nc_warning
_nc_wgetch
_nc_wrap_entry
_nc_write_entry
_traceattr
_traceattr2
_tracechar
_tracechtype
_tracechtype2
_tracedump
_tracef
_tracemouse
addch
addchnstr
addchstr

View File

@ -1,4 +1,4 @@
# $Id: ncursestw.map,v 1.17 2014/12/06 22:59:11 tom Exp $
# $Id: ncursestw.map,v 1.18 2014/12/13 18:48:45 tom Exp $
# script for shared library symbol-versioning using ld
#
# This file was generated by ncu-mapsyms
@ -32,17 +32,17 @@
# --without-normal
#
NCURSES_TIC_5.0.19991023 {
NCURSES_TIC_5.7.20081102 {
global:
_nc_capcmp;
_nc_check_termtype;
_nc_check_termtype2;
_nc_disable_period;
_nc_entry_match;
_nc_find_type_entry;
_nc_get_table;
_nc_free_tic;
_nc_infotocap;
_nc_read_entry_source;
_nc_reset_input;
_nc_resolve_uses;
_nc_resolve_uses2;
_nc_set_writedir;
_nc_syntax;
_nc_tic_expand;
@ -50,100 +50,175 @@ NCURSES_TIC_5.0.19991023 {
_nc_trans_string;
_nc_write_entry;
local:
_nc_alloc_entry_leaks;
_nc_captoinfo;
_nc_captoinfo_leaks;
_nc_check_termtype;
_nc_comment_end;
_nc_comment_start;
_nc_comp_captab_leaks;
_nc_comp_scan_leaks;
_nc_copy_entry;
_nc_curr_file_pos;
_nc_curr_token;
_nc_get_token;
_nc_init_entry;
_nc_leaks_tic;
_nc_merge_entry;
_nc_panic_mode;
_nc_parse_entry;
_nc_push_token;
_nc_resolve_uses;
_nc_save_str;
_nc_start_line;
_nc_wrap_entry;
};
NCURSES_TIC_5.1.20000708 {
global:
_nc_disable_period;
} NCURSES_TIC_5.0.19991023;
NCURSES_TIC_5.5.20051010 {
global:
_nc_alloc_entry_leaks;
_nc_captoinfo_leaks;
_nc_check_termtype2;
_nc_comp_scan_leaks;
_nc_resolve_uses2;
} NCURSES_TIC_5.1.20000708;
NCURSES_TIC_5.7.20081102 {
global:
_nc_free_tic;
_nc_get_alias_table;
local:
_nc_comp_captab_leaks;
_nc_leaks_tic;
} NCURSES_TIC_5.5.20051010;
NCURSES_TIC_5.9.current {
global:
_nc_strict_bsd;
} NCURSES_TIC_5.7.20081102;
NCURSES_TINFO_5.0.19991023 {
NCURSES_TINFO_5.7.20081102 {
global:
BC;
PC;
SP;
UP;
_nc_COLS;
_nc_LINES;
_nc_TABSIZE;
_nc__nc_outchars;
_nc_access;
_nc_acs_map;
_nc_add_to_try;
_nc_align_termtype;
_nc_basename;
_nc_boolcodes;
_nc_boolfnames;
_nc_boolnames;
_nc_codes_leaks;
_nc_copy_termtype;
_nc_count_outchars;
_nc_cur_term;
_nc_curr_col;
_nc_curr_line;
_nc_curscr;
_nc_doalloc;
_nc_env_access;
_nc_err_abort;
_nc_eventlist_timeout;
_nc_fallback;
_nc_find_entry;
_nc_find_type_entry;
_nc_first_db;
_nc_first_name;
_nc_flush;
_nc_free_entries;
_nc_free_termtype;
_nc_free_tparm;
_nc_free_tinfo;
_nc_get_alias_table;
_nc_get_hash_table;
_nc_get_locale;
_nc_get_screensize;
_nc_get_source;
_nc_get_table;
_nc_get_tty_mode;
_nc_get_type;
_nc_getenv_num;
_nc_globals;
_nc_handle_sigwinch;
_nc_head;
_nc_home_terminfo;
_nc_init_acs;
_nc_init_pthreads;
_nc_is_abs_path;
_nc_is_dir_path;
_nc_is_file_path;
_nc_keep_tic_dir;
_nc_keypad;
_nc_last_db;
_nc_leaks_tinfo;
_nc_locale_breaks_acs;
_nc_locked_tracef;
_nc_mutex_lock;
_nc_mutex_trylock;
_nc_mutex_unlock;
_nc_name_match;
_nc_names_leaks;
_nc_newscr;
_nc_next_db;
_nc_numcodes;
_nc_numfnames;
_nc_numnames;
_nc_outch;
_nc_pathlast;
_nc_prescreen;
_nc_ptr_Cols;
_nc_ptr_Lines;
_nc_read_entry;
_nc_read_file_entry;
_nc_retrace_attr_t;
_nc_retrace_bool;
_nc_retrace_chtype;
_nc_retrace_cptr;
_nc_retrace_cvoid_ptr;
_nc_retrace_int;
_nc_retrace_ptr;
_nc_retrace_sp;
_nc_retrace_unsigned;
_nc_retrace_void_ptr;
_nc_retrace_win;
_nc_rootname;
_nc_safe_strcat;
_nc_safe_strcpy;
_nc_screen_chain;
_nc_screen_of;
_nc_set_buffer;
_nc_set_no_padding;
_nc_set_source;
_nc_set_tputs_trace;
_nc_set_tty_mode;
_nc_set_type;
_nc_setupterm;
_nc_stdscr;
_nc_str_copy;
_nc_str_init;
_nc_str_null;
_nc_strcodes;
_nc_strfnames;
_nc_strnames;
_nc_suppress_warnings;
_nc_syserr_abort;
_nc_tail;
_nc_tic_dir;
_nc_timed_wait;
_nc_tinfo_fkeys;
_nc_tparm_analyze;
_nc_tparm_err;
_nc_trace_buf;
_nc_tracechar;
_nc_tracing;
_nc_trim_sgr0;
_nc_unicode_locale;
_nc_update_screensize;
_nc_use_tracef;
_nc_user_definable;
_nc_visbuf;
_nc_visbuf2;
_nc_visbufn;
_nc_viscbuf;
_nc_viswbuf;
_nc_viswbufn;
_nc_viswibuf;
_nc_warning;
_tracechar;
_traceattr;
_traceattr2;
_tracecchar_t;
_tracecchar_t2;
_tracechtype;
_tracechtype2;
_tracef;
baudrate;
cbreak;
curs_set;
@ -162,6 +237,7 @@ NCURSES_TINFO_5.0.19991023 {
idcok;
idlok;
intrflush;
key_defined;
keybound;
keyname;
keyok;
@ -184,6 +260,7 @@ NCURSES_TINFO_5.0.19991023 {
resetty;
savetty;
set_curterm;
set_tabsize;
setupterm;
termname;
tgetent;
@ -200,161 +277,39 @@ NCURSES_TINFO_5.0.19991023 {
typeahead;
unctrl;
use_env;
use_extended_names;
wtimeout;
local:
_nc__nc_tputs_trace;
_nc_altcharset_name;
_nc_baudrate;
_nc_delink_entry;
_nc_expand_try;
_nc_free_entry;
_nc_free_tparm;
_nc_hashed_db;
_nc_init_keytry;
_nc_keyname;
_nc_keyname_leaks;
_nc_mutex_init;
_nc_nulls_sent;
_nc_ospeed;
_nc_read_termcap;
_nc_read_termcap_entry;
_nc_read_termtype;
_nc_remove_key;
_nc_remove_string;
_nc_trace_tries;
_nc_tracebits;
};
NCURSES_TINFO_5.1.20000708 {
global:
_nc_align_termtype;
_nc_flush;
_nc_tinfo_fkeys;
_nc_user_definable;
use_extended_names;
} NCURSES_TINFO_5.0.19991023;
NCURSES_TINFO_5.2.20001021 {
global:
_nc_basename;
_nc_env_access;
_nc_safe_strcat;
_nc_safe_strcpy;
_nc_str_copy;
_nc_str_init;
_nc_str_null;
} NCURSES_TINFO_5.1.20000708;
NCURSES_TINFO_5.3.20021019 {
global:
_nc_rootname;
_nc_tparm_err;
_nc_visbufn;
} NCURSES_TINFO_5.2.20001021;
NCURSES_TINFO_5.4.20040208 {
global:
_nc_get_locale;
_nc_locale_breaks_acs;
_nc_pathlast;
_nc_retrace_attr_t;
_nc_retrace_bool;
_nc_retrace_chtype;
_nc_retrace_int;
_nc_retrace_ptr;
_nc_retrace_sp;
_nc_retrace_unsigned;
_nc_retrace_win;
_nc_tparm_analyze;
_nc_trace_bufcat;
_nc_unicode_locale;
_traceattr;
_traceattr2;
_tracechtype;
_tracechtype2;
_tracef;
key_defined;
local:
_nc_altcharset_name;
_nc_trace_ttymode;
} NCURSES_TINFO_5.3.20021019;
NCURSES_TINFO_5.5.20051010 {
global:
_nc_get_source;
_nc_retrace_cptr;
_nc_retrace_cvoid_ptr;
_nc_retrace_void_ptr;
_nc_setupterm;
_nc_trim_sgr0;
local:
_nc_delink_entry;
_nc_free_entry;
} NCURSES_TINFO_5.4.20040208;
NCURSES_TINFO_5.6.20061217 {
global:
_nc_eventlist_timeout;
_nc_first_db;
_nc_handle_sigwinch;
_nc_is_abs_path;
_nc_is_dir_path;
_nc_is_file_path;
_nc_keyname_leaks;
_nc_last_db;
_nc_next_db;
_nc_tgetent_leaks;
_nc_viscbuf;
local:
_nc_hashed_db;
_nc_read_termtype;
_nc_viscbuf2;
} NCURSES_TINFO_5.5.20051010;
NCURSES_TINFO_5.7.20081102 {
global:
_nc_COLS;
_nc_LINES;
_nc_TABSIZE;
_nc__nc_outchars;
_nc_acs_map;
_nc_boolcodes;
_nc_boolfnames;
_nc_boolnames;
_nc_codes_leaks;
_nc_count_outchars;
_nc_cur_term;
_nc_curscr;
_nc_free_tinfo;
_nc_get_screensize;
_nc_globals;
_nc_init_pthreads;
_nc_leaks_tinfo;
_nc_locked_tracef;
_nc_mutex_lock;
_nc_mutex_trylock;
_nc_mutex_unlock;
_nc_names_leaks;
_nc_newscr;
_nc_numcodes;
_nc_numfnames;
_nc_numnames;
_nc_prescreen;
_nc_ptr_Cols;
_nc_ptr_Lines;
_nc_screen_of;
_nc_set_no_padding;
_nc_set_tputs_trace;
_nc_stdscr;
_nc_strcodes;
_nc_strfnames;
_nc_strnames;
_nc_tracechar;
_nc_use_tracef;
_nc_viswbuf;
_nc_viswbufn;
_nc_viswibuf;
_tracecchar_t;
_tracecchar_t2;
set_tabsize;
local:
_nc__nc_tputs_trace;
_nc_keyname;
_nc_mutex_init;
_nc_trace_bufcat;
_nc_trace_tries;
_nc_trace_ttymode;
_nc_tracebits;
_nc_ttytype;
_nc_unctrl;
_nc_viscbuf2;
_nc_viswbuf2;
} NCURSES_TINFO_5.6.20061217;
_tracechar;
};
NCURSES_TINFO_5.8.20110226 {
global:

View File

@ -1,4 +1,4 @@
# $Id: ncursestw.sym,v 1.12 2014/11/28 02:58:56 tom Exp $
# $Id: ncursestw.sym,v 1.13 2014/12/13 18:48:44 tom Exp $
# script for shared library symbol-visibility using libtool
#
# This file was generated by ncu-mapsyms
@ -46,218 +46,93 @@ UP
_nc_COLORS
_nc_COLOR_PAIRS
_nc_COLS
_nc_Calculate_Item_Length_and_Width
_nc_Calculate_Text_Width
_nc_Connect_Items
_nc_Copy_Argument
_nc_Copy_Type
_nc_Default_Field
_nc_Default_FieldType
_nc_Default_Form
_nc_Default_Item
_nc_Default_Menu
_nc_Disconnect_Items
_nc_Draw_Menu
_nc_ESCDELAY
_nc_First_Active_Field
_nc_Free_Argument
_nc_Free_Type
_nc_Internal_Validation
_nc_LINES
_nc_Link_Items
_nc_Make_Argument
_nc_Match_Next_Character_In_Item_Name
_nc_New_TopRow_and_CurrentItem
_nc_Position_Form_Cursor
_nc_Post_Item
_nc_Refresh_Current_Field
_nc_Set_Current_Field
_nc_Set_Form_Page
_nc_Show_Menu
_nc_Synchronize_Attributes
_nc_Synchronize_Options
_nc_TABSIZE
_nc_TYPE_ALNUM
_nc_TYPE_ALPHA
_nc_TYPE_ENUM
_nc_TYPE_INTEGER
_nc_TYPE_IPV4
_nc_TYPE_NUMERIC
_nc_TYPE_REGEXP
_nc_Touchline
_nc_Touchpan
_nc_Widen_String
_nc_Wnoutrefresh
_nc__nc_outchars
_nc__nc_tputs_trace
_nc_access
_nc_acs_map
_nc_add_to_try
_nc_align_termtype
_nc_alloc_entry_leaks
_nc_altcharset_name
_nc_basename
_nc_baudrate
_nc_boolcodes
_nc_boolfnames
_nc_boolnames
_nc_build_wch
_nc_capcmp
_nc_captoinfo
_nc_captoinfo_leaks
_nc_check_termtype
_nc_check_termtype2
_nc_codes_leaks
_nc_comment_end
_nc_comment_start
_nc_comp_captab_leaks
_nc_comp_error_leaks
_nc_comp_scan_leaks
_nc_copy_entry
_nc_copy_termtype
_nc_count_outchars
_nc_cur_term
_nc_curr_col
_nc_curr_file_pos
_nc_curr_line
_nc_curr_token
_nc_curscr
_nc_curscr_of
_nc_dPanel
_nc_dStack
_nc_db_iterator_leaks
_nc_delink_entry
_nc_disable_period
_nc_do_color
_nc_do_color_sp
_nc_doalloc
_nc_entry_match
_nc_env_access
_nc_err_abort
_nc_eventlist_timeout
_nc_expand_try
_nc_expanded
_nc_fallback
_nc_fifo_dump
_nc_find_entry
_nc_find_type_entry
_nc_first_db
_nc_first_name
_nc_flush
_nc_flush_sp
_nc_form_cursor
_nc_format_slks
_nc_free_and_exit
_nc_free_and_exit_sp
_nc_free_entries
_nc_free_entry
_nc_free_termtype
_nc_free_tic
_nc_free_tinfo
_nc_free_tparm
_nc_freeall
_nc_freeall_sp
_nc_freewin
_nc_fty_generic
_nc_generic_fieldtype
_nc_get_alias_table
_nc_get_cur_term
_nc_get_cur_term_sp
_nc_get_fieldbuffer
_nc_get_hash_info
_nc_get_hash_table
_nc_get_locale
_nc_get_screensize
_nc_get_source
_nc_get_table
_nc_get_token
_nc_get_tty_mode
_nc_get_tty_mode_sp
_nc_get_type
_nc_getenv_num
_nc_globals
_nc_handle_sigwinch
_nc_has_mouse
_nc_hash_map
_nc_hash_map_sp
_nc_hashed_db
_nc_head
_nc_home_terminfo
_nc_infotocap
_nc_init_acs
_nc_init_acs_sp
_nc_init_entry
_nc_init_keytry
_nc_init_pthreads
_nc_init_termtype
_nc_init_wacs
_nc_insert_ch
_nc_insert_wch
_nc_is_abs_path
_nc_is_charable
_nc_is_dir_path
_nc_is_file_path
_nc_keep_tic_dir
_nc_keyname
_nc_keyname_leaks
_nc_keypad
_nc_last_db
_nc_leaks_tic
_nc_leaks_tinfo
_nc_linedump
_nc_linedump_sp
_nc_locale_breaks_acs
_nc_locked_tracef
_nc_make_oldhash
_nc_make_oldhash_sp
_nc_makenew
_nc_makenew_sp
_nc_memmove
_nc_menu_cursor_pos
_nc_merge_entry
_nc_msec_cost
_nc_msec_cost_sp
_nc_mutex_init
_nc_mutex_lock
_nc_mutex_trylock
_nc_mutex_unlock
_nc_mvcur
_nc_mvcur_init
_nc_mvcur_init_sp
_nc_mvcur_resume
_nc_mvcur_resume_sp
_nc_mvcur_sp
_nc_mvcur_wrap
_nc_mvcur_wrap_sp
_nc_my_visbuf
_nc_name_match
_nc_names_leaks
_nc_newscr
_nc_newscr_of
_nc_next_db
_nc_nulls_sent
_nc_numcodes
_nc_numfnames
_nc_numnames
_nc_oldnums
_nc_optimize_enable
_nc_ospeed
_nc_outc_wrapper
_nc_outch
_nc_outch_sp
_nc_panelhook
_nc_panelhook_sp
_nc_panic_mode
_nc_parse_entry
_nc_pathlast
_nc_prescreen
_nc_printf_string
_nc_printf_string_sp
_nc_ptr_Cols
_nc_ptr_Escdelay
_nc_ptr_Lines
_nc_ptr_Tabsize
_nc_push_token
_nc_putchar
_nc_putchar_sp
_nc_putp
@ -267,67 +142,28 @@ _nc_putp_sp
_nc_read_entry
_nc_read_entry_source
_nc_read_file_entry
_nc_read_termcap
_nc_read_termcap_entry
_nc_read_termtype
_nc_remove_key
_nc_remove_string
_nc_render
_nc_reset_colors
_nc_reset_colors_sp
_nc_reset_input
_nc_resolve_uses
_nc_resolve_uses2
_nc_retrace_attr_t
_nc_retrace_bool
_nc_retrace_char
_nc_retrace_chtype
_nc_retrace_cptr
_nc_retrace_cvoid_ptr
_nc_retrace_field
_nc_retrace_field_ptr
_nc_retrace_field_type
_nc_retrace_form
_nc_retrace_form_hook
_nc_retrace_int
_nc_retrace_int_attr_t
_nc_retrace_item
_nc_retrace_item_opts
_nc_retrace_item_ptr
_nc_retrace_menu
_nc_retrace_menu_hook
_nc_retrace_menu_opts
_nc_retrace_mmask_t
_nc_retrace_panel
_nc_retrace_ptr
_nc_retrace_sp
_nc_retrace_unsigned
_nc_retrace_void_ptr
_nc_retrace_win
_nc_ripoffline
_nc_ripoffline_sp
_nc_rootname
_nc_safe_strcat
_nc_safe_strcpy
_nc_save_str
_nc_screen_chain
_nc_screen_init
_nc_screen_init_sp
_nc_screen_of
_nc_screen_resume
_nc_screen_resume_sp
_nc_screen_wrap
_nc_screen_wrap_sp
_nc_scroll_oldhash
_nc_scroll_oldhash_sp
_nc_scroll_optimize
_nc_scroll_optimize_sp
_nc_scroll_window
_nc_scrolln
_nc_scrolln_sp
_nc_set_buffer
_nc_set_buffer_sp
_nc_set_generic_fieldtype
_nc_set_no_padding
_nc_set_source
_nc_set_tputs_trace
@ -335,16 +171,8 @@ _nc_set_tty_mode
_nc_set_tty_mode_sp
_nc_set_type
_nc_set_writedir
_nc_setenv_num
_nc_setup_tinfo
_nc_setupscreen
_nc_setupscreen_sp
_nc_setupterm
_nc_signal_handler
_nc_slk_initialize
_nc_start_line
_nc_stdscr
_nc_stdscr_of
_nc_str_copy
_nc_str_init
_nc_str_null
@ -353,69 +181,43 @@ _nc_strfnames
_nc_strict_bsd
_nc_strnames
_nc_suppress_warnings
_nc_synchook
_nc_syntax
_nc_syserr_abort
_nc_tail
_nc_tgetent_leaks
_nc_tic_dir
_nc_tic_expand
_nc_tic_written
_nc_timed_wait
_nc_tinfo_cmdch
_nc_tinfo_fkeys
_nc_to_char
_nc_to_widechar
_nc_tparm_analyze
_nc_tparm_err
_nc_trace_buf
_nc_trace_bufcat
_nc_trace_mmask_t
_nc_trace_tries
_nc_trace_ttymode
_nc_trace_xnames
_nc_tracebits
_nc_tracechar
_nc_tracemouse
_nc_tracing
_nc_trans_string
_nc_trim_sgr0
_nc_ttytype
_nc_unctrl
_nc_ungetch
_nc_unicode_locale
_nc_update_screensize
_nc_use_tracef
_nc_user_definable
_nc_varargs
_nc_visbuf
_nc_visbuf2
_nc_visbufn
_nc_viscbuf
_nc_viscbuf2
_nc_viswbuf
_nc_viswbuf2
_nc_viswbufn
_nc_viswibuf
_nc_vsscanf
_nc_wacs
_nc_waddch_nosync
_nc_warning
_nc_wchstrlen
_nc_wcrtomb
_nc_wgetch
_nc_wrap_entry
_nc_write_entry
_traceattr
_traceattr2
_tracecchar_t
_tracecchar_t2
_tracechar
_tracechtype
_tracechtype2
_tracedump
_tracef
_tracemouse
add_wch
add_wchnstr
add_wchstr

View File

@ -1,4 +1,4 @@
# $Id: ncursesw.map,v 1.22 2014/12/06 22:59:11 tom Exp $
# $Id: ncursesw.map,v 1.23 2014/12/13 18:48:45 tom Exp $
# script for shared library symbol-versioning using ld
#
# This file was generated by ncu-mapsyms
@ -30,13 +30,12 @@
# --without-normal
#
NCURSES_TIC_5.0.19991023 {
NCURSES_TIC_5.1.20000708 {
global:
_nc_capcmp;
_nc_check_termtype;
_nc_disable_period;
_nc_entry_match;
_nc_find_type_entry;
_nc_get_table;
_nc_infotocap;
_nc_read_entry_source;
_nc_reset_input;
@ -65,11 +64,6 @@ NCURSES_TIC_5.0.19991023 {
_nc_wrap_entry;
};
NCURSES_TIC_5.1.20000708 {
global:
_nc_disable_period;
} NCURSES_TIC_5.0.19991023;
NCURSES_TIC_5.5.20051010 {
global:
_nc_alloc_entry_leaks;
@ -82,7 +76,6 @@ NCURSES_TIC_5.5.20051010 {
NCURSES_TIC_5.7.20081102 {
global:
_nc_free_tic;
_nc_get_alias_table;
local:
_nc_comp_captab_leaks;
_nc_leaks_tic;
@ -93,7 +86,7 @@ NCURSES_TIC_5.9.current {
_nc_strict_bsd;
} NCURSES_TIC_5.7.20081102;
NCURSES_TINFO_5.0.19991023 {
NCURSES_TINFO_5.1.20000708 {
global:
BC;
COLS;
@ -104,6 +97,7 @@ NCURSES_TINFO_5.0.19991023 {
UP;
_nc_access;
_nc_add_to_try;
_nc_align_termtype;
_nc_copy_termtype;
_nc_curr_col;
_nc_curr_line;
@ -111,11 +105,14 @@ NCURSES_TINFO_5.0.19991023 {
_nc_err_abort;
_nc_fallback;
_nc_find_entry;
_nc_find_type_entry;
_nc_first_name;
_nc_flush;
_nc_free_entries;
_nc_free_termtype;
_nc_free_tparm;
_nc_get_hash_table;
_nc_get_table;
_nc_get_tty_mode;
_nc_get_type;
_nc_getenv_num;
@ -139,13 +136,14 @@ NCURSES_TINFO_5.0.19991023 {
_nc_tail;
_nc_tic_dir;
_nc_timed_wait;
_nc_trace_buf;
_nc_tinfo_fkeys;
_nc_tracing;
_nc_update_screensize;
_nc_user_definable;
_nc_utf8_outch;
_nc_visbuf;
_nc_visbuf2;
_nc_warning;
_tracechar;
acs_map;
baudrate;
boolcodes;
@ -212,11 +210,11 @@ NCURSES_TINFO_5.0.19991023 {
tigetstr;
tparm;
tputs;
trace;
ttytype;
typeahead;
unctrl;
use_env;
use_extended_names;
wtimeout;
local:
_nc_baudrate;
@ -232,20 +230,8 @@ NCURSES_TINFO_5.0.19991023 {
_nc_read_termcap_entry;
_nc_remove_key;
_nc_remove_string;
_nc_trace_tries;
_nc_tracebits;
};
NCURSES_TINFO_5.1.20000708 {
global:
_nc_align_termtype;
_nc_flush;
_nc_tinfo_fkeys;
_nc_user_definable;
_nc_utf8_outch;
use_extended_names;
} NCURSES_TINFO_5.0.19991023;
NCURSES_TINFO_5.2.20001021 {
global:
_nc_basename;
@ -281,20 +267,27 @@ NCURSES_TINFO_5.4.20040208 {
_nc_retrace_win;
_nc_tparm_analyze;
_nc_tputs_trace;
_nc_trace_buf;
_nc_trace_bufcat;
_nc_unicode_locale;
_nc_viscbuf;
_nc_viswbuf;
_nc_viswbufn;
_traceattr;
_traceattr2;
_tracecchar_t;
_tracecchar_t2;
_tracechar;
_tracechtype;
_tracechtype2;
_tracef;
key_defined;
trace;
local:
_nc_trace_tries;
_nc_trace_ttymode;
_nc_tracebits;
_nc_viscbuf2;
_nc_viswbuf2;
} NCURSES_TINFO_5.3.20021019;
@ -324,16 +317,15 @@ NCURSES_TINFO_5.6.20061217 {
_nc_last_db;
_nc_next_db;
_nc_tgetent_leaks;
_nc_viscbuf;
local:
_nc_hashed_db;
_nc_read_termtype;
_nc_viscbuf2;
} NCURSES_TINFO_5.5.20051010;
NCURSES_TINFO_5.7.20081102 {
global:
_nc_free_tinfo;
_nc_get_alias_table;
_nc_get_screensize;
_nc_globals;
_nc_leaks_tinfo;

View File

@ -1,4 +1,4 @@
# $Id: ncursesw.sym,v 1.13 2014/11/28 14:16:34 tom Exp $
# $Id: ncursesw.sym,v 1.14 2014/12/13 18:41:11 tom Exp $
# script for shared library symbol-visibility using libtool
#
# This file was generated by ncu-mapsyms
@ -47,196 +47,78 @@ TYPE_IPV4
TYPE_NUMERIC
TYPE_REGEXP
UP
_nc_Calculate_Item_Length_and_Width
_nc_Calculate_Text_Width
_nc_Connect_Items
_nc_Copy_Argument
_nc_Copy_Type
_nc_Default_Field
_nc_Default_FieldType
_nc_Default_Form
_nc_Default_Item
_nc_Default_Menu
_nc_Disconnect_Items
_nc_Draw_Menu
_nc_First_Active_Field
_nc_Free_Argument
_nc_Free_Type
_nc_Internal_Validation
_nc_Link_Items
_nc_Make_Argument
_nc_Match_Next_Character_In_Item_Name
_nc_New_TopRow_and_CurrentItem
_nc_Position_Form_Cursor
_nc_Post_Item
_nc_Refresh_Current_Field
_nc_Set_Current_Field
_nc_Set_Form_Page
_nc_Show_Menu
_nc_Synchronize_Attributes
_nc_Synchronize_Options
_nc_TYPE_ALNUM
_nc_TYPE_ALPHA
_nc_TYPE_ENUM
_nc_TYPE_INTEGER
_nc_TYPE_IPV4
_nc_TYPE_NUMERIC
_nc_TYPE_REGEXP
_nc_Touchline
_nc_Touchpan
_nc_Widen_String
_nc_Wnoutrefresh
_nc_access
_nc_add_to_try
_nc_align_termtype
_nc_alloc_entry_leaks
_nc_altcharset_name
_nc_background
_nc_basename
_nc_baudrate
_nc_build_wch
_nc_cap_hash_table
_nc_capalias_table
_nc_capcmp
_nc_captoinfo
_nc_captoinfo_leaks
_nc_check_termtype
_nc_check_termtype2
_nc_comment_end
_nc_comment_start
_nc_comp_captab_leaks
_nc_comp_error_leaks
_nc_comp_scan_leaks
_nc_copy_entry
_nc_copy_termtype
_nc_curr_col
_nc_curr_file_pos
_nc_curr_line
_nc_curr_token
_nc_curscr_of
_nc_dPanel
_nc_dStack
_nc_db_iterator_leaks
_nc_delink_entry
_nc_disable_period
_nc_do_color
_nc_do_color_sp
_nc_doalloc
_nc_entry_match
_nc_env_access
_nc_err_abort
_nc_eventlist_timeout
_nc_expand_try
_nc_expanded
_nc_fallback
_nc_fifo_dump
_nc_find_entry
_nc_find_type_entry
_nc_first_db
_nc_first_name
_nc_flush
_nc_flush_sp
_nc_form_cursor
_nc_format_slks
_nc_free_and_exit
_nc_free_and_exit_sp
_nc_free_entries
_nc_free_entry
_nc_free_termtype
_nc_free_tic
_nc_free_tinfo
_nc_free_tparm
_nc_freeall
_nc_freeall_sp
_nc_freewin
_nc_fty_generic
_nc_generic_fieldtype
_nc_get_alias_table
_nc_get_fieldbuffer
_nc_get_hash_info
_nc_get_hash_table
_nc_get_locale
_nc_get_screensize
_nc_get_source
_nc_get_table
_nc_get_token
_nc_get_tty_mode
_nc_get_tty_mode_sp
_nc_get_type
_nc_getenv_num
_nc_globals
_nc_handle_sigwinch
_nc_has_mouse
_nc_hash_map
_nc_hash_map_sp
_nc_hashed_db
_nc_head
_nc_home_terminfo
_nc_info_hash_table
_nc_infoalias_table
_nc_infotocap
_nc_init_acs
_nc_init_acs_sp
_nc_init_entry
_nc_init_keytry
_nc_init_termtype
_nc_init_wacs
_nc_insert_ch
_nc_insert_wch
_nc_is_abs_path
_nc_is_charable
_nc_is_dir_path
_nc_is_file_path
_nc_keep_tic_dir
_nc_key_names
_nc_keyname
_nc_keyname_leaks
_nc_keypad
_nc_last_db
_nc_leaks_tic
_nc_leaks_tinfo
_nc_linedump
_nc_linedump_sp
_nc_locale_breaks_acs
_nc_make_oldhash
_nc_make_oldhash_sp
_nc_makenew
_nc_makenew_sp
_nc_memmove
_nc_menu_cursor_pos
_nc_merge_entry
_nc_msec_cost
_nc_msec_cost_sp
_nc_mvcur
_nc_mvcur_init
_nc_mvcur_init_sp
_nc_mvcur_resume
_nc_mvcur_resume_sp
_nc_mvcur_sp
_nc_mvcur_wrap
_nc_mvcur_wrap_sp
_nc_my_visbuf
_nc_name_match
_nc_newscr_of
_nc_next_db
_nc_nulls_sent
_nc_oldnums
_nc_optimize_enable
_nc_ospeed
_nc_outc_wrapper
_nc_outch
_nc_outch_sp
_nc_outchars
_nc_outstr
_nc_panelhook
_nc_panelhook_sp
_nc_panic_mode
_nc_parse_entry
_nc_pathlast
_nc_prescreen
_nc_printf_string
_nc_printf_string_sp
_nc_push_token
_nc_putchar
_nc_putchar_sp
_nc_putp
@ -246,90 +128,41 @@ _nc_putp_sp
_nc_read_entry
_nc_read_entry_source
_nc_read_file_entry
_nc_read_termcap
_nc_read_termcap_entry
_nc_read_termtype
_nc_remove_key
_nc_remove_string
_nc_render
_nc_reset_colors
_nc_reset_colors_sp
_nc_reset_input
_nc_resolve_uses
_nc_resolve_uses2
_nc_retrace_attr_t
_nc_retrace_bool
_nc_retrace_char
_nc_retrace_chtype
_nc_retrace_cptr
_nc_retrace_cvoid_ptr
_nc_retrace_field
_nc_retrace_field_ptr
_nc_retrace_field_type
_nc_retrace_form
_nc_retrace_form_hook
_nc_retrace_int
_nc_retrace_int_attr_t
_nc_retrace_item
_nc_retrace_item_opts
_nc_retrace_item_ptr
_nc_retrace_menu
_nc_retrace_menu_hook
_nc_retrace_menu_opts
_nc_retrace_mmask_t
_nc_retrace_panel
_nc_retrace_ptr
_nc_retrace_sp
_nc_retrace_unsigned
_nc_retrace_void_ptr
_nc_retrace_win
_nc_ripoffline
_nc_ripoffline_sp
_nc_rootname
_nc_safe_strcat
_nc_safe_strcpy
_nc_save_str
_nc_screen_chain
_nc_screen_init
_nc_screen_init_sp
_nc_screen_of
_nc_screen_resume
_nc_screen_resume_sp
_nc_screen_wrap
_nc_screen_wrap_sp
_nc_scroll_oldhash
_nc_scroll_oldhash_sp
_nc_scroll_optimize
_nc_scroll_optimize_sp
_nc_scroll_window
_nc_scrolln
_nc_scrolln_sp
_nc_set_buffer
_nc_set_buffer_sp
_nc_set_generic_fieldtype
_nc_set_no_padding
_nc_set_source
_nc_set_tty_mode
_nc_set_tty_mode_sp
_nc_set_type
_nc_set_writedir
_nc_setenv_num
_nc_setup_tinfo
_nc_setupscreen
_nc_setupscreen_sp
_nc_setupterm
_nc_sigaction
_nc_signal_handler
_nc_slk_format
_nc_slk_initialize
_nc_start_line
_nc_stdscr_of
_nc_str_copy
_nc_str_init
_nc_str_null
_nc_strict_bsd
_nc_suppress_warnings
_nc_synchook
_nc_syntax
_nc_syserr_abort
_nc_tail
@ -338,49 +171,31 @@ _nc_tic_dir
_nc_tic_expand
_nc_tic_written
_nc_timed_wait
_nc_tinfo_cmdch
_nc_tinfo_fkeys
_nc_to_char
_nc_to_widechar
_nc_tparm_analyze
_nc_tparm_err
_nc_tputs_trace
_nc_trace_buf
_nc_trace_bufcat
_nc_trace_mmask_t
_nc_trace_tries
_nc_trace_ttymode
_nc_trace_xnames
_nc_tracebits
_nc_tracechar
_nc_tracemouse
_nc_tracing
_nc_trans_string
_nc_trim_sgr0
_nc_unctrl
_nc_ungetch
_nc_unicode_locale
_nc_update_screensize
_nc_user_definable
_nc_utf8_outch
_nc_varargs
_nc_visbuf
_nc_visbuf2
_nc_visbufn
_nc_viscbuf
_nc_viscbuf2
_nc_viswbuf
_nc_viswbuf2
_nc_viswbufn
_nc_viswibuf
_nc_vsscanf
_nc_wacs
_nc_waddch_nosync
_nc_warning
_nc_wchstrlen
_nc_wcrtomb
_nc_wgetch
_nc_wrap_entry
_nc_write_entry
_traceattr
_traceattr2
@ -389,9 +204,7 @@ _tracecchar_t2
_tracechar
_tracechtype
_tracechtype2
_tracedump
_tracef
_tracemouse
acs_map
add_wch
add_wchnstr