forked from pool/ncurses
.
OBS-URL: https://build.opensuse.org/package/show/Base:System/ncurses?expand=0&rev=357
This commit is contained in:
parent
b66c46bf36
commit
557bfb4c99
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d822ab8d2d7fa5dc03662a892edec02336ee432580fad6d096b0b3cba8b6d698
|
||||
size 8285
|
||||
oid sha256:ae59f9a1c6f283174df575edc25fc7b2a93057cf196ef49811d9d3d4998d0c0c
|
||||
size 73862
|
||||
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 15 13:00:37 UTC 2018 - werner@suse.de
|
||||
|
||||
- Add ncurses patch 6.1-20180210
|
||||
+ modify misc/Makefile.in to install/uninstall explicit list in case
|
||||
the build-directory happens to have no ".pc" files when an uninstall
|
||||
is performed (report by Jeffrey Walton).
|
||||
+ deprecate safe-sprintf, since the vsnprintf function, which does what
|
||||
was needed, was standardized long ago.
|
||||
+ add several development/experimental options to development packages.
|
||||
+ minor reordering of options in configure script to make the threaded
|
||||
and reentrant options distinct from the other extensions which are
|
||||
normally enabled.
|
||||
- Make reentrant libs opaque
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 5 08:15:58 UTC 2018 - werner@suse.de
|
||||
|
||||
|
21
ncurses.spec
21
ncurses.spec
@ -314,9 +314,9 @@ mv tack-* tack
|
||||
test ! -f /.buildenv || . /.buildenv
|
||||
OPATH=$PATH
|
||||
%ifarch s390x s390
|
||||
FALLBK="xterm,ibm327x,vt100,vt102,vt220"
|
||||
FALLBK="unknown,dumb,xterm,ibm327x,vt100,vt102,vt220"
|
||||
%else
|
||||
FALLBK="xterm,linux,vt100,vt102"
|
||||
FALLBK="unknown,dumb,xterm,linux,vt100,vt102,vt220"
|
||||
%endif
|
||||
CC=gcc
|
||||
CXX=g++
|
||||
@ -400,6 +400,7 @@ mv tack-* tack
|
||||
--with-gpm \
|
||||
%endif
|
||||
--with-dlsym \
|
||||
--with-default-terminfo-dir=%{_datadir}/terminfo \
|
||||
--with-terminfo-dirs=%{_sysconfdir}/terminfo:%{_datadir}/terminfo \
|
||||
--with-xterm-kbs=del \
|
||||
--disable-stripping \
|
||||
@ -423,6 +424,10 @@ mv tack-* tack
|
||||
--enable-interop \
|
||||
--with-pthread \
|
||||
--enable-reentrant \
|
||||
--enable-opaque-curses \
|
||||
--enable-opaque-form \
|
||||
--enable-opaque-menu \
|
||||
--enable-opaque-panel \
|
||||
--enable-ext-mouse \
|
||||
--enable-widec \
|
||||
--with-termlib=tinfow \
|
||||
@ -548,6 +553,10 @@ mv tack-* tack
|
||||
eval screen -D -m ./${c#*./} --with-abi-version=5 \
|
||||
--without-pthread \
|
||||
--disable-reentrant \
|
||||
--disable-opaque-curses \
|
||||
--disable-opaque-form \
|
||||
--disable-opaque-menu \
|
||||
--disable-opaque-panel \
|
||||
--disable-ext-mouse \
|
||||
--disable-widec \
|
||||
--with-termlib=tinfo \
|
||||
@ -598,6 +607,10 @@ mv tack-* tack
|
||||
tail -q -s 0.5 -f $SCREENLOG & pid=$!
|
||||
eval screen -D -m ./${c#*./} --with-pthread \
|
||||
--enable-reentrant \
|
||||
--enable-opaque-curses \
|
||||
--enable-opaque-form \
|
||||
--enable-opaque-menu \
|
||||
--enable-opaque-panel \
|
||||
--enable-ext-mouse \
|
||||
--disable-widec \
|
||||
--with-termlib=tinfo \
|
||||
@ -637,6 +650,10 @@ mv tack-* tack
|
||||
eval screen -D -m ./${c#*./} --with-abi-version=5 \
|
||||
--without-pthread \
|
||||
--disable-reentrant \
|
||||
--disable-opaque-curses \
|
||||
--disable-opaque-form \
|
||||
--disable-opaque-menu \
|
||||
--disable-opaque-panel \
|
||||
--disable-ext-mouse \
|
||||
--enable-widec \
|
||||
--with-termlib=tinfow \
|
||||
|
Loading…
Reference in New Issue
Block a user