SHA256
1
0
forked from pool/ncurses
Dr. Werner Fink 2017-01-19 12:22:23 +00:00 committed by Git OBS Bridge
parent 6641e61706
commit 29882f28b9
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jan 19 12:20:06 UTC 2017 - werner@suse.de
- Remove -L option on screen call dues API change, now we depend
on environment variables only.
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 16 09:01:31 UTC 2017 - werner@suse.de Mon Jan 16 09:01:31 UTC 2017 - werner@suse.de

View File

@ -294,7 +294,7 @@ sed -ri '/^iTerm/{s@iterm\|@@}' misc/terminfo.src
# Remark: A better solution would be that in OBS a real pty/tty pair # Remark: A better solution would be that in OBS a real pty/tty pair
# would be used instead of redirecting stdout/stderr to a log file. # would be used instead of redirecting stdout/stderr to a log file.
# #
%global _configure screen -L -D -m ./configure %global _configure screen -D -m ./configure
SCREENDIR=$(mktemp -d ${PWD}/screen.XXXXXX) || exit 1 SCREENDIR=$(mktemp -d ${PWD}/screen.XXXXXX) || exit 1
SCREENRC=${SCREENDIR}/ncurses SCREENRC=${SCREENDIR}/ncurses
export SCREENRC SCREENDIR export SCREENRC SCREENDIR
@ -561,7 +561,7 @@ sed -ri '/^iTerm/{s@iterm\|@@}' misc/terminfo.src
# #
# Now use --with-pthread for reentrant pthread support (abi == 5). # Now use --with-pthread for reentrant pthread support (abi == 5).
# #
eval screen -L -D -m ./${c#*./} --with-abi-version=5 \ eval screen -D -m ./${c#*./} --with-abi-version=5 \
--without-pthread \ --without-pthread \
--disable-reentrant \ --disable-reentrant \
--disable-ext-mouse \ --disable-ext-mouse \
@ -610,7 +610,7 @@ sed -ri '/^iTerm/{s@iterm\|@@}' misc/terminfo.src
make clean make clean
> $SCREENLOG > $SCREENLOG
tail -q -s 0.5 -f $SCREENLOG & pid=$! tail -q -s 0.5 -f $SCREENLOG & pid=$!
eval screen -L -D -m ./${c#*./} --with-pthread \ eval screen -D -m ./${c#*./} --with-pthread \
--enable-reentrant \ --enable-reentrant \
--enable-ext-mouse \ --enable-ext-mouse \
--enable-widec \ --enable-widec \
@ -643,7 +643,7 @@ sed -ri '/^iTerm/{s@iterm\|@@}' misc/terminfo.src
make clean make clean
> $SCREENLOG > $SCREENLOG
tail -q -s 0.5 -f $SCREENLOG & pid=$! tail -q -s 0.5 -f $SCREENLOG & pid=$!
eval screen -L -D -m ./${c#*./} --with-abi-version=5 \ eval screen -D -m ./${c#*./} --with-abi-version=5 \
--without-pthread \ --without-pthread \
--disable-reentrant \ --disable-reentrant \
--disable-ext-mouse \ --disable-ext-mouse \