Version bump for 1.14.1 + static bin improvements
Этот коммит содержится в:
родитель
dc8b6cfaab
Коммит
72189c307f
@ -1,3 +1,8 @@
|
||||
1.14.1 - 2019-08-05
|
||||
- Fix occasional early exit on OS X
|
||||
- Fix --exclude-caches
|
||||
- Improve handling of out-of-memory situations
|
||||
|
||||
1.14 - 2019-02-04
|
||||
- Add mtime display and sorting (Alex Wilson)
|
||||
- Add (limited) --follow-symlinks option (Simon Doppler)
|
||||
|
4
README
4
README
@ -1,5 +1,5 @@
|
||||
ncdu 1.14
|
||||
=========
|
||||
ncdu 1.14.1
|
||||
===========
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
AC_INIT(ncdu, 1.14, projects@yorhel.nl)
|
||||
AC_INIT(ncdu, 1.14.1, projects@yorhel.nl)
|
||||
AC_CONFIG_SRCDIR([src/global.h])
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
||||
|
@ -9,7 +9,7 @@
|
||||
#
|
||||
# Usage:
|
||||
# ./build.sh $arch
|
||||
# where $arch = 'arm' or 'i486'
|
||||
# where $arch = 'arm', 'i486' or 'x86_64'
|
||||
|
||||
MUSL_CROSS_PATH=/opt/cross
|
||||
NCURSES_VERSION=6.0
|
||||
@ -80,7 +80,7 @@ getncurses() {
|
||||
--without-tests --without-curses-h --without-pkg-config --without-shared --without-debug\
|
||||
--without-gpm --without-sysmouse --enable-widec --with-default-terminfo-dir=/usr/share/terminfo\
|
||||
--with-terminfo-dirs=/usr/share/terminfo:/lib/terminfo:/usr/local/share/terminfo\
|
||||
--with-fallbacks="screen linux vt100 xterm" --host=$HOST\
|
||||
--with-fallbacks="screen linux vt100 xterm xterm-256color" --host=$HOST\
|
||||
CPPFLAGS=-D_GNU_SOURCE || exit
|
||||
make || exit
|
||||
make install.libs || exit
|
||||
@ -111,6 +111,7 @@ buildarch() {
|
||||
case $TARGET in
|
||||
arm) HOST=arm-musl-linuxeabi DIR=arm-linux-musleabi ;;
|
||||
i486) HOST=i486-musl-linux DIR=i486-linux-musl ;;
|
||||
x86_64) HOST=x86_64-musl-linux DIR=x86_64-linux-musl ;;
|
||||
*) echo "Unknown target: $TARGET" ;;
|
||||
esac
|
||||
PREFIX="`pwd`/$TARGET/inst"
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user