diff --git a/ChangeLog b/ChangeLog index 263ec3719b0582b7c20b28ba11c41fd63a3211a5..d81e7c7aabfd636682ae35d27b5ec445538721ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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) diff --git a/README b/README index 3ddfd9e08119ee89bbf9531bbabc957e5157a9f5..9385f8a65331d6b048df8252b53b85138733cd40 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -ncdu 1.14 -========= +ncdu 1.14.1 +=========== DESCRIPTION diff --git a/configure.ac b/configure.ac index ab05e8f4cfb2a3c191958900a13da652ade2fff4..d6b98ceb900b959458c8bf01a484c8120ee1ebe6 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/static/build.sh b/static/build.sh index ff915e0ae468eb3c6f1c05a66f417ca6eb818766..ecf4385604b22733d9e02f38793b188fc48da5cb 100755 --- a/static/build.sh +++ b/static/build.sh @@ -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"