Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bash
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
bash
Commits
00011f8b
Commit
00011f8b
authored
Sep 02, 2019
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bash has broken support for wide char ncurses - fix it
parent
5d839ee4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
bash-5.0-ncursesw_support.patch
bash-5.0-ncursesw_support.patch
+23
-0
build.xml
build.xml
+3
-0
No files found.
bash-5.0-ncursesw_support.patch
0 → 100644
View file @
00011f8b
diff -uNr bash-5.0/configure bash-5.0-ncursesw_support/configure
--- bash-5.0/configure 2019-01-03 01:13:31.000000000 +1030
+++ bash-5.0-ncursesw_support/configure 2019-09-02 00:45:01.464542841 +0930
@@ -5290,6 +5290,9 @@
elif test $bash_cv_termcap_lib = libncurses; then
TERMCAP_LIB=-lncurses
TERMCAP_DEP=
+elif test $bash_cv_termcap_lib = libncursesw; then
+TERMCAP_LIB=-lncursesw
+TERMCAP_DEP=
elif test $bash_cv_termcap_lib = libc; then
TERMCAP_LIB=
TERMCAP_DEP=
@@ -16171,6 +16174,9 @@
elif test $bash_cv_termcap_lib = libncurses; then
TERMCAP_LIB=-lncurses
TERMCAP_DEP=
+elif test $bash_cv_termcap_lib = libncursesw; then
+TERMCAP_LIB=-lncursesw
+TERMCAP_DEP=
elif test $bash_cv_termcap_lib = libc; then
TERMCAP_LIB=
TERMCAP_DEP=
build.xml
View file @
00011f8b
...
...
@@ -5,6 +5,9 @@
<exec
executable=
"tar"
failonerror=
"true"
>
<arg
line=
"xf packages/bash/bash-5.0.tar.gz -C ${builddir}"
/>
</exec>
<exec
executable=
"patch"
dir=
"${builddir}/bash-5.0"
failonerror=
"true"
>
<arg
line=
"-Np1 -i ${basedir}/packages/bash/bash-5.0-ncursesw_support.patch"
/>
</exec>
<echo
file=
"${makedir}/config.cache"
>
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_strcoll_works=yes
ac_cv_func_working_mktime=yes
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment