Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nccf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
702
Provoz
nccf
Commits
72189c30
Commit
72189c30
authored
5 years ago
by
Yorhel
Browse files
Options
Downloads
Patches
Plain Diff
Version bump for 1.14.1 + static bin improvements
parent
dc8b6cfa
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+5
-0
5 additions, 0 deletions
ChangeLog
README
+2
-2
2 additions, 2 deletions
README
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
static/build.sh
+3
-2
3 additions, 2 deletions
static/build.sh
with
11 additions
and
5 deletions
ChangeLog
+
5
−
0
View file @
72189c30
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)
...
...
This diff is collapsed.
Click to expand it.
README
+
2
−
2
View file @
72189c30
ncdu 1.14
=========
ncdu 1.14
.1
=========
==
DESCRIPTION
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
1
View file @
72189c30
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])
...
...
This diff is collapsed.
Click to expand it.
static/build.sh
+
3
−
2
View file @
72189c30
...
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment