diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-03 16:50:31 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-03-03 16:50:31 -0800 |
commit | 2f24d5cd7509999998f788d28f8fd21e41bb68c1 (patch) | |
tree | e82fc930e8fe66e49d8edf891e3b3f4b2060da77 | |
parent | 865a095d70c7f3a7b7f657f68da9e3b11cd1be6e (diff) | |
download | crosstool-ng-2f24d5cd7509999998f788d28f8fd21e41bb68c1.tar.gz crosstool-ng-2f24d5cd7509999998f788d28f8fd21e41bb68c1.tar.bz2 crosstool-ng-2f24d5cd7509999998f788d28f8fd21e41bb68c1.zip |
Add libiconv 1.15
Signed-off-by: Alexey Neyman <stilor@att.net>
-rw-r--r-- | config/companion_libs/libiconv.in | 5 | ||||
-rwxr-xr-x | scripts/addToolVersion.sh | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/config/companion_libs/libiconv.in b/config/companion_libs/libiconv.in index 361d34e0..d871681c 100644 --- a/config/companion_libs/libiconv.in +++ b/config/companion_libs/libiconv.in @@ -6,6 +6,10 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config LIBICONV_V_1_15 + bool + prompt "1.15" + config LIBICONV_V_1_14 bool prompt "1.14" @@ -16,4 +20,5 @@ config LIBICONV_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "1.15" if LIBICONV_V_1_15 default "1.14" if LIBICONV_V_1_14 diff --git a/scripts/addToolVersion.sh b/scripts/addToolVersion.sh index dbd12439..38c2e552 100755 --- a/scripts/addToolVersion.sh +++ b/scripts/addToolVersion.sh @@ -18,7 +18,7 @@ doHelp() { 'tool' in one of: gcc, binutils, glibc, uClibc, uClibc-ng, newlib, linux, gdb, duma, strace, ltrace, libelf, gmp, mpfr, isl, cloog, mpc, - mingw-w64, expat, ncurses, musl, gettext, zlib + mingw-w64, expat, ncurses, musl, gettext, zlib, libiconv Valid options for all tools: --stable, -s, +x (default) @@ -210,6 +210,7 @@ while [ $# -gt 0 ]; do --expat) EXP=; OBS=; cat=EXPAT; tool=expat; tool_prefix=companion_libs; dot2suffix=;; --ncurses) EXP=; OBS=; cat=NCURSES; tool=ncurses; tool_prefix=companion_libs; dot2suffix=;; --gettext) EXP=; OBS=; cat=GETTEXT; tool=gettext; tool_prefix=companion_libs; dot2suffix=;; + --libiconv) EXP=; OBS=; cat=LIBICONV; tool=libiconv; tool_prefix=companion_libs; dot2suffix=;; --zlib) EXP=; OBS=; cat=ZLIB; tool=zlib; tool_prefix=companion_tools; dot2suffix=;; --make) EXP=; OBS=; cat=MAKE; tool=make; tool_prefix=companion_tools; dot2suffix=;; --m4) EXP=; OBS=; cat=M4; tool=m4; tool_prefix=companion_tools; dot2suffix=;; |