3 # Copyright (C) 2002-2008, 2010-2020 Free Software Foundation, Inc.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <https://www.gnu.org/licenses/>.
23 # outputs to stdout the --help usage message.
27 Usage: posix-modules [option]
29 Lists the gnulib modules that implement POSIX interfaces.
33 --for-mingw list only modules that work on mingw
34 --for-msvc list only modules that work on MSVC
36 Report bugs to <bug-gnulib@gnu.org>."
40 # outputs to stdout the --version message.
44 if test -d "$gnulib_dir"/.git \
45 && (git
--version) >/dev
/null
2>/dev
/null \
46 && (date --version) >/dev
/null
2>/dev
/null
; then
47 # gnulib checked out from git.
48 sed_extract_first_date
='/^Date/{
52 date=`cd "$gnulib_dir" && git log ChangeLog | sed -n -e "$sed_extract_first_date"`
53 # Turn "Fri Mar 21 07:16:51 2008 -0600" into "Mar 21 2008 07:16:51 -0600".
54 sed_year_before_time
='s/^[^ ]* \([^ ]*\) \([0-9]*\) \([0-9:]*\) \([0-9]*\) /\1 \2 \4 \3 /'
55 date=`echo "$date" | sed -e "$sed_year_before_time"`
56 # Use GNU date to compute the time in GMT.
57 date=`date -d "$date" -u +"%Y-%m-%d %H:%M:%S"`
58 version
=' '`cd "$gnulib_dir" && ./build-aux/git-version-gen /dev/null | sed -e 's/-dirty/-modified/'`
60 # gnulib copy without versioning information.
61 date=`sed -e 's/ .*//;q' "$gnulib_dir"/ChangeLog`
64 year
=`"$gnulib_dir"/build-aux/mdate-sh "$self_abspathname" | sed 's,^.* ,,'`
66 posix-modules (GNU $package $date)$version
67 Copyright (C) $year Free Software Foundation, Inc.
68 License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
69 This is free software: you are free to change and redistribute it.
70 There is NO WARRANTY, to the extent permitted by law.
72 Written by" "Bruno Haible"
76 # exits with a given status.
77 # This function needs to be used, rather than 'exit', when a 'trap' handler is
78 # in effect that refers to $?.
85 # locates the directory where the gnulib repository lives
87 # - progname name of this program
89 # - self_abspathname absolute pathname of this program
90 # - gnulib_dir absolute pathname of gnulib repository
94 /*) self_abspathname
="$progname" ;;
95 */*) self_abspathname
=`pwd`/"$progname" ;;
98 # Iterate through the elements of $PATH.
99 # We use IFS=: instead of
100 # for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`
101 # because the latter does not work when some PATH element contains spaces.
102 # We use a canonicalized $pathx instead of $PATH, because empty PATH
103 # elements are by definition equivalent to '.', however field splitting
104 # according to IFS=: loses empty fields in many shells:
105 # - /bin/sh on OSF/1 and Solaris loses all empty fields (at the
106 # beginning, at the end, and in the middle),
107 # - /bin/sh on IRIX and /bin/ksh on IRIX and OSF/1 lose empty fields
108 # at the beginning and at the end,
109 # - GNU bash, /bin/sh on AIX and HP-UX, and /bin/ksh on AIX, HP-UX,
110 # Solaris lose empty fields at the end.
111 # The 'case' statement is an optimization, to avoid evaluating the
112 # explicit canonicalization command when $PATH contains no empty fields.
114 if test "${PATH_SEPARATOR+set}" != set; then
115 # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which
116 # contains only /bin. Note that ksh looks also at the FPATH variable,
117 # so we have to set that as well for the test.
119 (PATH
='/bin;/bin'; FPATH
=$PATH; sh
-c :) >/dev
/null
2>&1 \
120 && { (PATH
='/bin:/bin'; FPATH
=$PATH; sh
-c :) >/dev
/null
2>&1 \
121 || PATH_SEPARATOR
=';'
124 if test "$PATH_SEPARATOR" = ";"; then
125 # On Windows, programs are searched in "." before $PATH.
128 # On Unix, we have to convert empty PATH elements to ".".
132 pathx
=`echo ":$PATH:" | sed -e 's/:::*/:.:/g' -e 's/^://' -e 's/:\$//'`
137 IFS
="$PATH_SEPARATOR"
141 if test -x "$d/$progname" && test ! -d "$d/$progname"; then
142 self_abspathname
="$d/$progname"
147 if test -z "$self_abspathname"; then
148 func_fatal_error
"could not locate the posix-modules program - how did you invoke it?"
152 while test -h "$self_abspathname"; do
153 # Resolve symbolic link.
154 linkval
=`func_readlink "$self_abspathname"`
155 test -n "$linkval" ||
break
157 /* ) self_abspathname
="$linkval" ;;
158 * ) self_abspathname
=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
161 gnulib_dir
=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
165 # creates a temporary directory.
167 # - progname name of this program
169 # - tmp pathname of freshly created temporary directory
172 # Use the environment variable TMPDIR, falling back to /tmp. This allows
173 # users to specify a different temporary directory, for example, if their
174 # /tmp is filled up or too small.
177 # Use the mktemp program if available. If not available, hide the error
179 tmp
=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
180 test -n "$tmp" && test -d "$tmp"
183 # Use a simple mkdir command. It is guaranteed to fail if the directory
184 # already exists. $RANDOM is bash specific and expands to empty in shells
185 # other than bash, ksh and zsh. Its use does not increase security;
186 # rather, it minimizes the probability of failure in a very cluttered /tmp
188 tmp
=$TMPDIR/gl$$
-$RANDOM
189 (umask 077 && mkdir
"$tmp")
192 echo "$progname: cannot create a temporary directory in $TMPDIR" >&2
197 # func_fatal_error message
198 # outputs to stderr a fatal error message, and terminates the program.
200 # - progname name of this program
203 echo "$progname: *** $1" 1>&2
204 echo "$progname: *** Stop." 1>&2
208 # func_readlink SYMLINK
209 # outputs the target of the given symlink.
210 if (type -p readlink
) > /dev
/null
2>&1; then
213 # Use the readlink program from GNU coreutils.
219 # Use two sed invocations. A single sed -n -e 's,^.* -> \(.*\)$,\1,p'
220 # would do the wrong thing if the link target contains " -> ".
221 LC_ALL
=C
ls -l "$1" |
sed -e 's, -> ,#%%#,' |
sed -n -e 's,^.*#%%#\(.*\)$,\1,p'
225 # Excludes for mingw.
227 # <grp.h> does not exist.
228 exclude_for_mingw
="$exclude_for_mingw pt_chown grantpt posix_openpt-tests posix_openpt"
229 # The functions getuid, getgid, geteuid, getegid don't exist.
230 exclude_for_mingw
="$exclude_for_mingw faccessat"
231 exclude_for_mingw
="$exclude_for_mingw fchownat-tests fchownat"
234 exclude_for_msvc
="$exclude_for_mingw"
236 # Command-line option processing.
238 while test $# -gt 0; do
240 --for-mingw |
--for-ming |
--for-min |
--for-mi )
241 exclude
="$exclude $exclude_for_mingw"
243 --for-msvc |
--for-msv |
--for-ms )
244 exclude
="$exclude $exclude_for_msvc"
246 --help |
--hel |
--he |
--h )
249 --version |
--versio |
--versi |
--vers |
--ver |
--ve |
--v )
253 echo "posix-modules: unknown option $1" 1>&2
254 echo "Try 'posix-modules --help' for more information." 1>&2
257 echo "posix-modules: too many arguments" 1>&2
258 echo "Try 'posix-modules --help' for more information." 1>&2
266 if test "$signal" != 0; then
267 echo "caught signal $signal" >&2
271 for signal
in 1 2 3 13 15; do
272 trap '{ signal='$signal'; func_exit 1; }' $signal
277 # Get the header modules.
278 LC_ALL
=C
grep -h '^Gnulib module: ' "$gnulib_dir"/doc
/posix-headers
/*.texi
2>/dev
/null \
279 |
sed -e 's,^Gnulib module: ,,'
280 # Get the function modules.
281 LC_ALL
=C
grep -h '^Gnulib module: ' "$gnulib_dir"/doc
/posix-functions
/*.texi
2>/dev
/null \
282 |
sed -e 's,^Gnulib module: ,,'
283 # Then filter out the words "---", ",", "and", "or" and remove *-gnu modules.
284 ) |
sed -e 's/,/ /g' | LC_ALL
=C
sort | LC_ALL
=C
uniq \
285 |
{ # Then filter out the words "---", "and", "or" and remove *-gnu modules.
286 tr ' ' '\012' |
sed -e '/^---$/d' -e '/^and$/d' -e '/^or$/d' -e '/-gnu$/d'
288 | LC_ALL
=C
sort | LC_ALL
=C
uniq \
289 |
{ # Then filter out the excludes.
290 if test -n "$exclude"; then
291 for m
in $exclude; do echo $m; done | LC_ALL
=C
sort -u > "$tmp"/excludes
292 LC_ALL
=C
join -v 1 - "$tmp"/excludes
293 rm -f "$tmp"/excludes
300 # indent-tabs-mode: nil
301 # whitespace-check-buffer-indent: nil