aboutsummaryrefslogtreecommitdiffstats
path: root/gnuwin32/man/cat1/iconv.1.txt
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@qt.io>2019-06-24 16:01:42 +0200
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2019-10-03 19:49:48 +0000
commitf9635567942071206f10430024895db6a127abf8 (patch)
treeba9aa7254cbe6faf6079a26c3cb4347826fd11d8 /gnuwin32/man/cat1/iconv.1.txt
parentaccc0af6e4a66c598409c5ed22ba1e8f63fc96ae (diff)
Remove gnuwin32 - it is provided through provisioning
Having a few windows specific tools in qt5.git was always strange. We now provision the utilities to the machines, so remove them from qt5.git. [ChangeLog][General] GnuWin32 is no longer part of the Qt source code repositories. Instead it can be downloaded from the upstream project at https://gnuwin32.sourceforge.net . For convenience we also make a copy available here: https://download.qt.io/development_releases/gnuwin32/gnuwin32.zip The GnuWin32 tools are needed for building Qt from source on Windows. Binary package downloads are not affected. Task-number: QTBUG-73424 Change-Id: I9212cc2923343f4f84bcba9d1444a90e446dfb8a Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: Liang Qi <liang.qi@qt.io>
Diffstat (limited to 'gnuwin32/man/cat1/iconv.1.txt')
-rw-r--r--gnuwin32/man/cat1/iconv.1.txt48
1 files changed, 0 insertions, 48 deletions
diff --git a/gnuwin32/man/cat1/iconv.1.txt b/gnuwin32/man/cat1/iconv.1.txt
deleted file mode 100644
index 2089d32e..00000000
--- a/gnuwin32/man/cat1/iconv.1.txt
+++ /dev/null
@@ -1,48 +0,0 @@
-ICONV(1) Linux Programmer's Manual ICONV(1)
-
-
-
-
-
-NAME
- iconv - character set conversion
-
-SYNOPSIS
- iconv [-c] [-s] [-f encoding] [-t encoding] [inputfile ...]
- iconv -l
-
-DESCRIPTION
- The iconv program converts text from one encoding to
- another encoding. More precisely, it converts from the
- encoding given for the -f option to the encoding given
- for the -t option. Either of these encodings defaults to
- the encoding of the current locale. All the inputfiles
- are read and converted in turn; if no inputfile is
- given, the standard input is used. The converted text is
- printed to standard output.
-
- When option -c is given, characters that cannot be con-
- verted are silently discarded, instead of leading to a
- conversion error.
-
- When option -s is given, error messages about invalid or
- unconvertible characters are omitted, but the actual
- converted text is unaffected.
-
- The encodings permitted are system dependent. For the
- libiconv implementation, they are listed in the
- iconv_open(3) manual page.
-
- The iconv -l command lists the names of the supported
- encodings, in a system dependent format. For the libi-
- conv implementation, the names are printed in upper
- case, separated by whitespace, and alias names of an
- encoding are listed on the same line as the encoding
- itself.
-
-SEE ALSO
- iconv_open(3), locale(7)
-
-
-
-GNU January 13, 2002 ICONV(1)